Skip to content

Instantly share code, notes, and snippets.

@ericthehacker
Created January 23, 2015 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericthehacker/09ed7e8f1ac4d567c90c to your computer and use it in GitHub Desktop.
Save ericthehacker/09ed7e8f1ac4d567c90c to your computer and use it in GitHub Desktop.
<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Encryption;
use Magento\Framework\App\DeploymentConfig;
require_once BP . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'ircmaxell' . DIRECTORY_SEPARATOR .
'password-compat' . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'password.php';
/**
* Provides basic logic for hashing passwords and encrypting/decrypting misc data
*/
class Encryptor implements EncryptorInterface
{
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment