public abstract class CryptoBase extends Object implements Crypto
Modifier and Type | Field and Description |
---|---|
protected Map<String,CertificateFactory> |
certFactMap |
protected String |
cryptoProvider |
protected String |
defaultAlias |
static String |
NAME_CONSTRAINTS_OID
OID For the NameConstraints Extension to X.509
http://java.sun.com/j2se/1.4.2/docs/api/
http://www.ietf.org/rfc/rfc3280.txt (s.
|
static String |
SKI_OID |
Modifier | Constructor and Description |
---|---|
protected |
CryptoBase()
Constructor
|
Modifier and Type | Method and Description |
---|---|
protected Object |
createBCX509Name(String s) |
byte[] |
getBytesFromCertificates(X509Certificate[] certs)
Get a byte array given an array of X509 certificates.
|
CertificateFactory |
getCertificateFactory()
Get the CertificateFactory instance on this Crypto instance
|
X509Certificate[] |
getCertificatesFromBytes(byte[] data)
Construct an array of X509Certificate's from the byte array.
|
String |
getCryptoProvider()
Get the crypto provider associated with this implementation
|
String |
getDefaultX509Identifier()
Retrieves the identifier name of the default certificate.
|
byte[] |
getSKIBytesFromCert(X509Certificate cert)
Reads the SubjectKeyIdentifier information from the certificate.
|
X509Certificate |
loadCertificate(InputStream in)
Load a X509Certificate from the input stream.
|
void |
setCertificateFactory(String provider,
CertificateFactory certFactory)
Sets the CertificateFactory instance on this Crypto instance
|
void |
setCryptoProvider(String provider)
Set the crypto provider associated with this implementation
|
void |
setDefaultX509Identifier(String identifier)
Sets the identifier name of the default certificate.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getPrivateKey, getPrivateKey, getX509Certificates, getX509Identifier, verifyTrust, verifyTrust, verifyTrust
public static final String SKI_OID
public static final String NAME_CONSTRAINTS_OID
protected Map<String,CertificateFactory> certFactMap
protected String defaultAlias
protected String cryptoProvider
public String getCryptoProvider()
getCryptoProvider
in interface Crypto
public void setCryptoProvider(String provider)
setCryptoProvider
in interface Crypto
provider
- the crypto provider to setpublic String getDefaultX509Identifier() throws WSSecurityException
getDefaultX509Identifier
in interface Crypto
WSSecurityException
public void setDefaultX509Identifier(String identifier)
setDefaultX509Identifier
in interface Crypto
identifier
- name of the default X509 certificate.public void setCertificateFactory(String provider, CertificateFactory certFactory)
setCertificateFactory
in interface Crypto
provider
- the CertificateFactory provider namecertFactory
- the CertificateFactory the CertificateFactory instance to setpublic CertificateFactory getCertificateFactory() throws WSSecurityException
getCertificateFactory
in interface Crypto
CertificateFactory
to construct
X509 certificatesWSSecurityException
public X509Certificate loadCertificate(InputStream in) throws WSSecurityException
loadCertificate
in interface Crypto
in
- The InputStream
containing the X509CertificateWSSecurityException
public byte[] getSKIBytesFromCert(X509Certificate cert) throws WSSecurityException
getSKIBytesFromCert
in interface Crypto
cert
- The certificate to read SKIWSSecurityException
public byte[] getBytesFromCertificates(X509Certificate[] certs) throws WSSecurityException
getBytesFromCertificates
in interface Crypto
certs
- The certificates to convertWSSecurityException
public X509Certificate[] getCertificatesFromBytes(byte[] data) throws WSSecurityException
getCertificatesFromBytes
in interface Crypto
data
- The byte
array containing the X509 dataWSSecurityException
Copyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.