fork-openpgpjs/test/crypto
larabr 40542fd08a
Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345)
- `openpgp.generateKey`, `reformatKey` and `revokeKey` take a new `format`
option, whose possible values are: `'armor', 'binary', 'object'` (default is 
`'armor'`).
- `generateKey` and `reformatKey` now return an object of the form `{
publicKey, privateKey, revocationCertificate }`, where the type of `publicKey`
and `privateKey` depends on `options.format`:
    * if `format: 'armor'` then `privateKey, publicKey` are armored strings;
    * if `format: 'binary'` then `privateKey, publicKey` are `Uint8Array`;
    * if `format: 'object'` then `privateKey, publicKey` are `PrivateKey` and
`PublicKey` objects respectively;
- `revokeKey` now returns `{ publicKey, privateKey }`, where:
    * if a `PrivateKey` is passed as `key` input,  `privateKey, publicKey` are of the
requested format;
    * if a `PublicKey` is passed as `key` input, `publicKey` is of the requested format,
while `privateKey` is `null` (previously, in this case the `privateKey` field
was not defined).

Breaking changes:
- In `revokeKey`, if no `format` option is specified, the returned `publicKey,
privateKey` are armored strings (they used to be objects).
- In `generateKey` and `reformatKey`, the `key` value is no longer returned.
- For all three functions, the `publicKeyArmored` and `privateKeyArmored`
values are no longer returned.
2021-06-24 17:14:39 +02:00
..
cipher Remove unused util functions 2021-03-26 10:56:02 +01:00
hash Remove unused util functions 2021-03-26 10:56:02 +01:00
aes_kw.js Remove unused util functions 2021-03-26 10:56:02 +01:00
crypto.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +01:00
eax.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +01:00
ecdh.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +01:00
elliptic_data.js Apply eslint to test/crypto folder (#1003) 2019-11-19 14:29:32 +01:00
elliptic.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +01:00
gcm.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +01:00
index.js Add config parameter to top-level functions (#1241) 2021-02-26 20:04:54 +01:00
ocb.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +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 Always generate RSA keys of exact bit length (#1336) 2021-06-15 18:07:36 +02:00
validate.js Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345) 2021-06-24 17:14:39 +02:00