| Method from javax.security.cert.X509CertBridge Detail: |
public void checkValidity() throws CertificateExpiredException, CertificateNotYetValidException {
try
{
cert.checkValidity();
}
catch (java.security.cert.CertificateExpiredException cee)
{
throw new CertificateExpiredException(cee.getMessage());
}
catch (java.security.cert.CertificateNotYetValidException cnyve)
{
throw new CertificateNotYetValidException(cnyve.getMessage());
}
}
|
public void checkValidity(Date date) throws CertificateExpiredException, CertificateNotYetValidException {
try
{
cert.checkValidity(date);
}
catch (java.security.cert.CertificateExpiredException cee)
{
throw new CertificateExpiredException(cee.getMessage());
}
catch (java.security.cert.CertificateNotYetValidException cnyve)
{
throw new CertificateNotYetValidException(cnyve.getMessage());
}
}
|
public byte[] getEncoded() throws CertificateEncodingException {
try
{
return cert.getEncoded();
}
catch (java.security.cert.CertificateEncodingException cee)
{
throw new CertificateEncodingException(cee.getMessage());
}
}
|
public Principal getIssuerDN() {
return cert.getIssuerDN();
}
|
public Date getNotAfter() {
return cert.getNotAfter();
}
|
public Date getNotBefore() {
return cert.getNotBefore();
}
|
public PublicKey getPublicKey() {
return cert.getPublicKey();
}
|
public BigInteger getSerialNumber() {
return cert.getSerialNumber();
}
|
public String getSigAlgName() {
return cert.getSigAlgName();
}
|
public String getSigAlgOID() {
return cert.getSigAlgOID();
}
|
public byte[] getSigAlgParams() {
return cert.getSigAlgParams();
}
|
public Principal getSubjectDN() {
return cert.getSubjectDN();
}
|
public int getVersion() {
return cert.getVersion();
}
|
public String toString() {
return cert.toString();
}
|
public void verify(PublicKey key) throws SignatureException, NoSuchProviderException, InvalidKeyException, NoSuchAlgorithmException, CertificateException {
try
{
cert.verify(key);
}
catch (java.security.cert.CertificateException ce)
{
throw new CertificateException(ce.getMessage());
}
}
|
public void verify(PublicKey key,
String sigProvider) throws SignatureException, NoSuchProviderException, InvalidKeyException, NoSuchAlgorithmException, CertificateException {
try
{
cert.verify(key, sigProvider);
}
catch (java.security.cert.CertificateException ce)
{
throw new CertificateException(ce.getMessage());
}
}
|