hashAlgorithmIdentifiers constant

Map<HashAlgorithm, List<int>> const hashAlgorithmIdentifiers

Implementation

static const Map<HashAlgorithm, List<int>> hashAlgorithmIdentifiers =
    <HashAlgorithm, List<int>>{
  HashAlgorithm.sha1: <int>[1, 3, 14, 3, 2, 26],
  HashAlgorithm.sha256: <int>[2, 16, 840, 1, 101, 3, 4, 2, 1],
  HashAlgorithm.sha384: <int>[2, 16, 840, 1, 101, 3, 4, 2, 2],
  HashAlgorithm.sha512: <int>[2, 16, 840, 1, 101, 3, 4, 2, 3],
};