Implement VersionImpl.getSopSpecVersion()

This commit is contained in:
Paul Schaub 2023-04-14 14:36:57 +02:00
parent 446d121777
commit 5b363de6e4
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 5 additions and 0 deletions

View File

@ -63,4 +63,9 @@ public class VersionImpl implements Version {
"Using " + getBackendVersion() + "\n" +
"https://www.bouncycastle.org/java.html";
}
@Override
public String getSopSpecVersion() {
return "draft-dkg-openpgp-stateless-cli-" + SOP_VERSION;
}
}