PageRenderTime 28ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/plugin.video.tvendirecto/resources/lib/aes.py

https://github.com/xbmcspain/addons
Python | 258 lines | 180 code | 25 blank | 53 comment | 36 complexity | 653404845132305ef17799eace5cb4b4 MD5 | raw file
  1. #/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  2. #/* AES implementation in Python, based on the PHP implementation by */
  3. #/* (c) Chris Veness 2005-2011 www.movable-type.co.uk/scripts */
  4. #/* (c) HansMayer 2012 */
  5. #/* Right of free use is granted for all commercial or non-commercial use providing this */
  6. #/* copyright notice is retainded. No warranty of any form is offered. */
  7. #/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  8. from math import floor,ceil
  9. from random import randint
  10. from base64 import b64encode, b64decode
  11. import time
  12. class AES:
  13. sBox = [
  14. 0x63,0x7c,0x77,0x7b,0xf2,0x6b,0x6f,0xc5,0x30,0x01,0x67,0x2b,0xfe,0xd7,0xab,0x76,
  15. 0xca,0x82,0xc9,0x7d,0xfa,0x59,0x47,0xf0,0xad,0xd4,0xa2,0xaf,0x9c,0xa4,0x72,0xc0,
  16. 0xb7,0xfd,0x93,0x26,0x36,0x3f,0xf7,0xcc,0x34,0xa5,0xe5,0xf1,0x71,0xd8,0x31,0x15,
  17. 0x04,0xc7,0x23,0xc3,0x18,0x96,0x05,0x9a,0x07,0x12,0x80,0xe2,0xeb,0x27,0xb2,0x75,
  18. 0x09,0x83,0x2c,0x1a,0x1b,0x6e,0x5a,0xa0,0x52,0x3b,0xd6,0xb3,0x29,0xe3,0x2f,0x84,
  19. 0x53,0xd1,0x00,0xed,0x20,0xfc,0xb1,0x5b,0x6a,0xcb,0xbe,0x39,0x4a,0x4c,0x58,0xcf,
  20. 0xd0,0xef,0xaa,0xfb,0x43,0x4d,0x33,0x85,0x45,0xf9,0x02,0x7f,0x50,0x3c,0x9f,0xa8,
  21. 0x51,0xa3,0x40,0x8f,0x92,0x9d,0x38,0xf5,0xbc,0xb6,0xda,0x21,0x10,0xff,0xf3,0xd2,
  22. 0xcd,0x0c,0x13,0xec,0x5f,0x97,0x44,0x17,0xc4,0xa7,0x7e,0x3d,0x64,0x5d,0x19,0x73,
  23. 0x60,0x81,0x4f,0xdc,0x22,0x2a,0x90,0x88,0x46,0xee,0xb8,0x14,0xde,0x5e,0x0b,0xdb,
  24. 0xe0,0x32,0x3a,0x0a,0x49,0x06,0x24,0x5c,0xc2,0xd3,0xac,0x62,0x91,0x95,0xe4,0x79,
  25. 0xe7,0xc8,0x37,0x6d,0x8d,0xd5,0x4e,0xa9,0x6c,0x56,0xf4,0xea,0x65,0x7a,0xae,0x08,
  26. 0xba,0x78,0x25,0x2e,0x1c,0xa6,0xb4,0xc6,0xe8,0xdd,0x74,0x1f,0x4b,0xbd,0x8b,0x8a,
  27. 0x70,0x3e,0xb5,0x66,0x48,0x03,0xf6,0x0e,0x61,0x35,0x57,0xb9,0x86,0xc1,0x1d,0x9e,
  28. 0xe1,0xf8,0x98,0x11,0x69,0xd9,0x8e,0x94,0x9b,0x1e,0x87,0xe9,0xce,0x55,0x28,0xdf,
  29. 0x8c,0xa1,0x89,0x0d,0xbf,0xe6,0x42,0x68,0x41,0x99,0x2d,0x0f,0xb0,0x54,0xbb,0x16]
  30. rCon = [
  31. [0x00, 0x00, 0x00, 0x00],
  32. [0x01, 0x00, 0x00, 0x00],
  33. [0x02, 0x00, 0x00, 0x00],
  34. [0x04, 0x00, 0x00, 0x00],
  35. [0x08, 0x00, 0x00, 0x00],
  36. [0x10, 0x00, 0x00, 0x00],
  37. [0x20, 0x00, 0x00, 0x00],
  38. [0x40, 0x00, 0x00, 0x00],
  39. [0x80, 0x00, 0x00, 0x00],
  40. [0x1b, 0x00, 0x00, 0x00],
  41. [0x36, 0x00, 0x00, 0x00]]
  42. def cipher(self, inp, w):
  43. Nb = 4
  44. Nr = len(w)/Nb - 1
  45. state= [[0 for x in range(4)] for y in range(Nb)]
  46. for i in range(4*Nb):
  47. state[i%4][int(floor(float(i)/4))] = inp[i]
  48. state = self.addRoundKey(state, w, 0, Nb)
  49. for rnd in range(1,Nr):
  50. state = self.subBytes(state, Nb)
  51. state = self.shiftRows(state, Nb)
  52. state = self.mixColumns(state, Nb)
  53. state = self.addRoundKey(state, w, rnd, Nb)
  54. state = self.subBytes(state, Nb)
  55. state = self.shiftRows(state, Nb)
  56. state = self.addRoundKey(state, w, Nr, Nb)
  57. output = [0]*4*Nb
  58. for i in range(4*Nb):
  59. output[i] = state[i%4][int(floor(float(i)/4))]
  60. return output
  61. def addRoundKey(self,state, w, rnd, Nb):
  62. for r in range(4):
  63. for c in range(Nb):
  64. state[r][c] ^= w[rnd*4+c][r]
  65. return state
  66. def subBytes(self, s, Nb):
  67. for r in range(4):
  68. for c in range(Nb):
  69. s[r][c] = self.sBox[s[r][c]]
  70. return s
  71. def shiftRows(self, s, Nb):
  72. t = [0,0,0,0]
  73. for r in range(1,4):
  74. for c in range(4):
  75. t[c] = s[r][(c+r)%Nb]
  76. for c in range(4):
  77. s[r][c] = t[c]
  78. return s
  79. def mixColumns(self, s, Nb):
  80. for c in range(4):
  81. a = [0,0,0,0]
  82. b = [0,0,0,0]
  83. for i in range(4):
  84. a[i] = s[i][c]
  85. b[i] = s[i][c]&0x80
  86. if b[i]:
  87. b[i] = s[i][c]<<1 ^ 0x011b
  88. else:
  89. b[i] = s[i][c]<<1
  90. s[0][c] = b[0] ^ a[1] ^ b[1] ^ a[2] ^ a[3]
  91. s[1][c] = a[0] ^ b[1] ^ a[2] ^ b[2] ^ a[3]
  92. s[2][c] = a[0] ^ a[1] ^ b[2] ^ a[3] ^ b[3]
  93. s[3][c] = a[0] ^ b[0] ^ a[1] ^ a[2] ^ b[3]
  94. return s
  95. def keyExpansion(self,key):
  96. Nb = 4
  97. Nk = len(key) / 4
  98. Nr = Nk + 6
  99. w = []
  100. temp = [0,0,0,0]
  101. for i in range(Nk):
  102. w.append([key[4*i], key[4*i+1], key[4*i+2], key[4*i+3]])
  103. for i in range(Nk, Nb*(Nr+1)):
  104. w.append([0,0,0,0])
  105. for t in range(4): temp[t] = w[i-1][t]
  106. if i % Nk == 0:
  107. temp = self.subWord(self.rotWord(temp))
  108. for t in range(4):
  109. temp[t] ^= self.rCon[i/Nk][t]
  110. elif Nk > 6 and i%Nk == 4:
  111. temp = self.subWord(temp)
  112. for t in range(4):
  113. w[i][t] = w[i-Nk][t] ^ temp[t]
  114. return w
  115. def subWord(self, w):
  116. for i in range(4):
  117. w[i] = self.sBox[w[i]]
  118. return w
  119. def rotWord(self, w):
  120. tmp=w[0]
  121. for i in range(3):
  122. w[i]=w[i+1]
  123. w[3] = tmp
  124. return w
  125. #/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  126. #/* AES counter (CTR) mode implementation in Python, based on the PHP implementation by */
  127. #/* (c) Chris Veness 2005-2011 www.movable-type.co.uk/scripts */
  128. #/* (c) HansMayer 2012 */
  129. #/* Right of free use is granted for all commercial or non-commercial use providing this */
  130. #/* copyright notice is retainded. No warranty of any form is offered. */
  131. #/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  132. class AESCtr(AES):
  133. def urs(self, a, b):
  134. a &= 0xffffffff
  135. b &= 0x1f
  136. if a&0x80000000 and b>0:
  137. a = (a>>1) & 0x7fffffff
  138. a = a >> (b-1)
  139. else:
  140. a = (a>>b)
  141. return a
  142. def encrypt(self, plaintext, password, nBits):
  143. blockSize = 16
  144. if not nBits in [128,192,256]:
  145. return
  146. nBytes = nBits/8
  147. pwBytes = []
  148. for i in range(nBytes):
  149. if i > len(password)-1:
  150. pwBytes.append(0)
  151. else:
  152. pwBytes.append(ord(password[i])&0xff)
  153. key = self.cipher(pwBytes, self.keyExpansion(pwBytes))
  154. key = key + key[0:nBytes-16]
  155. counterBlock = [0]*16
  156. nonce = int(floor(time.time()*1000))
  157. nonceMs = nonce%1000
  158. nonceSec = int(floor(float(nonce)/1000))
  159. nonceRnd = randint(0,0xffff)
  160. for i in range(2):
  161. counterBlock[i] = self.urs(nonceMs, i*8) & 0xff
  162. for i in range(2):
  163. counterBlock[i+2] = self.urs(nonceRnd, i*8) & 0xff
  164. for i in range(4):
  165. counterBlock[i+4] = self.urs(nonceSec, i*8) & 0xff
  166. ctrTxt = ''
  167. for i in range(8): ctrTxt += chr(counterBlock[i])
  168. keySchedule = self.keyExpansion(key)
  169. blockCount = int(ceil(float(len(plaintext))/blockSize))
  170. ciphertxt = [0]*blockCount
  171. for b in range(blockCount):
  172. for c in range(4):
  173. counterBlock[15-c] = self.urs(b, c*8) & 0xff
  174. for c in range(4):
  175. counterBlock[15-c-4] = self.urs(b/0x100000000, c*8)
  176. cipherCntr = self.cipher(counterBlock, keySchedule)
  177. if b < blockCount-1:
  178. blockLength = blockSize
  179. else:
  180. blockLength = (len(plaintext)-1)%blockSize+1
  181. cipherByte = [0]*blockLength
  182. for i in range(blockLength):
  183. cipherByte[i] = chr(cipherCntr[i] ^ ord(plaintext[b*blockSize+i]))
  184. ciphertxt[b] = ''.join(cipherByte)
  185. return b64encode(ctrTxt + ''.join(ciphertxt))
  186. # decrypt() doesn't work correctly, feel free to fix it
  187. # def decrypt(self, ciphertext, password, nBits):
  188. # blockSize = 16
  189. # if not nBits in [128,192,256]:
  190. # return
  191. # ciphertext = b64decode(ciphertext)
  192. #
  193. # nBytes = nBits/8
  194. # pwBytes = []
  195. #
  196. # for i in range(nBytes): pwBytes.append(ord(password[i])&0xff)
  197. # key = self.cipher(pwBytes, self.keyExpansion(pwBytes))
  198. # key = key + key[0:nBytes-16]
  199. #
  200. # counterBlock = [0]*16
  201. # ctrTxt = ciphertext[0:8]
  202. # for i in range(8): counterBlock.append(ord(ctrTxt[1]))
  203. #
  204. # keySchedule = self.keyExpansion(key)
  205. #
  206. # nBlocks = int(ceil(float(len(ciphertext)-8)/blockSize))
  207. #
  208. # ct = []
  209. # for b in range(nBlocks): ct.append(ciphertext[8+b*blockSize:(8+b*blockSize)+16])
  210. # ciphertext = ct
  211. #
  212. # plaintxt = []
  213. # for b in range(nBlocks):
  214. # for c in range(4): counterBlock[15-c] = self.urs(b, c*8)&0xff
  215. # for c in range(4): counterBlock[15-c-4] = self.urs((b+1)/0x100000000-1, c*8)&0xff
  216. #
  217. # cipherCntr = self.cipher(counterBlock, keySchedule)
  218. # plaintxtByte = []
  219. # for i in range(len(ciphertext[b])):
  220. # plaintxtByte.append(cipherCntr[i] ^ ord(ciphertext[b][i]))
  221. # plaintxtByte[i] = chr(plaintxtByte[i])
  222. # plaintxt.append(''.join(plaintxtByte))
  223. #
  224. # plaintext = ''.join(plaintxt)
  225. # return plaintext