Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Encryption
EncryptorInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Encryption
;
7
14
interface
EncryptorInterface
15
{
29
public
function
getHash
($password, $salt =
false
);
30
37
public
function
hash
(
$data
);
38
47
public
function
validateHash
($password, $hash);
48
57
public
function
isValidHash
($password, $hash);
58
66
public
function
validateHashVersion
($hash, $validateCount =
false
);
67
74
public
function
encrypt
(
$data
);
75
82
public
function
decrypt
(
$data
);
83
90
public
function
validateKey
($key);
91
}
Magento\Framework\Encryption\EncryptorInterface\hash
hash($data)
Magento\Framework\Encryption\EncryptorInterface\getHash
getHash($password, $salt=false)
Magento\Framework\Encryption
Magento\Framework\Encryption\EncryptorInterface\validateHashVersion
validateHashVersion($hash, $validateCount=false)
Magento\Framework\Encryption\EncryptorInterface\validateKey
validateKey($key)
Magento\Framework\Encryption\EncryptorInterface
Definition:
EncryptorInterface.php:14
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\Encryption\EncryptorInterface\isValidHash
isValidHash($password, $hash)
Magento\Framework\Encryption\EncryptorInterface\decrypt
decrypt($data)
Magento\Framework\Encryption\EncryptorInterface\validateHash
validateHash($password, $hash)
Magento\Framework\Encryption\EncryptorInterface\encrypt
encrypt($data)