Class EncryptionIdentifier
- java.lang.Object
-
- org.firebirdsql.gds.ng.wire.crypt.EncryptionIdentifier
-
public final class EncryptionIdentifier extends java.lang.Object
Identifier of an encryption type + plugin.- Since:
- 4.0
- Author:
- Mark Rotteveel
-
-
Constructor Summary
Constructors Constructor Description EncryptionIdentifier(java.lang.String type, java.lang.String pluginName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getPluginName()
Name of the plugin (or cipher).java.lang.String
getType()
Type of encryption.int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getType
public java.lang.String getType()
Type of encryption.For example:
"Symmetric"
.- Returns:
- Encryption type
-
getPluginName
public java.lang.String getPluginName()
Name of the plugin (or cipher).For example:
"Arc4"
.- Returns:
- Name of the plugin
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-