Package org.bouncycastle.jcajce.util
Class PrivateKeyAnnotator
- java.lang.Object
-
- org.bouncycastle.jcajce.util.PrivateKeyAnnotator
-
public class PrivateKeyAnnotator extends java.lang.Object
Class for instancing AnnotatedPrivateKeys.
-
-
Constructor Summary
Constructors Constructor Description PrivateKeyAnnotator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnnotatedPrivateKey
annotate(java.security.PrivateKey privKey, java.lang.String label)
Create an AnnotatedPrivateKey with a single annotation using AnnotatedPrivateKey.LABEL as a key.static AnnotatedPrivateKey
annotate(java.security.PrivateKey privKey, java.util.Map<java.lang.String,java.lang.Object> annotations)
-
-
-
Method Detail
-
annotate
public static AnnotatedPrivateKey annotate(java.security.PrivateKey privKey, java.lang.String label)
Create an AnnotatedPrivateKey with a single annotation using AnnotatedPrivateKey.LABEL as a key.- Parameters:
privKey
- the private key to be annotated.label
- the label to be associated with the private key.- Returns:
- the newly annotated private key.
-
annotate
public static AnnotatedPrivateKey annotate(java.security.PrivateKey privKey, java.util.Map<java.lang.String,java.lang.Object> annotations)
-
-