aboutsummaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
authorAshley Hughes <spirit.returned@gmail.com>2014-02-01 17:28:56 +0000
committerAshley Hughes <spirit.returned@gmail.com>2014-02-01 17:28:56 +0000
commit65d328be14d5b77dc4b787960ae7eb398417acea (patch)
tree1e1a00c32a996540356b9947108b5e9b251188a3 /libraries
parentaf5e01db8e847e0f77cfcf53daf2dd4b241aaee3 (diff)
downloadopen-keychain-65d328be14d5b77dc4b787960ae7eb398417acea.tar.gz
open-keychain-65d328be14d5b77dc4b787960ae7eb398417acea.tar.bz2
open-keychain-65d328be14d5b77dc4b787960ae7eb398417acea.zip
make sure method is public
Diffstat (limited to 'libraries')
-rw-r--r--libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/PGPSecretKeyRing.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/PGPSecretKeyRing.java b/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/PGPSecretKeyRing.java
index 4805721a8..6df4c0c91 100644
--- a/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/PGPSecretKeyRing.java
+++ b/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/PGPSecretKeyRing.java
@@ -478,7 +478,7 @@ public class PGPSecretKeyRing
return new PGPSecretKeyRing(keys, secRing.extraPubKeys);
}
- static PGPSecretKey readSubkey(BCPGInputStream in, KeyFingerPrintCalculator fingerPrintCalculator)
+ public static PGPSecretKey readSubkey(BCPGInputStream in, KeyFingerPrintCalculator fingerPrintCalculator)
throws IOException, PGPException
{
SecretSubkeyPacket sub = (SecretSubkeyPacket)in.readPacket();