Uses of Enum
com.dracoon.sdk.crypto.model.UserKeyPair.Version
Packages that use UserKeyPair.Version
-
Uses of UserKeyPair.Version in com.dracoon.sdk.crypto
Methods in com.dracoon.sdk.crypto with parameters of type UserKeyPair.VersionModifier and TypeMethodDescriptionstatic UserKeyPairCrypto.generateUserKeyPair(UserKeyPair.Version version, char[] password) Generates a random user key pair. -
Uses of UserKeyPair.Version in com.dracoon.sdk.crypto.model
Methods in com.dracoon.sdk.crypto.model that return UserKeyPair.VersionModifier and TypeMethodDescriptionstatic UserKeyPair.VersionUserKeyPair.Version.getByValue(String value) Finds a enumeration constant by its version value.UserPrivateKey.getVersion()Returns the private key version.UserPublicKey.getVersion()Returns the public key version.static UserKeyPair.VersionReturns the enum constant of this type with the specified name.static UserKeyPair.Version[]UserKeyPair.Version.values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.dracoon.sdk.crypto.model with parameters of type UserKeyPair.VersionModifierConstructorDescriptionUserPrivateKey(UserKeyPair.Version version, char[] privateKey) Constructs a new user private key.UserPublicKey(UserKeyPair.Version version, char[] publicKey) Constructs a new user public key.