Package io.jans.as.model.crypto
Class PrivateKey
- java.lang.Object
-
- io.jans.as.model.crypto.PrivateKey
-
- All Implemented Interfaces:
JSONable
- Direct Known Subclasses:
ECDSAPrivateKey
,EDDSAPrivateKey
,RSAPrivateKey
public abstract class PrivateKey extends java.lang.Object implements JSONable
The Private Key for Cryptography algorithms- Version:
- June 25, 2016
- Author:
- Javier Rojas Blum
-
-
Constructor Summary
Constructors Constructor Description PrivateKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getKeyId()
SignatureAlgorithm
getSignatureAlgorithm()
void
setKeyId(java.lang.String keyId)
void
setSignatureAlgorithm(SignatureAlgorithm signatureAlgorithm)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.jans.as.model.common.JSONable
toJSONObject
-
-
-
-
Method Detail
-
getKeyId
public java.lang.String getKeyId()
-
setKeyId
public void setKeyId(java.lang.String keyId)
-
getSignatureAlgorithm
public SignatureAlgorithm getSignatureAlgorithm()
-
setSignatureAlgorithm
public void setSignatureAlgorithm(SignatureAlgorithm signatureAlgorithm)
-
-