tests: add testSubkeyAdd

This commit is contained in:
Vincent Breitmoser
2014-07-10 01:38:57 +02:00
parent 0afd979665
commit 90f546a4e8
4 changed files with 69 additions and 17 deletions

View File

@@ -101,6 +101,10 @@ public abstract class WrappedKeyRing extends KeyRing {
abstract public IterableIterator<WrappedPublicKey> publicKeyIterator();
public byte[] getEncoded() throws IOException {
return getRing().getEncoded();
}
public UncachedKeyRing getUncached() {
return new UncachedKeyRing(getRing());
}