1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-25 22:02:05 +01:00

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

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;
}
}