Initial implementation of 'change-key-password' command of SOP-07

This commit is contained in:
Paul Schaub 2023-07-12 00:42:02 +02:00
parent 618d123a7b
commit 7e1377a28c
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
9 changed files with 317 additions and 0 deletions

View file

@ -16,6 +16,7 @@ import org.junit.jupiter.api.Test;
import sop.SOP;
import sop.exception.SOPGPException;
import sop.operation.Armor;
import sop.operation.ChangeKeyPassword;
import sop.operation.Dearmor;
import sop.operation.Decrypt;
import sop.operation.InlineDetach;
@ -107,6 +108,11 @@ public class SOPTest {
return null;
}
@Override
public ChangeKeyPassword changeKeyPassword() {
return null;
}
@Override
public InlineDetach inlineDetach() {
return null;