Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: sdk/lib/crypto/sha1.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/crypto/hmac.dart ('k') | sdk/lib/crypto/sha256.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 part of dart.crypto; 5 part of dart.crypto;
6 6
7 // The SHA1 hasher is used to compute an SHA1 message digest. 7 // The SHA1 hasher is used to compute an SHA1 message digest.
8 class _SHA1 extends _HashBase implements SHA1 { 8 class _SHA1 extends _HashBase implements SHA1 {
9 // Construct a SHA1 hasher object. 9 // Construct a SHA1 hasher object.
10 _SHA1() : _w = new List(80), super(16, 5, true) { 10 _SHA1() : _w = new List.fixedLength(80), super(16, 5, true) {
11 _h[0] = 0x67452301; 11 _h[0] = 0x67452301;
12 _h[1] = 0xEFCDAB89; 12 _h[1] = 0xEFCDAB89;
13 _h[2] = 0x98BADCFE; 13 _h[2] = 0x98BADCFE;
14 _h[3] = 0x10325476; 14 _h[3] = 0x10325476;
15 _h[4] = 0xC3D2E1F0; 15 _h[4] = 0xC3D2E1F0;
16 } 16 }
17 17
18 // Returns a new instance of this Hash. 18 // Returns a new instance of this Hash.
19 SHA1 newInstance() { 19 SHA1 newInstance() {
20 return new SHA1(); 20 return new SHA1();
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 _h[0] = _add32(a, _h[0]); 59 _h[0] = _add32(a, _h[0]);
60 _h[1] = _add32(b, _h[1]); 60 _h[1] = _add32(b, _h[1]);
61 _h[2] = _add32(c, _h[2]); 61 _h[2] = _add32(c, _h[2]);
62 _h[3] = _add32(d, _h[3]); 62 _h[3] = _add32(d, _h[3]);
63 _h[4] = _add32(e, _h[4]); 63 _h[4] = _add32(e, _h[4]);
64 } 64 }
65 65
66 List<int> _w; 66 List<int> _w;
67 } 67 }
OLDNEW
« no previous file with comments | « sdk/lib/crypto/hmac.dart ('k') | sdk/lib/crypto/sha256.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698