Pkcs12KeyPair constructor

Pkcs12KeyPair(
  1. List<int> bytes
)

Implementation

factory Pkcs12KeyPair(List<int> bytes) {
  final rootRef = fb.BufferContext.fromBytes(bytes);
  return reader.read(rootRef, 0);
}