4870bda4f2
Allow specification of signature type
2020-12-16 20:11:28 +01:00
aeed8bf705
SignatureType: Reuse BC signature type codes
2020-12-16 20:11:04 +01:00
5a04669661
Add missing package.info
2020-12-11 22:54:11 +01:00
0194bd5924
Add documentation to PublicKeyAlgorithms
2020-12-11 22:52:28 +01:00
d65646efc6
Add XDH keytype factory method
2020-12-11 22:09:49 +01:00
aff2e6b9f0
Verify that certification key has signing capable algorithm
2020-12-11 22:09:21 +01:00
c38477f277
Add more javadoc
2020-12-11 18:53:10 +01:00
ac08827f91
Move ECDSA and ECDH to ecc subpackage
2020-12-11 18:16:31 +01:00
799265f332
mark RSA_ENCRYPT and RSA_SIGN as deprecated
2020-12-11 18:15:54 +01:00
5f289f4fe1
ElGamal: Deprecate GENERAL
2020-12-11 18:14:36 +01:00
3c88bdde9b
Refactor keytype related classes
2020-12-08 20:02:41 +01:00
4550425609
Wip: Add more elliptic curves, support for {X,Ed}25519
2020-12-08 19:26:57 +01:00
980782e629
Remove deprecated class PGPKeyRing
2020-12-08 19:14:52 +01:00
db2e97b449
Fix some javadoc issues
2020-12-05 00:17:32 +01:00
451313d945
Fix checkstyle issues
2020-12-05 00:01:12 +01:00
1be3d4d7d8
Add documentation to KeyRingUtils
2020-12-03 22:46:59 +01:00
3173ddbc45
Add static factory methods for SecretKeyRingProtector implementations
2020-11-29 19:08:52 +01:00
935af80d14
Add some more utility methods
2020-11-29 19:06:49 +01:00
145fa8c83c
Move unlockSecretKey method to KeyRingUtils
2020-11-29 16:04:15 +01:00
d9d25ed6fb
Merge pull request #31 from wiktor-k/add-expiration
...
Add ability to modify expiration dates for keys
2020-11-29 15:45:10 +01:00
fa2615b434
Forgot to deprecate encryptor method
2020-11-29 15:35:34 +01:00
cc1e4601e3
replace create{Encryptor,Decryptor} methods with encryptAndOrSign,decryptAndOrVerify
2020-11-29 15:33:54 +01:00
Wiktor Kwapisiewicz
2a672aaf03
Add ability to change expiration date for the primary key
2020-11-27 17:11:56 +01:00
93abfd5517
SecretKeyRingEditor: Add revoke() shortcut method
2020-11-22 21:25:52 +01:00
c266adb5a5
Fix getExpirationDate method for keys without expiration
2020-11-22 21:07:14 +01:00
5ee17fac69
Deprecate PGPainless's PGPKeyRing
2020-11-22 20:49:07 +01:00
cae93022ad
Add KeyRingInfo class that helps to extract information about key rings
2020-11-22 20:48:09 +01:00
8305fcf0ee
Allow for revocation attributes to be passed in when revoking subkey directly
2020-11-20 12:19:45 +01:00
0edd8b616f
Add support for creating detached revocation certificates
2020-11-20 12:01:39 +01:00
5cdbb125b0
Refactoring: move KeyRingEditor to SecretKeyRingEditor in prep for more editor classes
2020-11-19 17:51:57 +01:00
9f95e7925b
De-duplicate KeyPrinter class
2020-11-18 12:20:59 +01:00
4dd2b2f71a
Implement revoking subkeys for key-ids as well
2020-11-13 16:59:55 +01:00
4ed2cdaed9
Introduce UserId utility class
2020-11-13 15:59:28 +01:00
31844c5212
break for-loop of addUserId method when finding key
2020-11-13 15:11:33 +01:00
86c3487ad4
Some code cleanup
2020-11-13 15:08:37 +01:00
9b2ad24bda
Implement revocation of subkeys
2020-11-13 14:32:29 +01:00
b4967db1a2
Implement adding subkeys to keyrings
2020-11-10 17:25:35 +01:00
99a2fcf1c0
Simplify KeyType API
2020-11-07 18:24:12 +01:00
6159428c9a
Add support for deleting user-ids (untested)
2020-11-03 19:56:35 +01:00
92e2828885
Add support for deleting subKeys (untested)
2020-11-03 19:32:01 +01:00
2d899e0a3b
Allow adding user-ids to sub keys
2020-11-03 19:29:15 +01:00
7c102334ed
expand expression to simplify debugging
2020-10-30 13:30:04 +01:00
70ad4a274e
Change method name to toNoPassphrase()
2020-10-30 13:29:18 +01:00
8097a9d964
Passphrase.isEmpty: also check for validity
2020-10-30 12:31:52 +01:00
423a3f1354
Merge pull request #18 from wiktor-k/fix-empty-passphrase
...
Fix creating keys with `Passphrase.emptyPassphrase()`
2020-10-30 12:31:06 +01:00
04420f8dac
Extract secret key checksum algorithm into constant
2020-10-30 12:28:11 +01:00
Wiktor Kwapisiewicz
59fe53c594
Fix creating keys with Passphrase.emptyPassphrase()
...
Previously the code supplied `null` to BouncyCastle's
encryptor/decryptor builder's build method and that caused
NullPointerException to be thrown.
The fix checks if the passphrase is empty and omits the BouncyCastle
builder in that case.
Fixes #16 .
2020-10-30 12:22:05 +01:00
Wiktor Kwapisiewicz
e30d0f6293
Remove RSA_SIGN and RSA_ENCRYPT as they are deprecated
...
This change removes two mechanisms that are deprecated in RFC 4880. The
spec explicitly mentions that "RSA Encrypt-Only (2) and RSA Sign-Only
are deprecated and SHOULD NOT be generated" [0].
The remaining RSA_GENERAL key type was renamed to just RSA for ease of
use for developers.
[0]: https://tools.ietf.org/html/rfc4880#section-9.1
2020-10-30 11:48:28 +01:00
cdd1bf4198
Add documentation and throw NotYetImplementedException in stubs
2020-10-29 15:15:13 +01:00
99af9e0171
Re-encrypting whole keyring successful
2020-10-25 20:43:09 +01:00