mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
108 lines
1.6 KiB
JavaScript
108 lines
1.6 KiB
JavaScript
exports['aes-128-ecb'] = {
|
|
cipher: 'AES',
|
|
key: 128,
|
|
iv: 0,
|
|
mode: 'ECB',
|
|
type: 'block'
|
|
};
|
|
exports['aes-192-ecb'] = {
|
|
cipher: 'AES',
|
|
key: 192,
|
|
iv: 0,
|
|
mode: 'ECB',
|
|
type: 'block'
|
|
};
|
|
exports['aes-256-ecb'] = {
|
|
cipher: 'AES',
|
|
key: 256,
|
|
iv: 0,
|
|
mode: 'ECB',
|
|
type: 'block'
|
|
};
|
|
exports['aes-128-cbc'] = {
|
|
cipher: 'AES',
|
|
key: 128,
|
|
iv: 16,
|
|
mode: 'CBC',
|
|
type: 'block'
|
|
};
|
|
exports['aes-192-cbc'] = {
|
|
cipher: 'AES',
|
|
key: 192,
|
|
iv: 16,
|
|
mode: 'CBC',
|
|
type: 'block'
|
|
};
|
|
exports['aes-256-cbc'] = {
|
|
cipher: 'AES',
|
|
key: 256,
|
|
iv: 16,
|
|
mode: 'CBC',
|
|
type: 'block'
|
|
};
|
|
exports['aes128'] = exports['aes-128-cbc'];
|
|
exports['aes192'] = exports['aes-192-cbc'];
|
|
exports['aes256'] = exports['aes-256-cbc'];
|
|
exports['aes-128-cfb'] = {
|
|
cipher: 'AES',
|
|
key: 128,
|
|
iv: 16,
|
|
mode: 'CFB',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-192-cfb'] = {
|
|
cipher: 'AES',
|
|
key: 192,
|
|
iv: 16,
|
|
mode: 'CFB',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-256-cfb'] = {
|
|
cipher: 'AES',
|
|
key: 256,
|
|
iv: 16,
|
|
mode: 'CFB',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-128-ofb'] = {
|
|
cipher: 'AES',
|
|
key: 128,
|
|
iv: 16,
|
|
mode: 'OFB',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-192-ofb'] = {
|
|
cipher: 'AES',
|
|
key: 192,
|
|
iv: 16,
|
|
mode: 'OFB',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-256-ofb'] = {
|
|
cipher: 'AES',
|
|
key: 256,
|
|
iv: 16,
|
|
mode: 'OFB',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-128-ctr'] = {
|
|
cipher: 'AES',
|
|
key: 128,
|
|
iv: 16,
|
|
mode: 'CTR',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-192-ctr'] = {
|
|
cipher: 'AES',
|
|
key: 192,
|
|
iv: 16,
|
|
mode: 'CTR',
|
|
type: 'stream'
|
|
};
|
|
exports['aes-256-ctr'] = {
|
|
cipher: 'AES',
|
|
key: 256,
|
|
iv: 16,
|
|
mode: 'CTR',
|
|
type: 'stream'
|
|
}; |