OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 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 XTEA encryption, as defined in Needham and | 5 // Package xtea implements XTEA encryption, as defined in Needham and Wheeler's |
6 // Wheeler's 1997 technical report, "Tea extensions." | 6 // 1997 technical report, "Tea extensions." |
7 package xtea | 7 package xtea |
8 | 8 |
9 // For details, see http://www.cix.co.uk/~klockstone/xtea.pdf | 9 // For details, see http://www.cix.co.uk/~klockstone/xtea.pdf |
10 | 10 |
11 import ( | 11 import ( |
12 "os" | 12 "os" |
13 "strconv" | 13 "strconv" |
14 ) | 14 ) |
15 | 15 |
16 // The XTEA block size in bytes. | 16 // The XTEA block size in bytes. |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 // Two rounds of XTEA applied per loop | 84 // Two rounds of XTEA applied per loop |
85 for i := 0; i < numRounds; { | 85 for i := 0; i < numRounds; { |
86 c.table[i] = sum + k[sum&3] | 86 c.table[i] = sum + k[sum&3] |
87 i++ | 87 i++ |
88 sum += delta | 88 sum += delta |
89 c.table[i] = sum + k[(sum>>11)&3] | 89 c.table[i] = sum + k[(sum>>11)&3] |
90 i++ | 90 i++ |
91 } | 91 } |
92 } | 92 } |
OLD | NEW |