OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // Standard test vectors from: | 5 // Standard test vectors from: |
6 // http://csrc.nist.gov/groups/STM/cavp/documents/mac/hmactestvectors.zip | 6 // http://csrc.nist.gov/groups/STM/cavp/documents/mac/hmactestvectors.zip |
7 | 7 |
8 part of hmac_sha1_test; | 8 part of hmac_sha1_test; |
9 | 9 |
10 const hmac_sha1_inputs = const [ | 10 const hmac_sha1_inputs = const [ |
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 'd78807f2a69d8e348cbd2c2d745f342397e20a41', | 908 'd78807f2a69d8e348cbd2c2d745f342397e20a41', |
909 '9602a3a1fd2dc3c55df5815ac0517001f8c6593b', | 909 '9602a3a1fd2dc3c55df5815ac0517001f8c6593b', |
910 'b95df20e4e63936b74af4ceb7ad94d4e4b56ea8d', | 910 'b95df20e4e63936b74af4ceb7ad94d4e4b56ea8d', |
911 '5f009c918e2f8d7c9f9087b78af44f54518e1c5a', | 911 '5f009c918e2f8d7c9f9087b78af44f54518e1c5a', |
912 'f92f9c4b8d423b14ac7ad924f183a1cc27de6afd', | 912 'f92f9c4b8d423b14ac7ad924f183a1cc27de6afd', |
913 'f476bd42bae22e645cedf601511b1ab8f2852b2c', | 913 'f476bd42bae22e645cedf601511b1ab8f2852b2c', |
914 '48d48ceb4c1f3e6b1e9c0fb8515f1121b846c19b', | 914 '48d48ceb4c1f3e6b1e9c0fb8515f1121b846c19b', |
915 '9e51be58cf2d5c8e85556b8f3d484109fb49553a', | 915 '9e51be58cf2d5c8e85556b8f3d484109fb49553a', |
916 '4ac41ab89f625c60125ed65ffa958c6b490ea670', | 916 '4ac41ab89f625c60125ed65ffa958c6b490ea670', |
917 ]; | 917 ]; |
OLD | NEW |