1
0

AES128.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. //
  2. // AES128.swift
  3. // Swifter
  4. //
  5. // Copyright 2014-2016 Damian Kołakowski. All rights reserved.
  6. //
  7. #if os(Linux)
  8. import Glibc
  9. #else
  10. import Foundation
  11. #endif
  12. public struct AES128 {
  13. //
  14. // Advanced Encryption Standard
  15. //
  16. // http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
  17. //
  18. // TODO Improvements:
  19. // - Use inout structs rather than copies.
  20. // - Introduce a util method for printing the content of Array<UInt8> as hex string.
  21. // - Avoid key expansion every encryptBlock(...) call.
  22. // - Add support for init with literals.
  23. public struct Key: CustomStringConvertible {
  24. public init(k0: UInt8, k1: UInt8, k2: UInt8, k3: UInt8, k4: UInt8, k5: UInt8, k6: UInt8, k7: UInt8, k8: UInt8, k9: UInt8, k10: UInt8, k11: UInt8, k12: UInt8, k13: UInt8, k14: UInt8, k15: UInt8) {
  25. self.k0 = k0
  26. self.k1 = k1
  27. self.k2 = k2
  28. self.k3 = k3
  29. self.k4 = k4
  30. self.k5 = k5
  31. self.k6 = k6
  32. self.k7 = k7
  33. self.k8 = k8
  34. self.k9 = k9
  35. self.k10 = k10
  36. self.k11 = k11
  37. self.k12 = k12
  38. self.k13 = k13
  39. self.k14 = k14
  40. self.k15 = k15
  41. }
  42. public var k0, k1, k2 , k3 : UInt8
  43. public var k4, k5, k6 , k7 : UInt8
  44. public var k8, k9, k10, k11 : UInt8
  45. public var k12, k13, k14, k15 : UInt8
  46. public var description: String {
  47. return "[" + [k0, k1, k2, k3, k4, k5, k6, k7, k8, k8, k10, k11, k12, k13, k14, k15].map({ String(format: "%02x", $0) }).joined(separator: ",") + "]"
  48. }
  49. }
  50. public struct Block: CustomStringConvertible {
  51. public init(s00: UInt8, s01: UInt8, s02: UInt8, s03: UInt8, s10: UInt8, s11: UInt8, s12: UInt8, s13: UInt8, s20: UInt8, s21: UInt8, s22: UInt8, s23: UInt8, s30: UInt8, s31: UInt8, s32: UInt8, s33: UInt8) {
  52. self.s00 = s00
  53. self.s01 = s01
  54. self.s02 = s02
  55. self.s03 = s03
  56. self.s10 = s10
  57. self.s11 = s11
  58. self.s12 = s12
  59. self.s13 = s13
  60. self.s20 = s20
  61. self.s21 = s21
  62. self.s22 = s22
  63. self.s23 = s23
  64. self.s30 = s30
  65. self.s31 = s31
  66. self.s32 = s32
  67. self.s33 = s33
  68. }
  69. public var s00, s01, s02, s03 : UInt8
  70. public var s10, s11, s12, s13 : UInt8
  71. public var s20, s21, s22, s23 : UInt8
  72. public var s30, s31, s32, s33 : UInt8
  73. public var description: String {
  74. return
  75. "[" + [self.s00, self.s01, self.s02, self.s03].map({ String(format: "%02x", $0) }).joined(separator: ",") + "]\n" +
  76. "[" + [self.s10, self.s11, self.s12, self.s13].map({ String(format: "%02x", $0) }).joined(separator: ",") + "]\n" +
  77. "[" + [self.s20, self.s21, self.s22, self.s23].map({ String(format: "%02x", $0) }).joined(separator: ",") + "]\n" +
  78. "[" + [self.s30, self.s31, self.s32, self.s33].map({ String(format: "%02x", $0) }).joined(separator: ",") + "]"
  79. }
  80. }
  81. public static func encryptBlock(_ block: Block, _ key: Key) -> Block {
  82. let roundKeys = keyExpansion(key)
  83. var tmpBlock = block
  84. tmpBlock = addRoundKey(tmpBlock, roundKeys[0], roundKeys[1], roundKeys[2], roundKeys[3])
  85. for i in 1...10 {
  86. tmpBlock = subBytes(tmpBlock)
  87. tmpBlock = shiftRows(tmpBlock)
  88. if i != 10 {
  89. tmpBlock = mixColumns(tmpBlock)
  90. }
  91. let index = i*4
  92. tmpBlock = addRoundKey(tmpBlock, roundKeys[index], roundKeys[index+1], roundKeys[index+2], roundKeys[index+3])
  93. }
  94. return tmpBlock
  95. }
  96. private static func addRoundKey(_ block: Block, _ kw0: KeyWord, _ kw1: KeyWord, _ kw2: KeyWord, _ kw3: KeyWord) -> Block {
  97. return Block(
  98. s00: block.s00 ^ kw0.w0, s01: block.s01 ^ kw1.w0, s02: block.s02 ^ kw2.w0, s03: block.s03 ^ kw3.w0,
  99. s10: block.s10 ^ kw0.w1, s11: block.s11 ^ kw1.w1, s12: block.s12 ^ kw2.w1, s13: block.s13 ^ kw3.w1,
  100. s20: block.s20 ^ kw0.w2, s21: block.s21 ^ kw1.w2, s22: block.s22 ^ kw2.w2, s23: block.s23 ^ kw3.w2,
  101. s30: block.s30 ^ kw0.w3, s31: block.s31 ^ kw1.w3, s32: block.s32 ^ kw2.w3, s33: block.s33 ^ kw3.w3
  102. )
  103. }
  104. public static func subBytes(_ state: Block) -> Block {
  105. return Block(
  106. s00: sboxLookup(state.s00), s01: sboxLookup(state.s01), s02: sboxLookup(state.s02), s03: sboxLookup(state.s03),
  107. s10: sboxLookup(state.s10), s11: sboxLookup(state.s11), s12: sboxLookup(state.s12), s13: sboxLookup(state.s13),
  108. s20: sboxLookup(state.s20), s21: sboxLookup(state.s21), s22: sboxLookup(state.s22), s23: sboxLookup(state.s23),
  109. s30: sboxLookup(state.s30), s31: sboxLookup(state.s31), s32: sboxLookup(state.s32), s33: sboxLookup(state.s33)
  110. )
  111. }
  112. public static func shiftRows(_ state: Block) -> Block {
  113. return Block(
  114. s00: state.s00, s01: state.s01, s02: state.s02, s03: state.s03,
  115. s10: state.s11, s11: state.s12, s12: state.s13, s13: state.s10,
  116. s20: state.s22, s21: state.s23, s22: state.s20, s23: state.s21,
  117. s30: state.s33, s31: state.s30, s32: state.s31, s33: state.s32
  118. )
  119. }
  120. private static func m2(_ value: UInt8) -> UInt8 {
  121. let shifted = value << 1
  122. return value & 0x80 > 0 ? ( shifted ^ 0x1B ) : shifted
  123. }
  124. private static func m3(_ value: UInt8) -> UInt8 {
  125. return value ^ m2(value)
  126. }
  127. private static func mixColumns(_ state: Block) -> Block {
  128. return Block(
  129. s00: m2(state.s00) ^ m3(state.s10) ^ state.s20 ^ state.s30,
  130. s01: m2(state.s01) ^ m3(state.s11) ^ state.s21 ^ state.s31,
  131. s02: m2(state.s02) ^ m3(state.s12) ^ state.s22 ^ state.s32,
  132. s03: m2(state.s03) ^ m3(state.s13) ^ state.s23 ^ state.s33,
  133. s10: state.s00 ^ m2(state.s10) ^ m3(state.s20) ^ state.s30,
  134. s11: state.s01 ^ m2(state.s11) ^ m3(state.s21) ^ state.s31,
  135. s12: state.s02 ^ m2(state.s12) ^ m3(state.s22) ^ state.s32,
  136. s13: state.s03 ^ m2(state.s13) ^ m3(state.s23) ^ state.s33,
  137. s20: state.s00 ^ state.s10 ^ m2(state.s20) ^ m3(state.s30),
  138. s21: state.s01 ^ state.s11 ^ m2(state.s21) ^ m3(state.s31),
  139. s22: state.s02 ^ state.s12 ^ m2(state.s22) ^ m3(state.s32),
  140. s23: state.s03 ^ state.s13 ^ m2(state.s23) ^ m3(state.s33),
  141. s30: m3(state.s00) ^ state.s10 ^ state.s20 ^ m2(state.s30),
  142. s31: m3(state.s01) ^ state.s11 ^ state.s21 ^ m2(state.s31),
  143. s32: m3(state.s02) ^ state.s12 ^ state.s22 ^ m2(state.s32),
  144. s33: m3(state.s03) ^ state.s13 ^ state.s23 ^ m2(state.s33)
  145. )
  146. }
  147. public struct KeyWord: CustomStringConvertible {
  148. public var w0, w1, w2, w3: UInt8
  149. public var description: String {
  150. return "[" + [w0, w1, w2, w3].map({ String(format: "%02x", $0) }).joined(separator: ",") + "]"
  151. }
  152. }
  153. private static func rotWord(_ word: KeyWord) -> KeyWord {
  154. return KeyWord(w0: word.w1, w1: word.w2, w2: word.w3, w3: word.w0)
  155. }
  156. private static func subWord(_ word: KeyWord) -> KeyWord {
  157. return KeyWord(w0: sboxLookup(word.w0), w1: sboxLookup(word.w1), w2: sboxLookup(word.w2), w3: sboxLookup(word.w3))
  158. }
  159. private static func addWord(_ word1: KeyWord, _ word2: KeyWord) -> KeyWord {
  160. return KeyWord(w0: word1.w0 ^ word2.w0, w1: word1.w1 ^ word2.w1, w2: word1.w2 ^ word2.w2, w3: word1.w3 ^ word2.w3)
  161. }
  162. private static func keyExpansion(_ key: Key) -> [KeyWord] {
  163. var words = [KeyWord]()
  164. words.append(KeyWord(w0: key.k0, w1: key.k1, w2: key.k2, w3: key.k3))
  165. words.append(KeyWord(w0: key.k4, w1: key.k5, w2: key.k6, w3: key.k7))
  166. words.append(KeyWord(w0: key.k8, w1: key.k9, w2: key.k10, w3: key.k11))
  167. words.append(KeyWord(w0: key.k12, w1: key.k13, w2: key.k14, w3: key.k15))
  168. var rcon = [KeyWord]()
  169. rcon.append(KeyWord(w0: 0x01, w1: 0, w2: 0, w3: 0))
  170. rcon.append(KeyWord(w0: 0x02, w1: 0, w2: 0, w3: 0))
  171. rcon.append(KeyWord(w0: 0x04, w1: 0, w2: 0, w3: 0))
  172. rcon.append(KeyWord(w0: 0x08, w1: 0, w2: 0, w3: 0))
  173. rcon.append(KeyWord(w0: 0x10, w1: 0, w2: 0, w3: 0))
  174. rcon.append(KeyWord(w0: 0x20, w1: 0, w2: 0, w3: 0))
  175. rcon.append(KeyWord(w0: 0x40, w1: 0, w2: 0, w3: 0))
  176. rcon.append(KeyWord(w0: 0x80, w1: 0, w2: 0, w3: 0))
  177. rcon.append(KeyWord(w0: 0x1b, w1: 0, w2: 0, w3: 0))
  178. rcon.append(KeyWord(w0: 0x36, w1: 0, w2: 0, w3: 0))
  179. for i in 4..<44 {
  180. var temp = words[i-1]
  181. if i % 4 == 0 {
  182. temp = addWord(subWord(rotWord(temp)), rcon[(i-1)/4])
  183. }
  184. words.append(addWord(words[i-4], temp))
  185. }
  186. return words
  187. }
  188. private static var sbox: [UInt8] = [
  189. 0x63, 0x7C, 0x77, 0x7B, 0xF2, 0x6B, 0x6F, 0xC5, 0x30, 0x01, 0x67, 0x2B, 0xFE, 0xD7, 0xAB, 0x76,
  190. 0xCA, 0x82, 0xC9, 0x7D, 0xFA, 0x59, 0x47, 0xF0, 0xAD, 0xD4, 0xA2, 0xAF, 0x9C, 0xA4, 0x72, 0xC0,
  191. 0xB7, 0xFD, 0x93, 0x26, 0x36, 0x3F, 0xF7, 0xCC, 0x34, 0xA5, 0xE5, 0xF1, 0x71, 0xD8, 0x31, 0x15,
  192. 0x04, 0xC7, 0x23, 0xC3, 0x18, 0x96, 0x05, 0x9A, 0x07, 0x12, 0x80, 0xE2, 0xEB, 0x27, 0xB2, 0x75,
  193. 0x09, 0x83, 0x2C, 0x1A, 0x1B, 0x6E, 0x5A, 0xA0, 0x52, 0x3B, 0xD6, 0xB3, 0x29, 0xE3, 0x2F, 0x84,
  194. 0x53, 0xD1, 0x00, 0xED, 0x20, 0xFC, 0xB1, 0x5B, 0x6A, 0xCB, 0xBE, 0x39, 0x4A, 0x4C, 0x58, 0xCF,
  195. 0xD0, 0xEF, 0xAA, 0xFB, 0x43, 0x4D, 0x33, 0x85, 0x45, 0xF9, 0x02, 0x7F, 0x50, 0x3C, 0x9F, 0xA8,
  196. 0x51, 0xA3, 0x40, 0x8F, 0x92, 0x9D, 0x38, 0xF5, 0xBC, 0xB6, 0xDA, 0x21, 0x10, 0xFF, 0xF3, 0xD2,
  197. 0xCD, 0x0C, 0x13, 0xEC, 0x5F, 0x97, 0x44, 0x17, 0xC4, 0xA7, 0x7E, 0x3D, 0x64, 0x5D, 0x19, 0x73,
  198. 0x60, 0x81, 0x4F, 0xDC, 0x22, 0x2A, 0x90, 0x88, 0x46, 0xEE, 0xB8, 0x14, 0xDE, 0x5E, 0x0B, 0xDB,
  199. 0xE0, 0x32, 0x3A, 0x0A, 0x49, 0x06, 0x24, 0x5C, 0xC2, 0xD3, 0xAC, 0x62, 0x91, 0x95, 0xE4, 0x79,
  200. 0xE7, 0xC8, 0x37, 0x6D, 0x8D, 0xD5, 0x4E, 0xA9, 0x6C, 0x56, 0xF4, 0xEA, 0x65, 0x7A, 0xAE, 0x08,
  201. 0xBA, 0x78, 0x25, 0x2E, 0x1C, 0xA6, 0xB4, 0xC6, 0xE8, 0xDD, 0x74, 0x1F, 0x4B, 0xBD, 0x8B, 0x8A,
  202. 0x70, 0x3E, 0xB5, 0x66, 0x48, 0x03, 0xF6, 0x0E, 0x61, 0x35, 0x57, 0xB9, 0x86, 0xC1, 0x1D, 0x9E,
  203. 0xE1, 0xF8, 0x98, 0x11, 0x69, 0xD9, 0x8E, 0x94, 0x9B, 0x1E, 0x87, 0xE9, 0xCE, 0x55, 0x28, 0xDF,
  204. 0x8C, 0xA1, 0x89, 0x0D, 0xBF, 0xE6, 0x42, 0x68, 0x41, 0x99, 0x2D, 0x0F, 0xB0, 0x54, 0xBB, 0x16
  205. ]
  206. private static func sboxLookup(_ value: UInt8) -> UInt8 {
  207. let rowIndex = value >> 4
  208. let colIndex = value & 0x0F
  209. return sbox[Int(rowIndex*16+colIndex)]
  210. }
  211. }