supportedHashes property

List<Hash> get supportedHashes

Must be set to all hashes supported for this certificate. This extension will only be asked for signatures of digests calculated with one of these hash algorithms. This should be in order of decreasing hash preference.

Implementation

List<Hash> get supportedHashes => _wrapped.supportedHashes.toDart
    .cast<$js.Hash>()
    .map((e) => Hash.fromJS(e))
    .toList();
set supportedHashes (List<Hash> v)

Implementation

set supportedHashes(List<Hash> v) {
  _wrapped.supportedHashes = v.toJSArray((e) => e.toJS);
}