mirrored from https://www.bouncycastle.org/repositories/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathOpenPGPKey.java
More file actions
704 lines (637 loc) · 24 KB
/
OpenPGPKey.java
File metadata and controls
704 lines (637 loc) · 24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
package org.bouncycastle.openpgp.api;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.bouncycastle.bcpg.BCPGInputStream;
import org.bouncycastle.bcpg.BCPGOutputStream;
import org.bouncycastle.bcpg.HashAlgorithmTags;
import org.bouncycastle.bcpg.KeyIdentifier;
import org.bouncycastle.bcpg.PacketFormat;
import org.bouncycastle.bcpg.PublicKeyPacket;
import org.bouncycastle.bcpg.S2K;
import org.bouncycastle.bcpg.SecretKeyPacket;
import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPKeyPair;
import org.bouncycastle.openpgp.PGPKeyValidationException;
import org.bouncycastle.openpgp.PGPObjectFactory;
import org.bouncycastle.openpgp.PGPPrivateKey;
import org.bouncycastle.openpgp.PGPPublicKey;
import org.bouncycastle.openpgp.PGPPublicKeyRing;
import org.bouncycastle.openpgp.PGPSecretKey;
import org.bouncycastle.openpgp.PGPSecretKeyRing;
import org.bouncycastle.openpgp.PGPSignature;
import org.bouncycastle.openpgp.PGPSignatureList;
import org.bouncycastle.openpgp.PGPUtil;
import org.bouncycastle.openpgp.api.exception.KeyPassphraseException;
import org.bouncycastle.openpgp.operator.PBESecretKeyDecryptor;
import org.bouncycastle.openpgp.operator.PBESecretKeyDecryptorBuilderProvider;
import org.bouncycastle.openpgp.operator.PBESecretKeyEncryptor;
import org.bouncycastle.openpgp.operator.PBESecretKeyEncryptorFactory;
/**
* An {@link OpenPGPKey} (TSK - transferable secret key) is the pendant to an {@link OpenPGPCertificate},
* but containing the secret key material in addition to the public components.
* It consists of one or multiple {@link OpenPGPSecretKey} objects.
*/
public class OpenPGPKey
extends OpenPGPCertificate
{
// This class extends OpenPGPCertificate, but also holds secret key components in a dedicated map.
private final Map<KeyIdentifier, OpenPGPSecretKey> secretKeys;
/**
* Create an {@link OpenPGPKey} instance based on a {@link PGPSecretKeyRing}.
* The {@link OpenPGPImplementation} will be acquired by invoking {@link OpenPGPImplementation#getInstance()}.
*
* @param keyRing secret key ring
*/
public OpenPGPKey(PGPSecretKeyRing keyRing)
{
this(keyRing, OpenPGPImplementation.getInstance());
}
/**
* Create an {@link OpenPGPKey} instance based on a {@link PGPSecretKeyRing},
* a provided {@link OpenPGPImplementation} and its {@link OpenPGPPolicy}.
*
* @param keyRing secret key ring
* @param implementation OpenPGP implementation
*/
public OpenPGPKey(PGPSecretKeyRing keyRing, OpenPGPImplementation implementation)
{
this(keyRing, implementation, implementation.policy());
}
/**
* Create an {@link OpenPGPKey} instance based on a {@link PGPSecretKeyRing},
* a provided {@link OpenPGPImplementation} and {@link OpenPGPPolicy}.
*
* @param keyRing secret key ring
* @param implementation OpenPGP implementation
* @param policy OpenPGP policy
*/
public OpenPGPKey(PGPSecretKeyRing keyRing, OpenPGPImplementation implementation, OpenPGPPolicy policy)
{
super(keyRing, implementation, policy);
// Process and map secret keys
this.secretKeys = new HashMap<KeyIdentifier, OpenPGPSecretKey>();
for (Iterator it = getKeys().iterator(); it.hasNext(); )
{
OpenPGPComponentKey key = (OpenPGPComponentKey)it.next();
KeyIdentifier identifier = key.getKeyIdentifier();
PGPSecretKey secretKey = keyRing.getSecretKey(identifier);
if (secretKey == null)
{
continue;
}
secretKeys.put(identifier, new OpenPGPSecretKey(key, secretKey, implementation.pbeSecretKeyDecryptorBuilderProvider()));
}
}
@Override
public boolean isSecretKey()
{
return true;
}
/**
* Return the {@link OpenPGPCertificate} of this {@link OpenPGPKey}.
*
* @return certificate
*/
public OpenPGPCertificate toCertificate()
{
return new OpenPGPCertificate(getPGPPublicKeyRing(), implementation, policy);
}
@Override
public List<OpenPGPCertificateComponent> getComponents()
{
// We go through the list of components returned by OpenPGPCertificate and replace those components
// where we have the secret key available
// contains only public components
List<OpenPGPCertificateComponent> components = super.getComponents();
for (int i = components.size() - 1; i >= 0; i--)
{
OpenPGPCertificateComponent component = (OpenPGPCertificateComponent)components.get(i);
if (component instanceof OpenPGPComponentKey)
{
OpenPGPSecretKey secretKey = getSecretKey((OpenPGPComponentKey)component);
if (secretKey != null)
{
// swap in secret component
components.remove(i);
components.add(i, secretKey);
}
}
}
return components;
}
/**
* Return the {@link OpenPGPSecretKey} of this key's primary key.
*
* @return primary secret key
*/
public OpenPGPSecretKey getPrimarySecretKey()
{
return getSecretKey(getPrimaryKey());
}
/**
* Return a {@link Map} containing all {@link OpenPGPSecretKey} components (secret subkeys) of the key.
*
* @return secret key components
*/
public Map<KeyIdentifier, OpenPGPSecretKey> getSecretKeys()
{
return new HashMap<KeyIdentifier, OpenPGPSecretKey>(secretKeys);
}
/**
* Return the {@link OpenPGPSecretKey} identified by the passed {@link KeyIdentifier}.
*
* @param identifier key identifier
* @return corresponding secret key or null
*/
public OpenPGPSecretKey getSecretKey(KeyIdentifier identifier)
{
return secretKeys.get(identifier);
}
/**
* Return the {@link OpenPGPSecretKey} that corresponds to the passed {@link OpenPGPComponentKey}.
*
* @param key component key
* @return corresponding secret key or null
*/
public OpenPGPSecretKey getSecretKey(OpenPGPComponentKey key)
{
return getSecretKey(key.getKeyIdentifier());
}
/**
* Replace the given secret key component.
*
* @param secretKey secret key
*/
void replaceSecretKey(OpenPGPSecretKey secretKey)
{
keyRing = PGPSecretKeyRing.insertSecretKey((PGPSecretKeyRing)keyRing, secretKey.rawSecKey);
secretKeys.put(secretKey.getKeyIdentifier(), secretKey);
}
@Override
public PGPSecretKeyRing getPGPKeyRing()
{
return getPGPSecretKeyRing();
}
/**
* Return the underlying {@link PGPSecretKeyRing}.
*
* @return secret key ring
*/
public PGPSecretKeyRing getPGPSecretKeyRing()
{
return (PGPSecretKeyRing)super.getPGPKeyRing();
}
@Override
public byte[] getEncoded(PacketFormat packetFormat)
throws IOException
{
ByteArrayOutputStream bOut = new ByteArrayOutputStream();
BCPGOutputStream pOut = new BCPGOutputStream(bOut, packetFormat);
getPGPSecretKeyRing().encode(pOut);
pOut.close();
return bOut.toByteArray();
}
/**
* Return a new instance of this key with the updated signatures or subkeys from the given
* ASCII armored stream merged into.
*
* @param armored ASCII armored key, certificate or key signatures
* @return key with merged material
* @throws IOException if the key material cannot be decoded
* @throws PGPException if the key material cannot be decoded
*/
@Override
public OpenPGPKey join(String armored)
throws IOException, PGPException
{
ByteArrayInputStream bIn = new ByteArrayInputStream(armored.getBytes());
InputStream decoderStream = PGPUtil.getDecoderStream(bIn);
BCPGInputStream wrapper = BCPGInputStream.wrap(decoderStream);
PGPObjectFactory objFac = implementation.pgpObjectFactory(wrapper);
OpenPGPCertificate otherCert;
Object next;
while ((next = objFac.nextObject()) != null)
{
if (next instanceof PGPPublicKeyRing)
{
PGPPublicKeyRing publicKeys = (PGPPublicKeyRing)next;
otherCert = new OpenPGPCertificate(publicKeys, implementation);
try
{
return join(otherCert);
}
catch (IllegalArgumentException e)
{
// skip over wrong certificate
}
}
else if (next instanceof PGPSecretKeyRing)
{
PGPSecretKeyRing secretKeys = (PGPSecretKeyRing) next;
otherCert = new OpenPGPKey(secretKeys, implementation);
try
{
return join(otherCert);
} catch (IllegalArgumentException e)
{
// skip over wrong certificate
}
}
else if (next instanceof PGPSignatureList)
{
// parse and join delegations / revocations
// those are signatures of type DIRECT_KEY or KEY_REVOCATION issued either by the primary key itself
// (self-signatures) or by a 3rd party (delegations / delegation revocations)
PGPSignatureList signatures = (PGPSignatureList)next;
PGPPublicKeyRing publicKeys = getPGPPublicKeyRing();
PGPPublicKey primaryKey = publicKeys.getPublicKey();
for (Iterator<PGPSignature> it = signatures.iterator(); it.hasNext(); )
{
primaryKey = PGPPublicKey.addCertification(primaryKey, it.next());
}
publicKeys = PGPPublicKeyRing.insertPublicKey(publicKeys, primaryKey);
PGPSecretKeyRing secretKeys = PGPSecretKeyRing.replacePublicKeys(getPGPKeyRing(), publicKeys);
return new OpenPGPKey(secretKeys, implementation);
}
}
return this;
}
@Override
public OpenPGPKey join(OpenPGPCertificate keyOrCertificate)
throws PGPException
{
if (!getKeyIdentifier().matchesExplicit(keyOrCertificate.getKeyIdentifier()))
{
throw new IllegalArgumentException("Not the same OpenPGP key/certificate: Mismatched primary key.");
}
PGPSecretKeyRing secretKeys = getPGPSecretKeyRing();
if (keyOrCertificate.isSecretKey())
{
OpenPGPKey otherKey = (OpenPGPKey) keyOrCertificate;
// existing secret keys
List<PGPSecretKey> sks = new ArrayList<>();
for (PGPSecretKey sk : getPGPSecretKeyRing())
{
sks.add(sk);
}
// merge new secret keys
for (PGPSecretKey sk : otherKey.getPGPSecretKeyRing())
{
if (getPGPSecretKeyRing().getSecretKey(sk.getKeyIdentifier()) == null)
{
sks.add(sk);
}
}
secretKeys = new PGPSecretKeyRing(sks);
}
// merge the public parts
OpenPGPCertificate joinedCertificate = toCertificate().join(keyOrCertificate);
// join secret and public parts
secretKeys = PGPSecretKeyRing.replacePublicKeys(secretKeys, joinedCertificate.getPGPPublicKeyRing());
return new OpenPGPKey(secretKeys, implementation);
}
/**
* Secret key component of a {@link org.bouncycastle.openpgp.api.OpenPGPCertificate.OpenPGPPrimaryKey} or
* {@link org.bouncycastle.openpgp.api.OpenPGPCertificate.OpenPGPSubkey}.
*/
public static class OpenPGPSecretKey
extends OpenPGPComponentKey
{
private final PGPSecretKey rawSecKey;
private final OpenPGPComponentKey pubKey;
private final PBESecretKeyDecryptorBuilderProvider decryptorBuilderProvider;
/**
* Constructor.
*
* @param pubKey corresponding public key component
* @param secKey secret key
* @param decryptorBuilderProvider for unlocking private keys
*/
public OpenPGPSecretKey(OpenPGPComponentKey pubKey,
PGPSecretKey secKey,
PBESecretKeyDecryptorBuilderProvider decryptorBuilderProvider)
{
super(pubKey.getPGPPublicKey(), pubKey.getCertificate());
this.decryptorBuilderProvider = decryptorBuilderProvider;
this.rawSecKey = secKey;
this.pubKey = pubKey;
}
@Override
protected OpenPGPCertificateComponent getPublicComponent()
{
// return the public key component to properly map this secret key to its public key component when
// the public key component is used as key in a map.
return pubKey;
}
@Override
public boolean isPrimaryKey()
{
return getPublicKey().isPrimaryKey();
}
@Override
public OpenPGPComponentSignature getLatestSelfSignature(Date evaluationTime)
{
return getPublicKey().getLatestSelfSignature(evaluationTime);
}
/**
* Return the {@link OpenPGPKey} which this {@link OpenPGPSecretKey} belongs to.
*
* @return OpenPGPKey
*/
public OpenPGPKey getOpenPGPKey()
{
return (OpenPGPKey)getCertificate();
}
@Override
public String toDetailString()
{
return "Private" + pubKey.toDetailString();
}
/**
* Return the underlying {@link PGPSecretKey}.
*
* @return secret key
*/
public PGPSecretKey getPGPSecretKey()
{
return rawSecKey;
}
/**
* Return the public {@link OpenPGPComponentKey} corresponding to this {@link OpenPGPSecretKey}.
*
* @return public component key
*/
public OpenPGPComponentKey getPublicKey()
{
return pubKey;
}
/**
* If true, the secret key is not available in plain and likely needs to be decrypted by providing
* a key passphrase.
*
* @return true if the key is locked
*/
public boolean isLocked()
{
return getPGPSecretKey().getS2KUsage() != SecretKeyPacket.USAGE_NONE;
}
/**
* Unlock an unprotected {@link OpenPGPSecretKey}.
*
* @return unlocked private key
* @throws PGPException if the key cannot be unlocked
*/
public OpenPGPPrivateKey unlock()
throws PGPException
{
return unlock((char[])null);
}
/**
* Unlock a protected {@link OpenPGPSecretKey}.
*
* @param passphraseProvider provider for key passphrases
* @return unlocked private key
* @throws PGPException if the key cannot be unlocked
*/
public OpenPGPPrivateKey unlock(KeyPassphraseProvider passphraseProvider)
throws PGPException
{
if (!isLocked())
{
return unlock((char[])null);
}
return unlock(passphraseProvider.getKeyPassword(this));
}
/**
* Access the {@link PGPKeyPair} by unlocking the potentially locked secret key using the provided
* passphrase. Note: If the key is not locked, it is sufficient to pass null as passphrase.
*
* @param passphrase passphrase or null
* @return keypair containing unlocked private key
* @throws PGPException if the key cannot be unlocked
*/
public OpenPGPPrivateKey unlock(char[] passphrase)
throws PGPException
{
sanitizeProtectionMode();
PBESecretKeyDecryptor decryptor = null;
try
{
if (passphrase != null)
{
decryptor = decryptorBuilderProvider.provide().build(passphrase);
}
PGPPrivateKey privateKey = getPGPSecretKey().extractPrivateKey(decryptor);
if (privateKey == null)
{
return null;
}
PGPKeyPair unlockedKey = new PGPKeyPair(getPGPSecretKey().getPublicKey(), privateKey);
return new OpenPGPPrivateKey(this, unlockedKey);
}
catch (PGPException e)
{
throw new KeyPassphraseException(this, e);
}
}
private void sanitizeProtectionMode()
throws PGPException
{
if (!isLocked())
{
return;
}
PGPSecretKey secretKey = getPGPSecretKey();
S2K s2k = secretKey.getS2K();
if (s2k == null)
{
throw new PGPKeyValidationException("Legacy CFB using MD5 is not allowed.");
}
if (s2k.getType() == S2K.ARGON_2 && secretKey.getS2KUsage() != SecretKeyPacket.USAGE_AEAD)
{
throw new PGPKeyValidationException("Argon2 without AEAD is not allowed.");
}
if (getVersion() == PublicKeyPacket.VERSION_6)
{
if (secretKey.getS2KUsage() == SecretKeyPacket.USAGE_CHECKSUM)
{
throw new PGPKeyValidationException("Version 6 keys MUST NOT use malleable CFB.");
}
if (s2k.getType() == S2K.SIMPLE)
{
throw new PGPKeyValidationException("Version 6 keys MUST NOT use SIMPLE S2K.");
}
}
}
/**
* Return true if the provided passphrase is correct.
*
* @param passphrase passphrase
* @return true if the passphrase is correct
*/
public boolean isPassphraseCorrect(char[] passphrase)
{
if (passphrase != null && !isLocked())
{
return false;
}
try
{
OpenPGPPrivateKey privateKey = unlock(passphrase);
return privateKey.unlockedKey != null;
}
catch (PGPException e)
{
return false;
}
}
}
/**
* Unlocked {@link OpenPGPSecretKey}.
*/
public static class OpenPGPPrivateKey
{
private final OpenPGPSecretKey secretKey;
private final PGPKeyPair unlockedKey;
public OpenPGPPrivateKey(OpenPGPSecretKey secretKey, PGPKeyPair unlockedKey)
{
this.secretKey = secretKey;
this.unlockedKey = unlockedKey;
}
/**
* Return the public {@link OpenPGPComponentKey} of this {@link OpenPGPPrivateKey}.
*
* @return public component key
*/
public OpenPGPComponentKey getPublicKey()
{
return secretKey.getPublicKey();
}
/**
* Return the {@link OpenPGPSecretKey} in its potentially locked form.
*
* @return secret key
*/
public OpenPGPSecretKey getSecretKey()
{
return secretKey;
}
/**
* Return the unlocked {@link PGPKeyPair} containing the decrypted {@link PGPPrivateKey}.
*
* @return unlocked private key
*/
public PGPKeyPair getKeyPair()
{
return unlockedKey;
}
/**
* Return the used {@link OpenPGPImplementation}.
*
* @return implementation
*/
private OpenPGPImplementation getImplementation()
{
return getSecretKey().getOpenPGPKey().implementation;
}
/**
* Return a NEW instance of the {@link OpenPGPSecretKey} locked with the new passphrase.
* If the key was unprotected before, or if it was protected using AEAD, the new instance will be
* protected using AEAD as well.
*
* @param newPassphrase new passphrase
* @return new instance of the key, locked with the new passphrase
* @throws PGPException if the key cannot be locked
*/
public OpenPGPSecretKey changePassphrase(char[] newPassphrase)
throws PGPException
{
boolean useAead = !secretKey.isLocked() ||
secretKey.getPGPSecretKey().getS2KUsage() == SecretKeyPacket.USAGE_AEAD;
return changePassphrase(newPassphrase, getImplementation(), useAead);
}
/**
* Return a NEW instance of the {@link OpenPGPSecretKey} locked with the new passphrase.
*
* @param newPassphrase new passphrase
* @param implementation OpenPGP implementation
* @param useAEAD whether to protect the key using AEAD
* @return new instance of the key, locked with the new passphrase
* @throws PGPException if the key cannot be locked
*/
public OpenPGPSecretKey changePassphrase(char[] newPassphrase,
OpenPGPImplementation implementation,
boolean useAEAD)
throws PGPException
{
return changePassphrase(newPassphrase, implementation.pbeSecretKeyEncryptorFactory(useAEAD));
}
/**
* Return a NEW instance of the {@link OpenPGPSecretKey} locked with the new passphrase.
*
* @param newPassphrase new passphrase
* @param keyEncryptorFactory factory for {@link PBESecretKeyEncryptor} instances
* @return new instance of the key, locked with the new passphrase
* @throws PGPException if the key cannot be locked
*/
public OpenPGPSecretKey changePassphrase(char[] newPassphrase,
PBESecretKeyEncryptorFactory keyEncryptorFactory)
throws PGPException
{
PBESecretKeyEncryptor keyEncryptor;
if (newPassphrase == null || newPassphrase.length == 0)
{
keyEncryptor = null;
}
else
{
keyEncryptor = keyEncryptorFactory.build(
newPassphrase,
getKeyPair().getPublicKey().getPublicKeyPacket());
}
return changePassphrase(keyEncryptor);
}
/**
* Return a NEW instance of the {@link OpenPGPSecretKey} locked using the given {@link PBESecretKeyEncryptor}.
*
* @param keyEncryptor encryptor
* @return new instance of the key, locked with the key encryptor
* @throws PGPException if the key cannot be locked
*/
public OpenPGPSecretKey changePassphrase(PBESecretKeyEncryptor keyEncryptor)
throws PGPException
{
PGPSecretKey encrypted = new PGPSecretKey(
getKeyPair().getPrivateKey(),
getKeyPair().getPublicKey(),
getImplementation().pgpDigestCalculatorProvider().get(HashAlgorithmTags.SHA1),
getSecretKey().isPrimaryKey(),
keyEncryptor);
OpenPGPSecretKey sk = new OpenPGPSecretKey(
getSecretKey().getPublicKey(),
encrypted,
getImplementation().pbeSecretKeyDecryptorBuilderProvider());
sk.sanitizeProtectionMode();
return sk;
}
/**
* Return a NEW instance of the {@link OpenPGPSecretKey} with removed passphrase protection.
*
* @return unlocked new instance of the key
* @throws PGPException if the key cannot be unlocked
*/
public OpenPGPSecretKey removePassphrase()
throws PGPException
{
return changePassphrase((PBESecretKeyEncryptor)null);
}
}
}