ProxyCertInfo.fromAsn1 constructor

ProxyCertInfo.fromAsn1(
  1. ASN1Sequence obj
)

Implementation

factory ProxyCertInfo.fromAsn1(ASN1Sequence obj) {
  return ProxyCertInfo(
      pCPathLenConstraint:
          obj.elements.length > 1 ? toDart(obj.elements[0]) : null,
      proxyPolicy: ProxyPolicy.fromAsn1(obj.elements.last as ASN1Sequence));
}