Example usage for org.bouncycastle.asn1 ASN1UTCTime getInstance

List of usage examples for org.bouncycastle.asn1 ASN1UTCTime getInstance

Introduction

In this page you can find the example usage for org.bouncycastle.asn1 ASN1UTCTime getInstance.

Prototype

public static ASN1UTCTime getInstance(Object obj) 

Source Link

Document

Return an UTC Time from the passed in object.

Usage

From source file:net.sf.keystore_explorer.crypto.x509.X509Ext.java

License:Open Source License

private String getMsCrlNextPublishStringValue(byte[] octets) {
    ASN1UTCTime time = ASN1UTCTime.getInstance(octets);
    return time.getTime();
}