fork-openpgpjs/test/general
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
..
armor.js Do not include checksum values in error messages when armor integrity check fails (#1428) 2021-10-21 16:14:46 +02:00
biginteger.js Lint all tests (#1235) 2021-02-12 23:00:22 +01:00
brainpool.js Add config.rejectCurves and prevent generating keys using blacklisted algorithms (#1395) 2021-08-19 17:58:16 +02:00
config.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
decompression.js Consolidate read* functions (#1236) 2021-02-17 20:36:33 +01:00
ecc_nist.js Remove valid and error from the verification result of openpgp.verify and decrypt (#1348) 2021-07-09 17:44:34 +02:00
ecc_secp256k1.js Add config.rejectCurves and prevent generating keys using blacklisted algorithms (#1395) 2021-08-19 17:58:16 +02:00
index.js Remove KeyRing class 2021-03-01 11:58:10 +01:00
key.js Replace armor option with format in openpgp.encrypt, sign and encryptSessionKey (#1354) 2021-07-19 18:12:42 +02:00
oid.js Lint all tests (#1235) 2021-02-12 23:00:22 +01:00
openpgp.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
packet.js Replace strings with integer algorithm identifiers in packet classes (#1410) 2021-11-22 11:51:27 +01:00
signature.js Add config.allowInsecureVerificationWithReformattedKeys (#1422) 2021-10-18 18:10:04 +02:00
streaming.js Do not include checksum values in error messages when armor integrity check fails (#1428) 2021-10-21 16:14:46 +02:00
testInputs.js Remove line terminators from randomly generated test messages (#1440) 2021-11-17 12:11:54 +01:00
util.js Lint: enforce single quotes and do not error on class methods without this (#1341) 2021-06-24 22:58:15 +02:00
x25519.js Remove valid and error from the verification result of openpgp.verify and decrypt (#1348) 2021-07-09 17:44:34 +02:00