Do not import v3 keys, they are insecure!

This commit is contained in:
Dominik Schürmann
2014-08-14 15:42:02 +02:00
parent 225e248293
commit 0a1de8deea
4 changed files with 17 additions and 1 deletions

View File

@@ -118,6 +118,10 @@ public class UncachedKeyRing {
return mRing.getPublicKey().getFingerprint();
}
public int getVersion() {
return mRing.getPublicKey().getVersion();
}
public static UncachedKeyRing decodeFromData(byte[] data)
throws PgpGeneralException, IOException {