OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // Library tag to allow the test to run on Dartium. |
| 6 library hmac_sha256_test; |
| 7 |
| 8 import "package:crypto/crypto.dart"; |
| 9 import "package:test/test.dart"; |
| 10 |
| 11 part 'hmac_sha256_test_vectors.dart'; |
| 12 |
| 13 void main() { |
| 14 test('standard vectors', () { |
| 15 _testStandardVectors(hmac_sha256_inputs, hmac_sha256_keys, |
| 16 hmac_sha256_macs); |
| 17 }); |
| 18 } |
| 19 |
| 20 void _testStandardVectors(inputs, keys, macs) { |
| 21 for (var i = 0; i < inputs.length; i++) { |
| 22 var hmac = new HMAC(new SHA256(), keys[i]); |
| 23 hmac.add(inputs[i]); |
| 24 var d = hmac.close(); |
| 25 expect(CryptoUtils.bytesToHex(d), startsWith(macs[i])); |
| 26 } |
| 27 } |
OLD | NEW |