X509.fromDer constructor

X509.fromDer(
  1. Uint8List der
)

Creates a X.509 Certificate from DER encoded bytes.

Implementation

factory X509.fromDer(Uint8List der) => X509(
      ASN1Parser(der).nextObject() as ASN1Sequence,
    );