| 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 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(80), super(16, 5, true) { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |