Added insecure warning to import card

This commit is contained in:
Hari
2017-02-04 01:47:14 +05:30
parent 015ef4aaae
commit ba1bd8d48a
9 changed files with 44 additions and 20 deletions

View File

@@ -82,6 +82,10 @@ public abstract class CanonicalizedKeyRing extends KeyRing {
return getRing().getPublicKey().hasRevocation();
}
public boolean isSecure() {
return getPublicKey().isSecure();
}
public Date getCreationDate() {
return getPublicKey().getCreationTime();
}