Package sop.operation
Interface Version
public interface Version
-
Method Summary
Modifier and TypeMethodDescriptionReturn version information about the used OpenPGP backend.Return an extended version string containing multiple lines of version information.getName()
Return the implementations name.Return the implementations short version string.
-
Method Details
-
getName
String getName()Return the implementations name. e.g. "SOP",- Returns:
- implementation name
-
getVersion
String getVersion()Return the implementations short version string. e.g. "1.0"- Returns:
- version string
-
getBackendVersion
String getBackendVersion()Return version information about the used OpenPGP backend. e.g. "Bouncycastle 1.70"- Returns:
- backend version string
-
getExtendedVersion
String getExtendedVersion()Return an extended version string containing multiple lines of version information. The first line MUST match the information produced bygetName()
andgetVersion()
, but the rest of the text has no defined structure. Example:"SOP 1.0 Awesome PGP! Using Bouncycastle 1.70 LibFoo 1.2.2 See https://pgp.example.org/sop/ for more information"
- Returns:
- extended version string
-