LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // This package implements Bruce Schneier's Blowfish encryption algorithm. | 5 // Package blowfish implements Bruce Schneier's Blowfish encryption algorithm. |
6 package blowfish | 6 package blowfish |
7 | 7 |
8 // The code is a port of Bruce Schneier's C implementation. | 8 // The code is a port of Bruce Schneier's C implementation. |
9 // See http://www.schneier.com/blowfish.html. | 9 // See http://www.schneier.com/blowfish.html. |
10 | 10 |
11 import ( | 11 import ( |
12 "os" | 12 "os" |
13 "strconv" | 13 "strconv" |
14 ) | 14 ) |
15 | 15 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 // Reset zeros the key data, so that it will no longer | 71 // Reset zeros the key data, so that it will no longer |
72 // appear in the process's memory. | 72 // appear in the process's memory. |
73 func (c *Cipher) Reset() { | 73 func (c *Cipher) Reset() { |
74 zero(c.p[0:]) | 74 zero(c.p[0:]) |
75 zero(c.s0[0:]) | 75 zero(c.s0[0:]) |
76 zero(c.s1[0:]) | 76 zero(c.s1[0:]) |
77 zero(c.s2[0:]) | 77 zero(c.s2[0:]) |
78 zero(c.s3[0:]) | 78 zero(c.s3[0:]) |
79 } | 79 } |
LEFT | RIGHT |