Pkcs12Utils class

Constructors

Pkcs12Utils()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

formatPkcs12Password(Uint8List password) Uint8List
Formats the given password according to RFC 7292 Appendix B.1
generatePkcs12(String privateKey, List<String> certificates, {String? password, String keyPbe = 'PBE-SHA1-3DES', String certPbe = 'PBE-SHA1-RC2-40', String digestAlgorithm = 'SHA-1', int macIter = 2048, Uint8List? salt, Uint8List? certSalt, Uint8List? keySalt, String? friendlyName, Uint8List? localKeyId}) Uint8List
Generates a PKCS12 file according to RFC 7292.
parsePkcs12(Uint8List pkcs12, {String? password}) List<String>