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
Test
Unit
Crypt
_files
_cipher_info.php
Go to the documentation of this file.
1
<?php
6
?>
7
<?php
return
[
8
'blowfish'
=> [
9
'ecb'
=> [
10
'key_size'
=> 56,
11
'iv_size'
=> 8,
12
],
13
'cbc'
=> [
14
'key_size'
=> 56,
15
'iv_size'
=> 8,
16
],
17
'cfb'
=> [
18
'key_size'
=> 56,
19
'iv_size'
=> 8,
20
],
21
'ofb'
=> [
22
'key_size'
=> 56,
23
'iv_size'
=> 8,
24
],
25
'nofb'
=> [
26
'key_size'
=> 56,
27
'iv_size'
=> 8,
28
],
29
],
30
'rijndael-128'
=> [
31
'ecb'
=> [
32
'key_size'
=> 32,
33
'iv_size'
=> 16,
34
],
35
'cbc'
=> [
36
'key_size'
=> 32,
37
'iv_size'
=> 16,
38
],
39
'cfb'
=> [
40
'key_size'
=> 32,
41
'iv_size'
=> 16,
42
],
43
'ofb'
=> [
44
'key_size'
=> 32,
45
'iv_size'
=> 16,
46
],
47
'nofb'
=> [
48
'key_size'
=> 32,
49
'iv_size'
=> 16,
50
],
51
],
52
'rijndael-256'
=> [
53
'ecb'
=> [
54
'key_size'
=> 32,
55
'iv_size'
=> 32,
56
],
57
'cbc'
=> [
58
'key_size'
=> 32,
59
'iv_size'
=> 32,
60
],
61
'cfb'
=> [
62
'key_size'
=> 32,
63
'iv_size'
=> 32,
64
],
65
'ofb'
=> [
66
'key_size'
=> 32,
67
'iv_size'
=> 32,
68
],
69
'nofb'
=> [
70
'key_size'
=> 32,
71
'iv_size'
=> 32,
72
],
73
],
74
];