keyAlgorithm property

Map get keyAlgorithm

The KeyAlgorithm of the certified key. This contains algorithm parameters that are inherent to the key of the certificate (e.g. the key length). Other parameters like the hash function used by the sign function are not included.

Implementation

Map get keyAlgorithm => _wrapped.keyAlgorithm.toDartMap();
set keyAlgorithm (Map v)

Implementation

set keyAlgorithm(Map v) {
  _wrapped.keyAlgorithm = v.jsify()!;
}