fork-openpgpjs/test/general
larabr d238a023c1
Support using Key.isPrivate() for type inference, remove Key.isPublic() (#1347)
API changes:
- `Key.isPublic()` has been removed, since it was redundant and it would
introduce TypeScript issues. Call `!Key.isPrivate()` instead.

TypeScript changes:
- the `openpgp.readKey(s)` functions are now declared as returning a `Key`
instead of a `PublicKey`. This is just a readability improvement to make it
clearer that the result could also be a `PrivateKey`.
- All `Key` methods that return a key object now have the narrowest possible
return type.
- The `Key.isPrivate()` method can now be used for type inference, allowing the
compiler to distinguish between `PrivateKey` and `PublicKey`. 

Calling `key.isPrivate()` is the recommended way of distinguishing between a
`PrivateKey` and `PublicKey` at runtime, over using `key instanceof ...`, since
the latter depends on the specifics of the `Key` class hierarchy.
2021-06-24 19:53:10 +02:00
..
armor.js Replace Key with PrivateKey and PublicKey classes (#1300) 2021-05-25 19:18:47 +02:00
biginteger.js Lint all tests (#1235) 2021-02-12 23:00:22 +01:00
brainpool.js Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345) 2021-06-24 17:14:39 +02:00
config.js Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345) 2021-06-24 17:14:39 +02:00
decompression.js Consolidate read* functions (#1236) 2021-02-17 20:36:33 +01:00
ecc_nist.js Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345) 2021-06-24 17:14:39 +02:00
ecc_secp256k1.js Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345) 2021-06-24 17:14:39 +02:00
index.js Remove KeyRing class 2021-03-01 11:58:10 +01:00
key.js Support using Key.isPrivate() for type inference, remove Key.isPublic() (#1347) 2021-06-24 19:53:10 +02:00
oid.js Lint all tests (#1235) 2021-02-12 23:00:22 +01:00
openpgp.js Support using Key.isPrivate() for type inference, remove Key.isPublic() (#1347) 2021-06-24 19:53:10 +02:00
packet.js Ignore Trust and Marker packets on parsing and always throw on unexpected packets (#1340) 2021-06-23 12:17:29 +02:00
signature.js Support passing a non-array value to encryption/signingKeyIDs in top-level functions (#1342) 2021-06-24 17:51:18 +02:00
streaming.js Rename public/privateKeys to encryption/decryption/signing/verificationKeys (#1299) 2021-05-17 18:56:28 +02:00
testInputs.js Store named key params in key objects (#1141) 2021-02-09 19:25:20 +01:00
util.js Use consistent name casing (#1268) 2021-03-25 19:56:59 +01:00
x25519.js Simplify return value of generateKey, reformatKey and revokeKey and add support for binary output (#1345) 2021-06-24 17:14:39 +02:00