Initial implementation of 'revoke-key' command

This commit is contained in:
Paul Schaub 2023-07-11 22:42:16 +02:00
parent ab2e4aa8e7
commit e6393b44b9
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
8 changed files with 151 additions and 0 deletions

View file

@ -27,6 +27,7 @@ import sop.operation.InlineVerify;
import sop.operation.DetachedSign;
import sop.operation.DetachedVerify;
import sop.operation.ListProfiles;
import sop.operation.RevokeKey;
import sop.operation.Version;
public class SOPTest {
@ -101,6 +102,11 @@ public class SOPTest {
return null;
}
@Override
public RevokeKey revokeKey() {
return null;
}
@Override
public InlineDetach inlineDetach() {
return null;