org.bouncycastle.jcajce.util
Class AnnotatedPrivateKey
java.lang.Object
|
+--org.bouncycastle.jcajce.util.AnnotatedPrivateKey
- All Implemented Interfaces:
- java.security.Key, java.security.PrivateKey, java.io.Serializable
- public class AnnotatedPrivateKey
- extends java.lang.Object
- implements java.security.PrivateKey
Wrapper for a private key that carries annotations that can be used
for tracking or debugging.
- See Also:
- Serialized Form
Field Summary |
static java.lang.String |
LABEL
|
Fields inherited from interface java.security.PrivateKey |
serialVersionUID |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
LABEL
public static final java.lang.String LABEL
getKey
public java.security.PrivateKey getKey()
getAnnotations
public java.util.Map getAnnotations()
getAlgorithm
public java.lang.String getAlgorithm()
- Specified by:
getAlgorithm
in interface java.security.Key
getAnnotation
public java.lang.Object getAnnotation(java.lang.String key)
addAnnotation
public AnnotatedPrivateKey addAnnotation(java.lang.String name,
java.lang.Object annotation)
- Return a new annotated key with an additional annotation added to it.
- Parameters:
name
- the name of the annotation to add.annotation
- the object providing the annotation details.- Returns:
- a new annotated key with the extra annotation.
removeAnnotation
public AnnotatedPrivateKey removeAnnotation(java.lang.String name)
- Return a new annotated key with the named annotation removed.
- Parameters:
name
- the name of the annotation to remove.- Returns:
- a new annotated key with the named annotation removed.
getFormat
public java.lang.String getFormat()
- Specified by:
getFormat
in interface java.security.Key
getEncoded
public byte[] getEncoded()
- Specified by:
getEncoded
in interface java.security.Key
hashCode
public int hashCode()
- Overrides:
hashCode
in class java.lang.Object
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in class java.lang.Object
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object