fork-openpgpjs/test
larabr 1166de205c
Remove primaryKey argument from User methods, rename User.sign to User.certify (#1329)
- Add `User.mainKey` field to store a reference to the corresponding `Key`,
allowing to simplify calling some `User` methods.
- Rename `User.sign` to `User.certify`, since it's used for third-party
certifications and not as a counterpart of `User.verify`, which deals with
self-signatures.
- Change `Key.update` behaviour to store a copy of newly added users and
subkeys. Pointing to the same instance could give issues as the lists of
certifications and signatures could be altered by both the source key and the
updated one.

Breaking changes in `User` methods:
- `User.constructor(userPacket)` -> `constructor(userPacket, mainKey)`
- `User.sign(primaryKey, signingKeys, date, config)` -> `.certify(signingKeys,
date, config)`
- `User.verify(primaryKey, date = new Date(), config)` -> `.verify(date = new
Date(), config)`
- `User.verifyCertificate(primaryKey, certificate, verificationKeys, date = new
Date(), config)` -> `.verifyCertificate(certificate, verificationKeys, date =
new Date(), config)`
- `User.verifyAllCertifications(primaryKey, verificationKeys, date = new
Date(), config)` -> `.verifyAllCertifications(verificationKeys, date = new
Date(), config)`
- `User.isRevoked(primaryKey, certificate, keyPacket, date = new Date(),
config)` -> `.isRevoked(certificate, keyPacket, date = new Date(), config)`
- `User.update(sourceUser, primaryKey, date, config)` -> `.update(sourceUser,
date, config)`
2021-06-15 17:42:00 +02:00
..
crypto Uniform casing of subkey(s): rename Key.subKeys to Key.subkeys (#1310) 2021-06-10 11:25:43 +02:00
general Remove primaryKey argument from User methods, rename User.sign to User.certify (#1329) 2021-06-15 17:42:00 +02:00
security Uniform casing of subkey(s): rename Key.subKeys to Key.subkeys (#1310) 2021-06-10 11:25:43 +02:00
typescript Replace Key with PrivateKey and PublicKey classes (#1300) 2021-05-25 19:18:47 +02:00
worker Rename public/privateKeys to encryption/decryption/signing/verificationKeys (#1299) 2021-05-17 18:56:28 +02:00
karma.conf.js CI: Detect unhandled rejections in browser tests (#1333) 2021-06-15 16:39:56 +02:00
unittests.html CI: Switch to karma for browser tests (#1233) 2021-02-12 13:29:04 +01:00
unittests.js CI: Detect unhandled rejections in browser tests (#1333) 2021-06-15 16:39:56 +02:00