
In several packet classes, we used to store string identifiers for public-key, aead, cipher or hash algorithms. To make the code consistent and to avoid having to convert to/from string values, we now always store integer values instead, e.g. `enums.symmetric.aes128` is used instead of `'aes128'`. This is not expected to be a breaking change for most library users. Note that the type of `Key.getAlgorithmInfo()` and of the session key objects returned and accepted by top-level functions remain unchanged. Affected classes (type changes for some properties and method's arguments): - `PublicKeyPacket`, `PublicSubkeyPacket`, `SecretKeyPacket`, `SecretSubkeyPacket` - `SymEncryptedIntegrityProtectedDataPacket`, `AEADEncryptedDataPacket`, `SymmetricallyEncryptedDataPacket` - `LiteralDataPacket`, `CompressedDataPacket` - `PublicKeyEncryptedSessionKey`, `SymEncryptedSessionKeyPacket` - `SignaturePacket` Other potentially breaking changes: - Removed property `AEADEncryptedDataPacket.aeadAlgo`, since it was redudant given `.aeadAlgorithm`. - Renamed `AEADEncryptedDataPacket.cipherAlgo` -> `.cipherAlgorithm`
27 lines
566 B
JavaScript
27 lines
566 B
JavaScript
import { AES_ECB } from '@openpgp/asmcrypto.js/dist_es8/aes/ecb';
|
|
|
|
/**
|
|
* Javascript AES implementation.
|
|
* This is used as fallback if the native Crypto APIs are not available.
|
|
*/
|
|
function aes(length) {
|
|
const C = function(key) {
|
|
const aesECB = new AES_ECB(key);
|
|
|
|
this.encrypt = function(block) {
|
|
return aesECB.encrypt(block);
|
|
};
|
|
|
|
this.decrypt = function(block) {
|
|
return aesECB.decrypt(block);
|
|
};
|
|
};
|
|
|
|
C.blockSize = C.prototype.blockSize = 16;
|
|
C.keySize = C.prototype.keySize = length / 8;
|
|
|
|
return C;
|
|
}
|
|
|
|
export default aes;
|