certificateChainDerToPem static method
Encodes a list of certificate DER blobs to PEM list.
Implementation
static List<String> certificateChainDerToPem(List<Uint8List> chainDer) {
return chainDer.map(certificateDerToPem).toList(growable: false);
}
Encodes a list of certificate DER blobs to PEM list.
static List<String> certificateChainDerToPem(List<Uint8List> chainDer) {
return chainDer.map(certificateDerToPem).toList(growable: false);
}