public abstract class CryptoBase extends Object implements Crypto
Modifier and Type | Field and Description |
---|---|
protected CertificateFactory |
certificateFactory |
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.
|
protected boolean |
matches(X509Certificate cert,
Collection<Pattern> subjectDNPatterns) |
void |
setCertificateFactory(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.
|
void |
verifyDirectTrust(X509Certificate[] certs)
Evaluate whether a given public key should be trusted directly (located
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getPrivateKey, getPrivateKey, getX509Certificates, getX509Identifier, verifyTrust, verifyTrust
public static final String SKI_OID
public static final String NAME_CONSTRAINTS_OID
protected CertificateFactory certificateFactory
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(CertificateFactory certFactory)
setCertificateFactory
in interface Crypto
certFactory
- 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
public void verifyDirectTrust(X509Certificate[] certs) throws WSSecurityException
Crypto
verifyDirectTrust
in interface Crypto
certs
- Certificate chain to validateWSSecurityException
- if the certificate chain is invalidprotected boolean matches(X509Certificate cert, Collection<Pattern> subjectDNPatterns)
Copyright © 2016 JBoss by Red Hat. All rights reserved.