fork-openpgpjs/test/crypto
larabr 6da1c53de7
Replace strings with integer algorithm identifiers in packet classes (#1410)
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`
2021-11-22 11:51:27 +01:00
..
cipher Remove unused util functions 2021-03-26 10:56:02 +01:00
hash Lint: enforce single quotes and do not error on class methods without this (#1341) 2021-06-24 22:58:15 +02:00
aes_kw.js Lint: enforce single quotes and do not error on class methods without this (#1341) 2021-06-24 22:58:15 +02:00
crypto.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
eax.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
ecdh.js Lint: enforce single quotes and do not error on class methods without this (#1341) 2021-06-24 22:58:15 +02:00
elliptic_data.js Apply eslint to test/crypto folder (#1003) 2019-11-19 14:29:32 +01:00
elliptic.js Lint: enforce single quotes and do not error on class methods without this (#1341) 2021-06-24 22:58:15 +02:00
gcm.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
index.js Add config parameter to top-level functions (#1241) 2021-02-26 20:04:54 +01:00
ocb.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
pkcs5.js [v5] Unexport openpgp.util, openpgp.crypto, and low-level types (#1175) 2021-02-09 19:25:20 +01:00
random.js [v5] Unexport openpgp.util, openpgp.crypto, and low-level types (#1175) 2021-02-09 19:25:20 +01:00
rsa.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
validate.js Add config.rejectCurves and prevent generating keys using blacklisted algorithms (#1395) 2021-08-19 17:58:16 +02:00