A new version of CryptoExtras was added to project The Inbox:
http://source.squeak.org/inbox/CryptoExtras-rww.1.mcz ==================== Summary ==================== Name: CryptoExtras-rww.1 Author: rww Time: 28 August 2010, 6:55:17.475 am UUID: a9ef2eca-c61e-314b-81cd-5485e7694266 Ancestors: initial submission ==================== Snapshot ==================== SystemOrganization addCategory: #CryptoExtras! HashFunction subclass: #MD2 instanceVariableNames: '' classVariableNames: 'PITable' poolDictionaries: '' category: 'CryptoExtras'! ----- Method: MD2 classSide>>initialize (in category 'as yet unclassified') ----- initialize PITable := OrderedCollection new. self initializeFirstHalfPITable. self initializeSecondHalfPITable. ! ----- Method: MD2 classSide>>initializeFirstHalfPITable (in category 'as yet unclassified') ----- initializeFirstHalfPITable PITable addAll: { 41. 46. 67. 201. 162. 216. 124. 1. 61. 54. 84. 161. 236. 240. 6. 19. 98. 167. 5. 243. 192. 199. 115. 140. 152. 147. 43. 217. 188. 76. 130. 202. 30. 155. 87. 60. 253. 212. 224. 22. 103. 66. 111. 24. 138. 23. 229. 18. 190. 78. 196. 214. 218. 158. 222. 73. 160. 251. 245. 142. 187. 47. 238. 122. 169. 104. 121. 145. 21. 178. 7. 63. 148. 194. 16. 137. 11. 34. 95. 33. 128. 127. 93. 154. 90. 144. 50. 39. 53. 62. 204. 231. 191. 247. 151. 3. 255. 25. 48. 179. 72. 165. 181. 209. 215. 94. 146. 42. 172. 86. 170. 198. 79. 184. 56. 210. 150. 164. 125. 182. 118. 252. 107. 226. 156. 116. 4. 241. 69. 157. }. ! ----- Method: MD2 classSide>>initializeSecondHalfPITable (in category 'as yet unclassified') ----- initializeSecondHalfPITable PITable addAll: { 112. 89. 100. 113. 135. 32. 134. 91. 207. 101. 230. 45. 168. 2. 27. 96. 37. 173. 174. 176. 185. 246. 28. 70. 97. 105. 52. 64. 126. 15. 85. 71. 163. 35. 221. 81. 175. 58. 195. 92. 249. 206. 186. 197. 234. 38. 44. 83. 13. 110. 133. 40. 132. 9. 211. 223. 205. 244. 65. 129. 77. 82. 106. 220. 55. 200. 108. 193. 171. 250. 36. 225. 123. 8. 12. 189. 177. 74. 120. 136. 149. 139. 227. 99. 232. 109. 233. 203. 213. 254. 59. 0. 29. 57. 242. 239. 183. 14. 102. 88. 208. 228. 166. 119. 114. 248. 235. 117. 75. 10. 49. 68. 80. 180. 143. 237. 31. 26. 219. 153. 141. 51. 159. 17. 131. 20 }. ! ----- Method: MD2 classSide>>piTable (in category 'as yet unclassified') ----- piTable ^ PITable! ----- Method: MD2>>appendChecksumToInput: (in category 'accessing') ----- appendChecksumToInput: input | checksum l c | checksum := ByteArray new: 16 withAll: 0. l := 0. 0 to: (input size // 16) - 1 do: [:i | 1 to: 16 do: [:j | c := input at: (i * 16 + j). checksum at: j put: ((checksum at: j) bitXor: (self piTable at: (c bitXor: l) + 1)). l := checksum at: j]]. ^ input, checksum ! ----- Method: MD2>>appendPaddingToInput: (in category 'accessing') ----- appendPaddingToInput: input | paddingLength newInput | paddingLength := 16 - (input size \\ 16). newInput := input asByteArray, (ByteArray new: paddingLength withAll: paddingLength). newInput size \\ 16 = 0 ifFalse: [self error: 'bad padding']. ^ newInput ! ----- Method: MD2>>hashMessage: (in category 'accessing') ----- hashMessage: aStringOrByteArray | input | input := self appendPaddingToInput: aStringOrByteArray asByteArray. input := self appendChecksumToInput: input. ^ self processBlocks: input. ! ----- Method: MD2>>piTable (in category 'accessing') ----- piTable ^ self class piTable. ! ----- Method: MD2>>processBlocks: (in category 'accessing') ----- processBlocks: data | buffer t | buffer := ByteArray new: 48 withAll: 0. 0 to: (data size // 16) - 1 do: [:i | 1 to: 16 do: [:j | buffer at: (16 + j) put: (data at: (i * 16 + j)). buffer at: (32 + j) put: ((buffer at: (16 + j)) bitXor: (buffer at: j))]. t := 0. 1 to: 18 do: [:j | 1 to: 48 do: [:k | t := (buffer at: k) bitXor: (self piTable at: t + 1). buffer at: k put: t]. t := (t+j-1) \\ 256]]. ^ buffer copyFrom: 1 to: 16. ! HashFunction subclass: #MD4 instanceVariableNames: 'a b c d input output' classVariableNames: '' poolDictionaries: '' category: 'CryptoExtras'! ----- Method: MD4 classSide>>encode: (in category 'instance creation') ----- encode: aString ^ (self input: aString) run; output! ----- Method: MD4 classSide>>input: (in category 'instance creation') ----- input: anArray ^ self new input: anArray! ----- Method: MD4 classSide>>new (in category 'instance creation') ----- new ^ super new initialize! ----- Method: MD4>>copy4:to:startingAt: (in category 'copying') ----- copy4: u to: anArray startingAt: n anArray at: n put: (u bitAnd: 16rFF); at: n + 1 put: (u >> 8 bitAnd: 16rFF); at: n + 2 put: (u >> 16 bitAnd: 16rFF); at: n + 3 put: (u >> 24 bitAnd: 16rFF)! ----- Method: MD4>>copy4ToOutput (in category 'copying') ----- copy4ToOutput self copy4: a to: output startingAt: 1; copy4: b to: output startingAt: 5; copy4: c to: output startingAt: 9; copy4: d to: output startingAt: 13! ----- Method: MD4>>copy64: (in category 'copying') ----- copy64: anArray ^ self copy64: anArray startingAt: 1! ----- Method: MD4>>copy64:startingAt: (in category 'copying') ----- copy64: anArray startingAt: n | array u answer | array := anArray collect: [:char | char asInteger]. answer := Array new: 16. 1 to: answer size do: [:i | u := (array at: i - 1 * 4 + 3 + n) << 24. u := u bitOr: (array at: i - 1 * 4 + 2 + n) << 16. u := u bitOr: (array at: i - 1 * 4 + 1 + n) << 8. u := u bitOr: (array at: i - 1 * 4 + 0 + n) << 0. answer at: i put: u]. ^ answer! ----- Method: MD4>>fFunction: (in category 'functions') ----- fFunction: x ^ ((b bitAnd: c) bitOr: (b bitInvert bitAnd: d)) + x! ----- Method: MD4>>fRound:shift: (in category 'functions') ----- fRound: x shift: s a := self lshift: a + (self fFunction: x) bits: s! ----- Method: MD4>>gFunction: (in category 'functions') ----- gFunction: x ^ ((b bitAnd: c) bitOr: ((b bitAnd: d) bitOr: (c bitAnd: d))) + x + 16r5A827999! ----- Method: MD4>>gRound:shift: (in category 'functions') ----- gRound: x shift: s a := self lshift: a + (self gFunction: x) bits: s! ----- Method: MD4>>hFunction: (in category 'functions') ----- hFunction: x ^ ((b bitXor: c) bitXor: d) + x + 16r6ED9EBA1! ----- Method: MD4>>hRound:shift: (in category 'functions') ----- hRound: x shift: s a := self lshift: a + (self hFunction: x) bits: s! ----- Method: MD4>>hashMessage: (in category 'accessing') ----- hashMessage: aStringOrByteArray self input: aStringOrByteArray asByteArray. self run. ^ self output! ----- Method: MD4>>hashStream: (in category 'accessing') ----- hashStream: aStream ^ self hashMessage: aStream upToEnd! ----- Method: MD4>>initialize (in category 'initialization') ----- initialize a := 16r67452301. b := 16rEFCDAB89. c := 16r98BADCFE. d := 16r10325476. output := ByteArray new: 16! ----- Method: MD4>>input: (in category 'accessing') ----- input: anArray input := anArray! ----- Method: MD4>>lshift:bits: (in category 'functions') ----- lshift: u bits: s " (Md4 new lshift: 1 s: 33) printStringRadix: 2 " | lo | lo := u bitAnd: 16rFFFFFFFF. ^ (lo << s bitAnd: 16rFFFFFFFF) bitOr: lo >> (32 - s)! ----- Method: MD4>>mdFour64: (in category 'computing') ----- mdFour64: array | aa bb cc dd indexes s | aa := a. bb := b. cc := c. dd := d. indexes := #(1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16) readStream. s := #(3 7 11 19 3 7 11 19 3 7 11 19 3 7 11 19) readStream. [indexes atEnd] whileFalse: [self fRound: (array at: indexes next) shift: s next; turn]. indexes := #(1 5 9 13 2 6 10 14 3 7 11 15 4 8 12 16) readStream. s := #(3 5 9 13 3 5 9 13 3 5 9 13 3 5 9 13) readStream. [indexes atEnd] whileFalse: [self gRound: (array at: indexes next) shift: s next; turn]. indexes := #(1 9 5 13 3 11 7 15 2 10 6 14 4 12 8 16) readStream. s := #(3 9 11 15 3 9 11 15 3 9 11 15 3 9 11 15) readStream. [indexes atEnd] whileFalse: [self hRound: (array at: indexes next) shift: s next; turn]. a := a + aa bitAnd: 16rFFFFFFFF. b := b + bb bitAnd: 16rFFFFFFFF. c := c + cc bitAnd: 16rFFFFFFFF. d := d + dd bitAnd: 16rFFFFFFFF! ----- Method: MD4>>output (in category 'accessing') ----- output ^ output! ----- Method: MD4>>run (in category 'computing') ----- run | n buffer bb j offset | buffer := ByteArray new: 128. n := input size. bb := n * 8. j := 0. [n > 64] whileTrue: [self mdFour64: (self copy64: input startingAt: j + 1). j := j + 64. n := n - 64]. buffer atAllPut: 0. 1 to: n do: [:i | buffer at: i put: (input at: j + i)]. buffer at: n + 1 put: 16r80. offset := n <= 55 ifTrue: [56] ifFalse: [120]. self copy4: bb to: buffer startingAt: offset + 1. self mdFour64: (self copy64: buffer). n > 55 ifTrue: [self mdFour64: (self copy64: buffer startingAt: 64)]. buffer atAllPut: 0. self copy4ToOutput. a := b := c := d := 0! ----- Method: MD4>>turn (in category 'functions') ----- turn | temp | temp := d. d := c. c := b. b := a. a := temp! Object subclass: #KeyHolder instanceVariableNames: 'data random randomChangeProcess' classVariableNames: '' poolDictionaries: '' category: 'CryptoExtras'! !KeyHolder commentStamp: 'RJT 2/9/2007 11:10' prior: 0! A KeyHolder is a construct that holds key information safely in memory. The key is never stored in plain text in memory. The system encrypts the key using two different objects and therefore two different memory locations. A random key is generated and used to encrypt the key. That random key is changed every 100ms. To retrieve the key send the message #key. You must send in a byteArray. If you are storing a key that is a string then do: KeyHolder holdKey: 'aPassword' asByteArray. when asking for key you will get back aByteArray so if you are looking for a string use aByteArray := aKeyHolder key. pKey := aByteArray asString. aByteArray destroy. When you are done with the byteArray send the message destroy to it, to keep your secret key from being written to disk. Never leave your key in memory for very log. Get it, use it and destroy it as quickly as possible in the same message chain. If you no longer need this keyHolder you must send the message destroy to it to stop the process and wipe the memory clean. Instance Variables data: KeyHolderData random: aByteArray randomChangeProcess: aProcess data - holds onto an instance of KeyHolderData which holds your encrypted key. random - the key used to encrypt your key randomChangeProcess - the process that changes random ! ----- Method: KeyHolder classSide>>LICENSE (in category 'LICENSE') ----- LICENSE "http://www.opensource.org/licenses/mit-license.php" ^'Copyright (c) 2006 Ron Teitelbaum * US Medical Record Specialists * [hidden email] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.' ! ----- Method: KeyHolder classSide>>holdKey: (in category 'instance creation') ----- holdKey: aKey "store a key scrambled in memory" ^self new data: (KeyHolderData new); encryptKey: aKey; randomChangeLoop; yourself! ----- Method: KeyHolder classSide>>readFromFile:password: (in category 'instance creation') ----- readFromFile: aFileName password: aPassword "this method takes a long time on purpose, the idea is to increase the amount of time and resources needed to crack password" | pwHash cipher cData pwHashAndSalt pwSalt eData aStream aKeyHolder | [eData := ((aStream := FileStream fileNamed: aFileName) ifNil: [^nil]) binary contents asByteArray] ensure: [aStream close]. pwSalt := eData copyFrom: eData size - 31 to: eData size. eData := eData copyFrom: 1 to: eData size - 32. pwHashAndSalt := PasswordSaltAndStretch hashForPassword: aPassword s: pwSalt. pwHash := pwHashAndSalt key. pwSalt := pwHashAndSalt value. cipher := (TripleDES key: pwHash) cbc. cData := cipher decrypt: eData. aKeyHolder := self holdKey: cData. cData destroy. ^aKeyHolder ! ----- Method: KeyHolder>>data (in category 'accessing') ----- data "Answer the value of data" ^ data! ----- Method: KeyHolder>>data: (in category 'accessing') ----- data: anObject "Set the value of data" data := anObject! ----- Method: KeyHolder>>destroy (in category 'initialize-release') ----- destroy self randomChangeProcess terminate. self randomChangeProcess: nil. self random destroy. self data key destroy. self data: nil.! ----- Method: KeyHolder>>encryptKey: (in category 'services') ----- encryptKey: pKey | eKey | eKey := (TripleDES key: self random) cbc encrypt: pKey. self data key: eKey! ----- Method: KeyHolder>>initialize (in category 'initialize-release') ----- initialize self random: (SecureRandom picker nextBytesNonZero: 32)! ----- Method: KeyHolder>>key (in category 'services') ----- key ^[(TripleDES key: self random) cbc decrypt: self data key] on: CryptographyError do: [:ex | ex retry]! ----- Method: KeyHolder>>random (in category 'accessing') ----- random "Answer the value of random" ^ random! ----- Method: KeyHolder>>random: (in category 'accessing') ----- random: anObject "Set the value of random" random := anObject! ----- Method: KeyHolder>>randomChangeLoop (in category 'processes') ----- randomChangeLoop "This loop changes the random and reencrypts the data every 100ms" | pKey randomGenerator | self randomChangeProcess: ([ randomGenerator := SecureRandom picker. [ pKey := self key. self random: (randomGenerator nextBytesNonZero: 32). self encryptKey: pKey. pKey destroy. (Delay forMilliseconds: 100) wait. true. ] whileTrue. ] forkAt: Processor highIOPriority)! ----- Method: KeyHolder>>randomChangeProcess (in category 'accessing') ----- randomChangeProcess "Answer the value of randomChangeProcess" ^ randomChangeProcess! ----- Method: KeyHolder>>randomChangeProcess: (in category 'accessing') ----- randomChangeProcess: anObject "Set the value of randomChangeProcess" randomChangeProcess := anObject! ----- Method: KeyHolder>>writeToFile:password: (in category 'services') ----- writeToFile: aFileName password: aPassword "this method takes a long time on purpose, the idea is to increase the amount of time and resources needed to crack password" | pwHash cipher cData pwHashAndSalt pwSalt | pwHashAndSalt := PasswordSaltAndStretch hashForPassword: aPassword. pwHash := pwHashAndSalt key. pwSalt := pwHashAndSalt value. cipher := (TripleDES key: pwHash) cbc. cData := cipher encrypt: self key. (FileStream forceNewFileNamed: aFileName) nextPutAll: cData; nextPutAll: pwSalt; close. ! Object subclass: #KeyHolderData instanceVariableNames: 'key' classVariableNames: '' poolDictionaries: '' category: 'CryptoExtras'! !KeyHolderData commentStamp: 'RJT 2/9/2007 11:17' prior: 0! A KeyHolderData is used by KeyHolder see comments there. Instance Variables key: <ByteArray> key - key that was encrypted by KeyHolder. This value is changed frequently by KeyHolder. ! ----- Method: KeyHolderData classSide>>LICENSE (in category 'LICENSE') ----- LICENSE "http://www.opensource.org/licenses/mit-license.php" ^'Copyright (c) 2006 Ron Teitelbaum * US Medical Record Specialists * [hidden email] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.' ! ----- Method: KeyHolderData>>key (in category 'accessing') ----- key "Answer the value of key" ^ key! ----- Method: KeyHolderData>>key: (in category 'accessing') ----- key: anObject "Set the value of key" key := anObject! Object subclass: #PasswordSaltAndStretch instanceVariableNames: 'r s' classVariableNames: '' poolDictionaries: '' category: 'CryptoExtras'! !PasswordSaltAndStretch commentStamp: 'RJT 2/9/2007 16:00' prior: 0! A PasswordSaltAndStretch is way to increase the entropy of bad passwords. The idea is to increase the amount of work needed for an attacker to try random passwords. The class returns two values a hash and a salt value. The salt value is random data used to calculate the hash. If the hash is used as a key then store the salt value along with the encrypted data. Then to calculate the key or verify a password use hashForPassword: aPassword s: theSalt. So | result | (result := PasswordSaltAndStretch hashForPassword: 'password') = (PasswordSaltAndStretch hashForPassword: 'password' s: result value) should be true. Instance Variables r: <integer> s: <integer> r - the number of rounds used to stretch the password s - salt which is random data used to make the hash unique. The salt should be stored with encrypted data, or with the hash because it is needed to verify the hash later. ! ----- Method: PasswordSaltAndStretch classSide>>LICENSE (in category 'LICENSE') ----- LICENSE "http://www.opensource.org/licenses/mit-license.php" ^'Copyright (c) 2006 Ron Teitelbaum * US Medical Record Specialists * [hidden email] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.' ! ----- Method: PasswordSaltAndStretch classSide>>defaultR (in category 'constants') ----- defaultR "this value is way too low when there is a primitive SHA256 this should be increased" ^250! ----- Method: PasswordSaltAndStretch classSide>>hashForPassword: (in category 'instance creation') ----- hashForPassword: aPassword "the default for r is way to small. Once we have a primitive SHA256 this should be increased so that this method takes at least 1 second" ^self hashForPassword: aPassword r: self defaultR ! ----- Method: PasswordSaltAndStretch classSide>>hashForPassword:r: (in category 'instance creation') ----- hashForPassword: aPassword r: aStretchInteger ^self hashForPassword: aPassword r: aStretchInteger s: (SecureRandom picker nextBytesNonZero: 32)! ----- Method: PasswordSaltAndStretch classSide>>hashForPassword:r:s: (in category 'instance creation') ----- hashForPassword: aPassword r: aStretchInteger s: salt ^self new r: aStretchInteger; s: salt; saltAndStretch: aPassword! ----- Method: PasswordSaltAndStretch classSide>>hashForPassword:s: (in category 'instance creation') ----- hashForPassword: aPassword s: salt ^self new r: self defaultR; s: salt; saltAndStretch: aPassword! ----- Method: PasswordSaltAndStretch>>r (in category 'accessing') ----- r "Answer the value of r" ^ r! ----- Method: PasswordSaltAndStretch>>r: (in category 'accessing') ----- r: anObject "Set the value of r" r := anObject! ----- Method: PasswordSaltAndStretch>>s (in category 'accessing') ----- s "Answer the value of s" ^ s! ----- Method: PasswordSaltAndStretch>>s: (in category 'accessing') ----- s: anObject "Set the value of s" s := anObject! ----- Method: PasswordSaltAndStretch>>saltAndStretch: (in category 'services') ----- saltAndStretch: aPassword | result | result := ByteArray new. 1 to: r do: [:i | result := SHA256 new hashMessage: (result, aPassword asByteArray, self s) ]. ^result -> self s! BlockCipher subclass: #ARC2 instanceVariableNames: 'T1 T8 TM keyHolder j' classVariableNames: 'PITABLE' poolDictionaries: '' category: 'CryptoExtras'! !ARC2 commentStamp: 'RJT 3/30/2007 09:48' prior: 0! Network Working Group R. Rivest Request for Comments: 2268 MIT Laboratory for Computer Science Category: Informational and RSA Data Security, Inc. March 1998 A Description of the RC2(r) Encryption Algorithm Status of this Memo This memo provides information for the Internet community. It does not specify an Internet standard of any kind. Distribution of this memo is unlimited. Copyright Notice Copyright (C) The Internet Society (1998). All Rights Reserved. 1. Introduction This memo is an RSA Laboratories Technical Note. It is meant for informational use by the Internet community. This memo describes a conventional (secret-key) block encryption algorithm, called RC2, which may be considered as a proposal for a DES replacement. The input and output block sizes are 64 bits each. The key size is variable, from one byte up to 128 bytes, although the current implementation uses eight bytes. The algorithm is designed to be easy to implement on 16-bit microprocessors. On an IBM AT, the encryption runs about twice as fast as DES (assuming that key expansion has been done). 1.1 Algorithm description We use the term "word" to denote a 16-bit quantity. The symbol + will denote twos-complement addition. The symbol & will denote the bitwise "and" operation. The term XOR will denote the bitwise "exclusive-or" operation. The symbol ~ will denote bitwise complement. The symbol ^ will denote the exponentiation operation. The term MOD will denote the modulo operation. There are three separate algorithms involved: Key expansion. This takes a (variable-length) input key and produces an expanded key consisting of 64 words K[0],...,K[63]. Rivest Informational [Page 1] RFC 2268 RC2(r) Encryption Algorithm March 1998 Encryption. This takes a 64-bit input quantity stored in words R[0], ..., R[3] and encrypts it "in place" (the result is left in R[0], ..., R[3]). Decryption. The inverse operation to encryption. 2. Key expansion Since we will be dealing with eight-bit byte operations as well as 16-bit word operations, we will use two alternative notations for referring to the key buffer: For word operations, we will refer to the positions of the buffer as K[0], ..., K[63]; each K[i] is a 16-bit word. For byte operations, we will refer to the key buffer as L[0], ..., L[127]; each L[i] is an eight-bit byte. These are alternative views of the same data buffer. At all times it will be true that K[i] = L[2*i] + 256*L[2*i+1]. (Note that the low-order byte of each K word is given before the high-order byte.) We will assume that exactly T bytes of key are supplied, for some T in the range 1 <= T <= 128. (Our current implementation uses T = 8.) However, regardless of T, the algorithm has a maximum effective key length in bits, denoted T1. That is, the search space is 2^(8*T), or 2^T1, whichever is smaller. The purpose of the key-expansion algorithm is to modify the key buffer so that each bit of the expanded key depends in a complicated way on every bit of the supplied input key. The key expansion algorithm begins by placing the supplied T-byte key into bytes L[0], ..., L[T-1] of the key buffer. The key expansion algorithm then computes the effective key length in bytes T8 and a mask TM based on the effective key length in bits T1. It uses the following operations: T8 = (T1+7)/8; TM = 255 MOD 2^(8 + T1 - 8*T8); Thus TM has its 8 - (8*T8 - T1) least significant bits set. Rivest Informational [Page 2] RFC 2268 RC2(r) Encryption Algorithm March 1998 For example, with an effective key length of 64 bits, T1 = 64, T8 = 8 and TM = 0xff. With an effective key length of 63 bits, T1 = 63, T8 = 8 and TM = 0x7f. Here PITABLE[0], ..., PITABLE[255] is an array of "random" bytes based on the digits of PI = 3.14159... . More precisely, the array PITABLE is a random permutation of the values 0, ..., 255. Here is the PITABLE in hexadecimal notation: 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: d9 78 f9 c4 19 dd b5 ed 28 e9 fd 79 4a a0 d8 9d 10: c6 7e 37 83 2b 76 53 8e 62 4c 64 88 44 8b fb a2 20: 17 9a 59 f5 87 b3 4f 13 61 45 6d 8d 09 81 7d 32 30: bd 8f 40 eb 86 b7 7b 0b f0 95 21 22 5c 6b 4e 82 40: 54 d6 65 93 ce 60 b2 1c 73 56 c0 14 a7 8c f1 dc 50: 12 75 ca 1f 3b be e4 d1 42 3d d4 30 a3 3c b6 26 60: 6f bf 0e da 46 69 07 57 27 f2 1d 9b bc 94 43 03 70: f8 11 c7 f6 90 ef 3e e7 06 c3 d5 2f c8 66 1e d7 80: 08 e8 ea de 80 52 ee f7 84 aa 72 ac 35 4d 6a 2a 90: 96 1a d2 71 5a 15 49 74 4b 9f d0 5e 04 18 a4 ec a0: c2 e0 41 6e 0f 51 cb cc 24 91 af 50 a1 f4 70 39 b0: 99 7c 3a 85 23 b8 b4 7a fc 02 36 5b 25 55 97 31 c0: 2d 5d fa 98 e3 8a 92 ae 05 df 29 10 67 6c ba c9 d0: d3 00 e6 cf e1 9e a8 2c 63 16 01 3f 58 e2 89 a9 e0: 0d 38 34 1b ab 33 ff b0 bb 48 0c 5f b9 b1 cd 2e f0: c5 f3 db 47 e5 a5 9c 77 0a a6 20 68 fe 7f c1 ad The key expansion operation consists of the following two loops and intermediate step: for i = T, T+1, ..., 127 do L[i] = PITABLE[L[i-1] + L[i-T]]; L[128-T8] = PITABLE[L[128-T8] & TM]; for i = 127-T8, ..., 0 do L[i] = PITABLE[L[i+1] XOR L[i+T8]]; (In the first loop, the addition of L[i-1] and L[i-T] is performed modulo 256.) The "effective key" consists of the values L[128-T8],..., L[127]. The intermediate step's bitwise "and" operation reduces the search space for L[128-T8] so that the effective number of key bits is T1. The expanded key depends only on the effective key bits, regardless Rivest Informational [Page 3] RFC 2268 RC2(r) Encryption Algorithm March 1998 of the supplied key K. Since the expanded key is not itself modified during encryption or decryption, as a pragmatic matter one can expand the key just once when encrypting or decrypting a large block of data. 3. Encryption algorithm The encryption operation is defined in terms of primitive "mix" and "mash" operations. Here the expression "x rol k" denotes the 16-bit word x rotated left by k bits, with the bits shifted out the top end entering the bottom end. 3.1 Mix up R[i] The primitive "Mix up R[i]" operation is defined as follows, where s[0] is 1, s[1] is 2, s[2] is 3, and s[3] is 5, and where the indices of the array R are always to be considered "modulo 4," so that R[i-1] refers to R[3] if i is 0 (these values are "wrapped around" so that R always has a subscript in the range 0 to 3 inclusive): R[i] = R[i] + K[j] + (R[i-1] & R[i-2]) + ((~R[i-1]) & R[i-3]); j = j + 1; R[i] = R[i] rol s[i]; In words: The next key word K[j] is added to R[i], and j is advanced. Then R[i-1] is used to create a "composite" word which is added to R[i]. The composite word is identical with R[i-2] in those positions where R[i-1] is one, and identical to R[i-3] in those positions where R[i-1] is zero. Then R[i] is rotated left by s[i] bits (bits rotated out the left end of R[i] are brought back in at the right). Here j is a "global" variable so that K[j] is always the first key word in the expanded key which has not yet been used in a "mix" operation. 3.2 Mixing round A "mixing round" consists of the following operations: Mix up R[0] Mix up R[1] Mix up R[2] Mix up R[3] Rivest Informational [Page 4] RFC 2268 RC2(r) Encryption Algorithm March 1998 3.3 Mash R[i] The primitive "Mash R[i]" operation is defined as follows (using the previous conventions regarding subscripts for R): R[i] = R[i] + K[R[i-1] & 63]; In words: R[i] is "mashed" by adding to it one of the words of the expanded key. The key word to be used is determined by looking at the low-order six bits of R[i-1], and using that as an index into the key array K. 3.4 Mashing round A "mashing round" consists of: Mash R[0] Mash R[1] Mash R[2] Mash R[3] 3.5 Encryption operation The entire encryption operation can now be described as follows. Here j is a global integer variable which is affected by the mixing operations. 1. Initialize words R[0], ..., R[3] to contain the 64-bit input value. 2. Expand the key, so that words K[0], ..., K[63] become defined. 3. Initialize j to zero. 4. Perform five mixing rounds. 5. Perform one mashing round. 6. Perform six mixing rounds. 7. Perform one mashing round. 8. Perform five mixing rounds. Note that each mixing round uses four key words, and that there are 16 mixing rounds altogether, so that each key word is used exactly Rivest Informational [Page 5] RFC 2268 RC2(r) Encryption Algorithm March 1998 once in a mixing round. The mashing rounds will refer to up to eight of the key words in a data-dependent manner. (There may be repetitions, and the actual set of words referred to will vary from encryption to encryption.) 4. Decryption algorithm The decryption operation is defined in terms of primitive operations that undo the "mix" and "mash" operations of the encryption algorithm. They are named "r-mix" and "r-mash" (r- denotes the reverse operation). Here the expression "x ror k" denotes the 16-bit word x rotated right by k bits, with the bits shifted out the bottom end entering the top end. 4.1 R-Mix up R[i] The primitive "R-Mix up R[i]" operation is defined as follows, where s[0] is 1, s[1] is 2, s[2] is 3, and s[3] is 5, and where the indices of the array R are always to be considered "modulo 4," so that R[i-1] refers to R[3] if i is 0 (these values are "wrapped around" so that R always has a subscript in the range 0 to 3 inclusive): R[i] = R[i] ror s[i]; R[i] = R[i] - K[j] - (R[i-1] & R[i-2]) - ((~R[i-1]) & R[i-3]); j = j - 1; In words: R[i] is rotated right by s[i] bits (bits rotated out the right end of R[i] are brought back in at the left). Here j is a "global" variable so that K[j] is always the key word with greatest index in the expanded key which has not yet been used in a "r-mix" operation. The key word K[j] is subtracted from R[i], and j is decremented. R[i-1] is used to create a "composite" word which is subtracted from R[i]. The composite word is identical with R[i-2] in those positions where R[i-1] is one, and identical to R[i-3] in those positions where R[i-1] is zero. 4.2 R-Mixing round An "r-mixing round" consists of the following operations: R-Mix up R[3] R-Mix up R[2] R-Mix up R[1] R-Mix up R[0] Rivest Informational [Page 6] RFC 2268 RC2(r) Encryption Algorithm March 1998 4.3 R-Mash R[i] The primitive "R-Mash R[i]" operation is defined as follows (using the previous conventions regarding subscripts for R): R[i] = R[i] - K[R[i-1] & 63]; In words: R[i] is "r-mashed" by subtracting from it one of the words of the expanded key. The key word to be used is determined by looking at the low-order six bits of R[i-1], and using that as an index into the key array K. 4.4 R-Mashing round An "r-mashing round" consists of: R-Mash R[3] R-Mash R[2] R-Mash R[1] R-Mash R[0] 4.5 Decryption operation The entire decryption operation can now be described as follows. Here j is a global integer variable which is affected by the mixing operations. 1. Initialize words R[0], ..., R[3] to contain the 64-bit ciphertext value. 2. Expand the key, so that words K[0], ..., K[63] become defined. 3. Initialize j to 63. 4. Perform five r-mixing rounds. 5. Perform one r-mashing round. 6. Perform six r-mixing rounds. 7. Perform one r-mashing round. 8. Perform five r-mixing rounds. 5. Test vectors Test vectors for encryption with RC2 are provided below. Rivest Informational [Page 7] RFC 2268 RC2(r) Encryption Algorithm March 1998 All quantities are given in hexadecimal notation. Key length (bytes) = 8 Effective key length (bits) = 63 Key = 00000000 00000000 Plaintext = 00000000 00000000 Ciphertext = ebb773f9 93278eff Key length (bytes) = 8 Effective key length (bits) = 64 Key = ffffffff ffffffff Plaintext = ffffffff ffffffff Ciphertext = 278b27e4 2e2f0d49 Key length (bytes) = 8 Effective key length (bits) = 64 Key = 30000000 00000000 Plaintext = 10000000 00000001 Ciphertext = 30649edf 9be7d2c2 Key length (bytes) = 1 Effective key length (bits) = 64 Key = 88 Plaintext = 00000000 00000000 Ciphertext = 61a8a244 adacccf0 Key length (bytes) = 7 Effective key length (bits) = 64 Key = 88bca90e 90875a Plaintext = 00000000 00000000 Ciphertext = 6ccf4308 974c267f Key length (bytes) = 16 Effective key length (bits) = 64 Key = 88bca90e 90875a7f 0f79c384 627bafb2 Plaintext = 00000000 00000000 Ciphertext = 1a807d27 2bbe5db1 Key length (bytes) = 16 Effective key length (bits) = 128 Key = 88bca90e 90875a7f 0f79c384 627bafb2 Plaintext = 00000000 00000000 Ciphertext = 2269552a b0f85ca6 Key length (bytes) = 33 Effective key length (bits) = 129 Key = 88bca90e 90875a7f 0f79c384 627bafb2 16f80a6f 85920584 c42fceb0 be255daf 1e Rivest Informational [Page 8] RFC 2268 RC2(r) Encryption Algorithm March 1998 Plaintext = 00000000 00000000 Ciphertext = 5b78d3a4 3dfff1f1 6. RC2 Algorithm Object Identifier The Object Identifier for RC2 in cipher block chaining mode is rc2CBC OBJECT IDENTIFIER ::= {iso(1) member-body(2) US(840) rsadsi(113549) encryptionAlgorithm(3) 2} RC2-CBC takes parameters RC2-CBCParameter ::= CHOICE { iv IV, params SEQUENCE { version RC2Version, iv IV } } where IV ::= OCTET STRING -- 8 octets RC2Version ::= INTEGER -- 1-1024 RC2 in CBC mode has two parameters: an 8-byte initialization vector (IV) and a version number in the range 1-1024 which specifies in a roundabout manner the number of effective key bits to be used for the RC2 encryption/decryption. The correspondence between effective key bits and version number is as follows: 1. If the number EKB of effective key bits is in the range 1-255, then the version number is given by Table[EKB], where the 256-byte translation table Table[] is specified below. Table[] specifies a permutation on the numbers 0-255; note that it is not the same table that appears in the key expansion phase of RC2. 2. If the number EKB of effective key bits is in the range 256-1024, then the version number is simply EKB. The default number of effective key bits for RC2 is 32. If RC2-CBC is being performed with 32 effective key bits, the parameters should be supplied as a simple IV, rather than as a SEQUENCE containing a version and an IV. Rivest Informational [Page 9] RFC 2268 RC2(r) Encryption Algorithm March 1998 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: bd 56 ea f2 a2 f1 ac 2a b0 93 d1 9c 1b 33 fd d0 10: 30 04 b6 dc 7d df 32 4b f7 cb 45 9b 31 bb 21 5a 20: 41 9f e1 d9 4a 4d 9e da a0 68 2c c3 27 5f 80 36 30: 3e ee fb 95 1a fe ce a8 34 a9 13 f0 a6 3f d8 0c 40: 78 24 af 23 52 c1 67 17 f5 66 90 e7 e8 07 b8 60 50: 48 e6 1e 53 f3 92 a4 72 8c 08 15 6e 86 00 84 fa 60: f4 7f 8a 42 19 f6 db cd 14 8d 50 12 ba 3c 06 4e 70: ec b3 35 11 a1 88 8e 2b 94 99 b7 71 74 d3 e4 bf 80: 3a de 96 0e bc 0a ed 77 fc 37 6b 03 79 89 62 c6 90: d7 c0 d2 7c 6a 8b 22 a3 5b 05 5d 02 75 d5 61 e3 a0: 18 8f 55 51 ad 1f 0b 5e 85 e5 c2 57 63 ca 3d 6c b0: b4 c5 cc 70 b2 91 59 0d 47 20 c8 4f 58 e0 01 e2 c0: 16 38 c4 6f 3b 0f 65 46 be 7e 2d 7b 82 f9 40 b5 d0: 1d 73 f8 eb 26 c7 87 97 25 54 b1 28 aa 98 9d a5 e0: 64 6d 7a d4 10 81 44 ef 49 d6 ae 2e dd 76 5c 2f f0: a7 1c c9 09 69 9a 83 cf 29 39 b9 e9 4c ff 43 ab A. Intellectual Property Notice RC2 is a registered trademark of RSA Data Security, Inc. RSA's copyrighted RC2 software is available under license from RSA Data Security, Inc. B. Author's Address Ron Rivest RSA Laboratories 100 Marine Parkway, #500 Redwood City, CA 94065 USA Phone: (650) 595-7703 EMail: [hidden email] Rivest Informational [Page 10] RFC 2268 RC2(r) Encryption Algorithm March 1998 C. Full Copyright Statement Copyright (C) The Internet Society (1998). All Rights Reserved. This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to the Internet Society or other Internet organizations, except as needed for the purpose of developing Internet standards in which case the procedures for copyrights defined in the Internet Standards process must be followed, or as required to translate it into languages other than English. The limited permissions granted above are perpetual and will not be revoked by the Internet Society or its successors or assigns. This document and the information contained herein is provided on an "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Rivest Informational [Page 11]! ----- Method: ARC2 classSide>>LICENSE (in category 'LICENSE') ----- LICENSE "http://www.opensource.org/licenses/mit-license.php" ^'Copyright (c) 2006 Ron Teitelbaum * US Medical Record Specialists * [hidden email] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.' ! ----- Method: ARC2 classSide>>PITABLE (in category 'constants') ----- PITABLE PITABLE isNil ifTrue: [ PITABLE := #(217 120 249 196 25 221 181 237 40 233 253 121 74 160 216 157 198 126 55 131 43 118 83 142 98 76 100 136 68 139 251 162 23 154 89 245 135 179 79 19 97 69 109 141 9 129 125 50 189 143 64 235 134 183 123 11 240 149 33 34 92 107 78 130 84 214 101 147 206 96 178 28 115 86 192 20 167 140 241 220 18 117 202 31 59 190 228 209 66 61 212 48 163 60 182 38 111 191 14 218 70 105 7 87 39 242 29 155 188 148 67 3 248 17 199 246 144 239 62 231 6 195 213 47 200 102 30 215 8 232 234 222 128 82 238 247 132 170 114 172 53 77 106 42 150 26 210 113 90 21 73 116 75 159 208 94 4 24 164 236 194 224 65 110 15 81 203 204 36 145 175 80 161 244 112 57 153 124 58 133 35 184 180 122 252 2 54 91 37 85 151 49 45 93 250 152 227 138 146 174 5 223 41 16 103 108 186 201 211 0 230 207 225 158 168 44 99 22 1 63 88 226 137 169 13 56 52 27 171 51 255 176 187 72 12 95 185 177 205 46 197 243 219 71 229 165 156 119 10 166 32 104 254 127 193 173) asByteArray]. ^ PITABLE! ----- Method: ARC2 classSide>>key: (in category 'instance creation') ----- key: aByteArray ^ self new key: aByteArray; T1: 128; setKeySize; yourself! ----- Method: ARC2 classSide>>key:effectiveKeyLength: (in category 'instance creation') ----- key: aByteArray effectiveKeyLength: aKeyStrength ^ self new key: aByteArray; T1: aKeyStrength; setKeySize; yourself! ----- Method: ARC2 classSide>>rotate16BitWord:leftBy: (in category 'support') ----- rotate16BitWord: a16BitWord leftBy: bitCount | s1 s2 aBitCount | aBitCount := bitCount \\ 16. aBitCount < 0 ifTrue: [aBitCount := aBitCount + 16]. s1 := aBitCount. s2 := s1 - 16. ^((a16BitWord bitShift: s1) bitAnd: 16rFFFF) bitOr: (a16BitWord bitShift: s2).! ----- Method: ARC2>>T1 (in category 'accessing') ----- T1 "Answer the value of T1" ^ T1! ----- Method: ARC2>>T1: (in category 'accessing') ----- T1: anObject "Set the value of T1" T1 := anObject! ----- Method: ARC2>>T8 (in category 'accessing') ----- T8 "Answer the value of T8" ^ T8! ----- Method: ARC2>>T8: (in category 'accessing') ----- T8: anObject "Set the value of T8" T8 := anObject! ----- Method: ARC2>>TM (in category 'accessing') ----- TM "Answer the value of TM" ^ TM! ----- Method: ARC2>>TM: (in category 'accessing') ----- TM: anObject "Set the value of TM" TM := anObject! ----- Method: ARC2>>blockSize (in category 'initialize-release') ----- blockSize ^8! ----- Method: ARC2>>decryptBlock: (in category 'encryption/decryption') ----- decryptBlock: cipherText | result | result := self decryptBlock: cipherText key: self expandedKey. result withIndexDo: [:a :i | cipherText at: i put: a ]. ^cipherText! ----- Method: ARC2>>decryptBlock:key: (in category 'encryption/decryption') ----- decryptBlock: plainText key: expandedKeys "The entire decryption operation can now be described as follows. Here j is a global integer variable which is affected by the mixing operations. 1. Initialize words R[0], ..., R[3] to contain the 64-bit ciphertext value. 2. Expand the key, so that words K[0], ..., K[63] become defined. 3. Initialize j to 63. 4. Perform five r-mixing rounds. 5. Perform one r-mashing round. 6. Perform six r-mixing rounds. 7. Perform one r-mashing round. 8. Perform five r-mixing rounds." | cText rStream result | self j: 63. cText := plainText. rStream := cText readStream. result := ByteArray new. [rStream atEnd] whileFalse: [ result := result , ((rStream nextLittleEndianNumber: 2) asByteArrayOfSize: 2) ]. cText := result. 1 to: 5 do: [:i | cText := self rMixUp: cText withKeys: expandedKeys ]. cText := self rMash: cText withKeys: expandedKeys. 1 to: 6 do: [:i | cText := self rMixUp: cText withKeys: expandedKeys ]. cText := self rMash: cText withKeys: expandedKeys. 1 to: 5 do: [:i | cText := self rMixUp: cText withKeys: expandedKeys ]. rStream := cText readStream. result := ByteArray new. [rStream atEnd] whileFalse: [ result := result , ((rStream nextLittleEndianNumber: 2) asByteArrayOfSize: 2) ]. ^result ! ----- Method: ARC2>>destroy (in category 'services') ----- destroy self keyHolder destroy.! ----- Method: ARC2>>encryptBlock: (in category 'encryption/decryption') ----- encryptBlock: plainText | result | result := self encryptBlock: plainText key: self expandedKey. result withIndexDo: [:a :i | plainText at: i put: a ]. ^plainText! ----- Method: ARC2>>encryptBlock:key: (in category 'encryption/decryption') ----- encryptBlock: plainText key: expandedKeys "The entire encryption operation can now be described as follows. Here j is a global integer variable which is affected by the mixing operations. 1. Initialize words R[0], ..., R[3] to contain the 64-bit input value. 2. Expand the key, so that words K[0], ..., K[63] become defined. 3. Initialize j to zero. 4. Perform five mixing rounds. 5. Perform one mashing round. 6. Perform six mixing rounds. 7. Perform one mashing round. 8. Perform five mixing rounds." | cText rStream result | self j: 0. cText := plainText. rStream := cText readStream. result := ByteArray new. [rStream atEnd] whileFalse: [ result := result , ((rStream nextLittleEndianNumber: 2) asByteArrayOfSize:2) ]. cText := result. 1 to: 5 do: [:i | cText := self mixUp: cText withKeys: expandedKeys ]. cText := self mash: cText withKeys: expandedKeys. 1 to: 6 do: [:i | cText := self mixUp: cText withKeys: expandedKeys ]. cText := self mash: cText withKeys: expandedKeys. 1 to: 5 do: [:i | cText := self mixUp: cText withKeys: expandedKeys ]. rStream := cText readStream. result := ByteArray new. [rStream atEnd] whileFalse: [ result := result , ((rStream nextLittleEndianNumber: 2) asByteArrayOfSize: 2) ]. ^result ! ----- Method: ARC2>>expandedKey (in category 'services') ----- expandedKey "for i = T, T+1, ..., 127 do L[i] = PITABLE[L[i-1] + L[i-T]];" | keyBuffer aT v1 v2 pos byteStream result | keyBuffer := (self key reverse asByteArrayOfSize: 128) reverse. aT := self key size. aT to: 127 do: [:i | v1 := keyBuffer at: (i -1) + 1. v2 := keyBuffer at: (i - aT) + 1. keyBuffer at: (i+1) put: (self class PITABLE at: (((v1 + v2) \\ 256) + 1)). ]. "L[128-T8] = PITABLE[L[128-T8] & TM];" pos := (128 - self T8) + 1. keyBuffer at: pos put: (self class PITABLE at: (((keyBuffer at: pos) bitAnd: self TM) + 1)). "for i = 127-T8, ..., 0 do L[i] = PITABLE[L[i+1] XOR L[i+T8]]; " (127 - self T8) to: 0 by: -1 do: [:i | keyBuffer at: (i+1) put: (self class PITABLE at: (((keyBuffer at: ((i + 1) +1)) bitXor: (keyBuffer at: ((i + self T8)+1))) +1)) ]. byteStream := keyBuffer readStream. result := OrderedCollection new: byteStream size. [byteStream atEnd] whileFalse: [ result add: (byteStream next + (byteStream next bitShift: 8)) "Little Endian" ]. ^result ! ----- Method: ARC2>>initialize (in category 'initialize-release') ----- initialize self j: 0.! ----- Method: ARC2>>j (in category 'accessing') ----- j "Answer the value of j" ^ j! ----- Method: ARC2>>j: (in category 'accessing') ----- j: anInteger "Set the value of j" j := anInteger! ----- Method: ARC2>>key (in category 'key') ----- key ^self keyHolder key! ----- Method: ARC2>>key: (in category 'key') ----- key: aByteArray self keyHolder: (KeyHolder holdKey: aByteArray)! ----- Method: ARC2>>keyHolder (in category 'accessing') ----- keyHolder "Answer the value of keyHolder" ^ keyHolder! ----- Method: ARC2>>keyHolder: (in category 'accessing') ----- keyHolder: anObject "Set the value of keyHolder" keyHolder := anObject! ----- Method: ARC2>>mash:withKeys: (in category 'services') ----- mash: a64BitWord withKeys: expandedKeys "The primitive 'Mash R[i]' operation is defined as follows (using the previous conventions regarding subscripts for R): R[i] = R[i] + K[R[i-1] & 63]; In words: R[i] is 'mashed; by adding to it one of the words of the expanded key. The key word to be used is determined by looking at the low-order six bits of R[i-1], and using that as an index into the key array K. " | aR aByteStream aRi aK result | aR := Array new: 4. aByteStream := (a64BitWord asByteArrayOfSize: 8) readStream. 1 to: 4 do: [:i | aR at: i put: ((aByteStream next bitShift: 8) + aByteStream next). ]. 0 to: 3 do: [:i | aRi := aR at: i + 1. aK := expandedKeys at: (((aR at: ((i - 1) \\ 4)+1) bitAnd: 63) + 1). aR at: i + 1 put: ((aRi + aK) bitAnd: 16rFFFF). ]. result := ByteArray new. aR do: [:a16BitWord | result := result, (a16BitWord asByteArrayOfSize: 2) ]. ^result. ! ----- Method: ARC2>>mixUp:withKeys: (in category 'services') ----- mixUp: a64BitWord withKeys: expandedKeys "The primitive 'Mix up R[i]' operation is defined as follows, where s[0] is 1, s[1] is 2, s[2] is 3, and s[3] is 5, and where the indices of the array R are always to be considered 'modulo 4,' so that R[i-1] refers to R[3] if i is 0 (these values are 'wrapped around' so that R always has a subscript in the range 0 to 3 inclusive): R[i] = R[i] + K[j] + (R[i-1] & R[i-2]) + ((~R[i-1]) & R[i-3]); j = j + 1; R[i] = R[i] rol s[i]; " | aS aR aByteStream aRi aKj aRa aRb aRc aRd si result | aS := Array with: 1 with: 2 with: 3 with: 5. aR := Array new: 4. aByteStream := (a64BitWord asByteArrayOfSize: 8) readStream. 1 to: 4 do: [:i | aR at: i put: ((aByteStream next bitShift: 8) + aByteStream next). ]. 0 to: 3 do: [:i | aRi := aR at: i +1. aKj := expandedKeys at: self j + 1. "j+1 changes offset from 0 - 3 to 1 to 4" aRa := aR at: ((i - 1 \\ 4) + 1). aRb := aR at: ((i - 2 \\ 4) + 1). aRc := aRa bitXor: 16rFFFF. aRd := aR at: ((i - 3 \\ 4) + 1). si := aS at: i +1. aR at: i+1 put: (self class rotate16BitWord: ((aRi + aKj + (aRa bitAnd: aRb) + (aRc bitAnd: aRd)) bitAnd: 16rFFFF) leftBy: si). self j: self j + 1. ]. result := ByteArray new. aR do: [:a16BitWord | result := result, (a16BitWord asByteArrayOfSize: 2) ]. ^result. ! ----- Method: ARC2>>rMash:withKeys: (in category 'services') ----- rMash: a64BitWord withKeys: expandedKeys "The primitive 'Mash R[i]' operation is defined as follows (using the previous conventions regarding subscripts for R): R[i] = R[i] - K[R[i-1] & 63]; In words: R[i] is 'mashed; by adding to it one of the words of the expanded key. The key word to be used is determined by looking at the low-order six bits of R[i-1], and using that as an index into the key array K. " | aR aByteStream aRi aK result | aR := Array new: 4. aByteStream := (a64BitWord asByteArrayOfSize: 8) readStream. 1 to: 4 do: [:i | aR at: i put: ((aByteStream next bitShift: 8) + aByteStream next). ]. 3 to: 0 by: -1 do: [:i | aRi := aR at: i + 1. aK := expandedKeys at: (((aR at: ((i - 1) \\ 4)+1) bitAnd: 63) + 1). aR at: i + 1 put: ((aRi - aK) bitAnd: 16rFFFF). ]. result := ByteArray new. aR do: [:a16BitWord | result := result, (a16BitWord asByteArrayOfSize: 2) ]. ^result. ! ----- Method: ARC2>>rMixUp:withKeys: (in category 'services') ----- rMixUp: a64BitWord withKeys: expandedKeys "The primitive 'R-Mix up R[i]' operation is defined as follows, where s[0] is 1, s[1] is 2, s[2] is 3, and s[3] is 5, and where the indices of the array R are always to be considered 'modulo 4,' so that R[i-1] refers to R[3] if i is 0 (these values are 'wrapped around' so that R always has a subscript in the range 0 to 3 inclusive): R[i] = R[i] roR s[i]; R[i] = R[i] - K[j] - (R[i-1] & R[i-2]) - ((~R[i-1]) & R[i-3]); j = j - 1; " | aS aR aByteStream aRi aKj aRa aRb aRc aRd si result | aS := Array with: 1 with: 2 with: 3 with: 5. aR := Array new: 4. aByteStream := (a64BitWord asByteArrayOfSize: 8) readStream. 1 to: 4 do: [:i | aR at: i put: ((aByteStream next bitShift: 8) + aByteStream next). ]. 3 to: 0 by: -1 do: [:i | si := aS at: i +1. aR at: i + 1 put: (self class rotate16BitWord: (aR at: i +1) leftBy: si negated). aRi := aR at: i + 1. aKj := expandedKeys at: self j + 1. "j+1 changes offset from 0 - 3 to 1 to 4" aRa := aR at: ((i - 1 \\ 4) + 1). aRb := aR at: ((i - 2 \\ 4) + 1). aRc := aRa bitXor: 16rFFFF. aRd := aR at: ((i - 3 \\ 4) + 1). aR at: i+1 put: ((aRi - aKj - (aRa bitAnd: aRb) - (aRc bitAnd: aRd)) bitAnd: 16rFFFF). self j: self j - 1. ]. result := ByteArray new. aR do: [:a16BitWord | result := result, (a16BitWord asByteArrayOfSize: 2) ]. ^result. ! ----- Method: ARC2>>setKeySize (in category 'key') ----- setKeySize self T8: (self T1+7) // 8. self TM: (255 \\ (2 raisedTo: (8 + self T1 - (8 * self T8)))).! |
Free forum by Nabble | Edit this page |