You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

468 lines
21 KiB

  1. /* Copyright (c) 2016, Google Inc.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  14. #include <openssl/curve25519.h>
  15. #include <string.h>
  16. #include <openssl/bytestring.h>
  17. #include <openssl/mem.h>
  18. #include <openssl/rand.h>
  19. #include <openssl/sha.h>
  20. #include "internal.h"
  21. #include "../internal.h"
  22. // The following precomputation tables are for the following
  23. // points used in the SPAKE2 protocol.
  24. //
  25. // N:
  26. // x: 49918732221787544735331783592030787422991506689877079631459872391322455579424
  27. // y: 54629554431565467720832445949441049581317094546788069926228343916274969994000
  28. // encoded: 10e3df0ae37d8e7a99b5fe74b44672103dbddcbd06af680d71329a11693bc778
  29. //
  30. // M:
  31. // x: 31406539342727633121250288103050113562375374900226415211311216773867585644232
  32. // y: 21177308356423958466833845032658859666296341766942662650232962324899758529114
  33. // encoded: 5ada7e4bf6ddd9adb6626d32131c6b5c51a1e347a3478f53cfcf441b88eed12e
  34. //
  35. // These points and their precomputation tables are generated with the
  36. // following Python code. For a description of the precomputation table,
  37. // see curve25519.c in this directory.
  38. //
  39. // Exact copies of the source code are kept in bug 27296743.
  40. //
  41. // import hashlib
  42. // import ed25519 as E # http://ed25519.cr.yp.to/python/ed25519.py
  43. //
  44. // SEED_N = 'edwards25519 point generation seed (N)'
  45. // SEED_M = 'edwards25519 point generation seed (M)'
  46. /*
  47. def genpoint(seed):
  48. v = hashlib.sha256(seed).digest()
  49. it = 1
  50. while True:
  51. try:
  52. x,y = E.decodepoint(v)
  53. except Exception, e:
  54. print e
  55. it += 1
  56. v = hashlib.sha256(v).digest()
  57. continue
  58. print "Found in %d iterations:" % it
  59. print " x = %d" % x
  60. print " y = %d" % y
  61. print " Encoded (hex)"
  62. print E.encodepoint((x,y)).encode('hex')
  63. return (x,y)
  64. def gentable(P):
  65. t = []
  66. for i in range(1,16):
  67. k = (i >> 3 & 1) * (1 << 192) + \
  68. (i >> 2 & 1) * (1 << 128) + \
  69. (i >> 1 & 1) * (1 << 64) + \
  70. (i & 1)
  71. t.append(E.scalarmult(P, k))
  72. return ''.join(E.encodeint(x) + E.encodeint(y) for (x,y) in t)
  73. def printtable(table, name):
  74. print "static const uint8_t %s[15 * 2 * 32] = {" % name,
  75. for i in range(15 * 2 * 32):
  76. if i % 12 == 0:
  77. print "\n ",
  78. print " 0x%02x," % ord(table[i]),
  79. print "\n};"
  80. if __name__ == "__main__":
  81. print "Searching for N"
  82. N = genpoint(SEED_N)
  83. print "Generating precomputation table for N"
  84. Ntable = gentable(N)
  85. printtable(Ntable, "kSpakeNSmallPrecomp")
  86. print "Searching for M"
  87. M = genpoint(SEED_M)
  88. print "Generating precomputation table for M"
  89. Mtable = gentable(M)
  90. printtable(Mtable, "kSpakeMSmallPrecomp")
  91. */
  92. static const uint8_t kSpakeNSmallPrecomp[15 * 2 * 32] = {
  93. 0x20, 0x1b, 0xc5, 0xb3, 0x43, 0x17, 0x71, 0x10, 0x44, 0x1e, 0x73, 0xb3,
  94. 0xae, 0x3f, 0xbf, 0x9f, 0xf5, 0x44, 0xc8, 0x13, 0x8f, 0xd1, 0x01, 0xc2,
  95. 0x8a, 0x1a, 0x6d, 0xea, 0x4d, 0x00, 0x5d, 0x6e, 0x10, 0xe3, 0xdf, 0x0a,
  96. 0xe3, 0x7d, 0x8e, 0x7a, 0x99, 0xb5, 0xfe, 0x74, 0xb4, 0x46, 0x72, 0x10,
  97. 0x3d, 0xbd, 0xdc, 0xbd, 0x06, 0xaf, 0x68, 0x0d, 0x71, 0x32, 0x9a, 0x11,
  98. 0x69, 0x3b, 0xc7, 0x78, 0x93, 0xf1, 0x57, 0x97, 0x6e, 0xf0, 0x6e, 0x45,
  99. 0x37, 0x4a, 0xf4, 0x0b, 0x18, 0x51, 0xf5, 0x4f, 0x67, 0x3c, 0xdc, 0xec,
  100. 0x84, 0xed, 0xd0, 0xeb, 0xca, 0xfb, 0xdb, 0xff, 0x7f, 0xeb, 0xa8, 0x23,
  101. 0x68, 0x87, 0x13, 0x64, 0x6a, 0x10, 0xf7, 0x45, 0xe0, 0x0f, 0x32, 0x21,
  102. 0x59, 0x7c, 0x0e, 0x50, 0xad, 0x56, 0xd7, 0x12, 0x69, 0x7b, 0x58, 0xf8,
  103. 0xb9, 0x3b, 0xa5, 0xbb, 0x4d, 0x1b, 0x87, 0x1c, 0x46, 0xa7, 0x17, 0x9d,
  104. 0x6d, 0x84, 0x45, 0xbe, 0x7f, 0x95, 0xd2, 0x34, 0xcd, 0x89, 0x95, 0xc0,
  105. 0xf0, 0xd3, 0xdf, 0x6e, 0x10, 0x4a, 0xe3, 0x7b, 0xce, 0x7f, 0x40, 0x27,
  106. 0xc7, 0x2b, 0xab, 0x66, 0x03, 0x59, 0xb4, 0x7b, 0xc7, 0xc7, 0xf0, 0x39,
  107. 0x9a, 0x33, 0x35, 0xbf, 0xcc, 0x2f, 0xf3, 0x2e, 0x68, 0x9d, 0x53, 0x5c,
  108. 0x88, 0x52, 0xe3, 0x77, 0x90, 0xa1, 0x27, 0x85, 0xc5, 0x74, 0x7f, 0x23,
  109. 0x0e, 0x93, 0x01, 0x3e, 0xe7, 0x2e, 0x2e, 0x95, 0xf3, 0x0d, 0xc2, 0x25,
  110. 0x25, 0x39, 0x39, 0x3d, 0x6e, 0x8e, 0x89, 0xbd, 0xe8, 0xbb, 0x67, 0x5e,
  111. 0x8c, 0x66, 0x8b, 0x63, 0x28, 0x1e, 0x4e, 0x74, 0x85, 0xa8, 0xaf, 0x0f,
  112. 0x12, 0x5d, 0xb6, 0x8a, 0x83, 0x1a, 0x77, 0x76, 0x5e, 0x62, 0x8a, 0xa7,
  113. 0x3c, 0xb8, 0x05, 0x57, 0x2b, 0xaf, 0x36, 0x2e, 0x10, 0x90, 0xb2, 0x39,
  114. 0xb4, 0x3e, 0x75, 0x6d, 0x3a, 0xa8, 0x31, 0x35, 0xc2, 0x1e, 0x8f, 0xc2,
  115. 0x79, 0x89, 0x35, 0x16, 0x26, 0xd1, 0xc7, 0x0b, 0x04, 0x1f, 0x1d, 0xf9,
  116. 0x9c, 0x05, 0xa6, 0x6b, 0xb5, 0x19, 0x5a, 0x24, 0x6d, 0x91, 0xc5, 0x31,
  117. 0xfd, 0xc5, 0xfa, 0xe7, 0xa6, 0xcb, 0x0e, 0x4b, 0x18, 0x0d, 0x94, 0xc7,
  118. 0xee, 0x1d, 0x46, 0x1f, 0x92, 0xb1, 0xb2, 0x4a, 0x2b, 0x43, 0x37, 0xfe,
  119. 0xc2, 0x15, 0x11, 0x89, 0xef, 0x59, 0x73, 0x3c, 0x06, 0x76, 0x78, 0xcb,
  120. 0xa6, 0x0d, 0x79, 0x5f, 0x28, 0x0b, 0x5b, 0x8c, 0x9e, 0xe4, 0xaa, 0x51,
  121. 0x9a, 0x42, 0x6f, 0x11, 0x50, 0x3d, 0x01, 0xd6, 0x21, 0xc0, 0x99, 0x5e,
  122. 0x1a, 0xe8, 0x81, 0x25, 0x80, 0xeb, 0xed, 0x5d, 0x37, 0x47, 0x30, 0x70,
  123. 0xa0, 0x4e, 0x0b, 0x43, 0x17, 0xbe, 0xb6, 0x47, 0xe7, 0x2a, 0x62, 0x9d,
  124. 0x5d, 0xa6, 0xc5, 0x33, 0x62, 0x9d, 0x56, 0x24, 0x9d, 0x1d, 0xb2, 0x13,
  125. 0xbc, 0x17, 0x66, 0x43, 0xd1, 0x68, 0xd5, 0x3b, 0x17, 0x69, 0x17, 0xa6,
  126. 0x06, 0x9e, 0x12, 0xb8, 0x7c, 0xd5, 0xaf, 0x3e, 0x21, 0x1b, 0x31, 0xeb,
  127. 0x0b, 0xa4, 0x98, 0x1c, 0xf2, 0x6a, 0x5e, 0x7c, 0x9b, 0x45, 0x8f, 0xb2,
  128. 0x12, 0x06, 0xd5, 0x8c, 0x1d, 0xb2, 0xa7, 0x57, 0x5f, 0x2f, 0x4f, 0xdb,
  129. 0x52, 0x99, 0x7c, 0x58, 0x01, 0x5f, 0xf2, 0xa5, 0xf6, 0x51, 0x86, 0x21,
  130. 0x2f, 0x5b, 0x8d, 0x6a, 0xae, 0x83, 0x34, 0x6d, 0x58, 0x4b, 0xef, 0xfe,
  131. 0xbf, 0x73, 0x5d, 0xdb, 0xc4, 0x97, 0x2a, 0x85, 0xf3, 0x6c, 0x46, 0x42,
  132. 0xb3, 0x90, 0xc1, 0x57, 0x97, 0x50, 0x35, 0xb1, 0x9d, 0xb7, 0xc7, 0x3c,
  133. 0x85, 0x6d, 0x6c, 0xfd, 0xce, 0xb0, 0xc9, 0xa2, 0x77, 0xee, 0xc3, 0x6b,
  134. 0x0c, 0x37, 0xfa, 0x30, 0x91, 0xd1, 0x2c, 0xb8, 0x5e, 0x7f, 0x81, 0x5f,
  135. 0x87, 0xfd, 0x18, 0x02, 0x5a, 0x30, 0x4e, 0x62, 0xbc, 0x65, 0xc6, 0xce,
  136. 0x1a, 0xcf, 0x2b, 0xaa, 0x56, 0x3e, 0x4d, 0xcf, 0xba, 0x62, 0x5f, 0x9a,
  137. 0xd0, 0x72, 0xff, 0xef, 0x28, 0xbd, 0xbe, 0xd8, 0x57, 0x3d, 0xf5, 0x57,
  138. 0x7d, 0xe9, 0x71, 0x31, 0xec, 0x98, 0x90, 0x94, 0xd9, 0x54, 0xbf, 0x84,
  139. 0x0b, 0xe3, 0x06, 0x47, 0x19, 0x9a, 0x13, 0x1d, 0xef, 0x9d, 0x13, 0xf3,
  140. 0xdb, 0xc3, 0x5c, 0x72, 0x9e, 0xed, 0x24, 0xaa, 0x64, 0xed, 0xe7, 0x0d,
  141. 0xa0, 0x7c, 0x73, 0xba, 0x9b, 0x86, 0xa7, 0x3b, 0x55, 0xab, 0x58, 0x30,
  142. 0xf1, 0x15, 0x81, 0x83, 0x2f, 0xf9, 0x62, 0x84, 0x98, 0x66, 0xf6, 0x55,
  143. 0x21, 0xd8, 0xf2, 0x25, 0x64, 0x71, 0x4b, 0x12, 0x76, 0x59, 0xc5, 0xaa,
  144. 0x93, 0x67, 0xc3, 0x86, 0x25, 0xab, 0x4e, 0x4b, 0xf6, 0xd8, 0x3f, 0x44,
  145. 0x2e, 0x11, 0xe0, 0xbd, 0x6a, 0xf2, 0x5d, 0xf5, 0xf9, 0x53, 0xea, 0xa4,
  146. 0xc8, 0xd9, 0x50, 0x33, 0x81, 0xd9, 0xa8, 0x2d, 0x91, 0x7d, 0x13, 0x2a,
  147. 0x11, 0xcf, 0xde, 0x3f, 0x0a, 0xd2, 0xbc, 0x33, 0xb2, 0x62, 0x53, 0xea,
  148. 0x77, 0x88, 0x43, 0x66, 0x27, 0x43, 0x85, 0xe9, 0x5f, 0x55, 0xf5, 0x2a,
  149. 0x8a, 0xac, 0xdf, 0xff, 0x9b, 0x4c, 0x96, 0x9c, 0xa5, 0x7a, 0xce, 0xd5,
  150. 0x79, 0x18, 0xf1, 0x0b, 0x58, 0x95, 0x7a, 0xe7, 0xd3, 0x74, 0x65, 0x0b,
  151. 0xa4, 0x64, 0x30, 0xe8, 0x5c, 0xfc, 0x55, 0x56, 0xee, 0x14, 0x14, 0xd3,
  152. 0x45, 0x3b, 0xf8, 0xde, 0x05, 0x3e, 0xb9, 0x3c, 0xd7, 0x6a, 0x52, 0x72,
  153. 0x5b, 0x39, 0x09, 0xbe, 0x82, 0x23, 0x10, 0x4a, 0xb7, 0xc3, 0xdc, 0x4c,
  154. 0x5d, 0xc9, 0xf1, 0x14, 0x83, 0xf9, 0x0b, 0x9b, 0xe9, 0x23, 0x84, 0x6a,
  155. 0xc4, 0x08, 0x3d, 0xda, 0x3d, 0x12, 0x95, 0x87, 0x18, 0xa4, 0x7d, 0x3f,
  156. 0x23, 0xde, 0xd4, 0x1e, 0xa8, 0x47, 0xc3, 0x71, 0xdb, 0xf5, 0x03, 0x6c,
  157. 0x57, 0xe7, 0xa4, 0x43, 0x82, 0x33, 0x7b, 0x62, 0x46, 0x7d, 0xf7, 0x10,
  158. 0x69, 0x18, 0x38, 0x27, 0x9a, 0x6f, 0x38, 0xac, 0xfa, 0x92, 0xc5, 0xae,
  159. 0x66, 0xa6, 0x73, 0x95, 0x15, 0x0e, 0x4c, 0x04, 0xb6, 0xfc, 0xf5, 0xc7,
  160. 0x21, 0x3a, 0x99, 0xdb, 0x0e, 0x36, 0xf0, 0x56, 0xbc, 0x75, 0xf9, 0x87,
  161. 0x9b, 0x11, 0x18, 0x92, 0x64, 0x1a, 0xe7, 0xc7, 0xab, 0x5a, 0xc7, 0x26,
  162. 0x7f, 0x13, 0x98, 0x42, 0x52, 0x43, 0xdb, 0xc8, 0x6d, 0x0b, 0xb7, 0x31,
  163. 0x93, 0x24, 0xd6, 0xe8, 0x24, 0x1f, 0x6f, 0x21, 0xa7, 0x8c, 0xeb, 0xdb,
  164. 0x83, 0xb8, 0x89, 0xe3, 0xc1, 0xd7, 0x69, 0x3b, 0x02, 0x6b, 0x54, 0x0f,
  165. 0x84, 0x2f, 0xb5, 0x5c, 0x17, 0x77, 0xbe, 0xe5, 0x61, 0x0d, 0xc5, 0xdf,
  166. 0x3b, 0xcf, 0x3e, 0x93, 0x4f, 0xf5, 0x89, 0xb9, 0x5a, 0xc5, 0x29, 0x31,
  167. 0xc0, 0xc2, 0xff, 0xe5, 0x3f, 0xa6, 0xac, 0x03, 0xca, 0xf5, 0xff, 0xe0,
  168. 0x36, 0xce, 0xf3, 0xe2, 0xb7, 0x9c, 0x02, 0xe9, 0x9e, 0xd2, 0xbc, 0x87,
  169. 0x2f, 0x3d, 0x9a, 0x1d, 0x8f, 0xc5, 0x72, 0xb8, 0xa2, 0x01, 0xd4, 0x68,
  170. 0xb1, 0x84, 0x16, 0x10, 0xf6, 0xf3, 0x52, 0x25, 0xd9, 0xdc, 0x4c, 0xdd,
  171. 0x0f, 0xd6, 0x4a, 0xcf, 0x60, 0x96, 0x7e, 0xcc, 0x42, 0x0f, 0x64, 0x9d,
  172. 0x72, 0x46, 0x04, 0x07, 0xf2, 0x5b, 0xf4, 0x07, 0xd1, 0xf4, 0x59, 0x71,
  173. };
  174. static const uint8_t kSpakeMSmallPrecomp[15 * 2 * 32] = {
  175. 0xc8, 0xa6, 0x63, 0xc5, 0x97, 0xf1, 0xee, 0x40, 0xab, 0x62, 0x42, 0xee,
  176. 0x25, 0x6f, 0x32, 0x6c, 0x75, 0x2c, 0xa7, 0xd3, 0xbd, 0x32, 0x3b, 0x1e,
  177. 0x11, 0x9c, 0xbd, 0x04, 0xa9, 0x78, 0x6f, 0x45, 0x5a, 0xda, 0x7e, 0x4b,
  178. 0xf6, 0xdd, 0xd9, 0xad, 0xb6, 0x62, 0x6d, 0x32, 0x13, 0x1c, 0x6b, 0x5c,
  179. 0x51, 0xa1, 0xe3, 0x47, 0xa3, 0x47, 0x8f, 0x53, 0xcf, 0xcf, 0x44, 0x1b,
  180. 0x88, 0xee, 0xd1, 0x2e, 0x03, 0x89, 0xaf, 0xc0, 0x61, 0x2d, 0x9e, 0x35,
  181. 0xeb, 0x0e, 0x03, 0xe0, 0xb7, 0xfb, 0xa5, 0xbc, 0x44, 0xbe, 0x0c, 0x89,
  182. 0x0a, 0x0f, 0xd6, 0x59, 0x47, 0x9e, 0xe6, 0x3d, 0x36, 0x9d, 0xff, 0x44,
  183. 0x5e, 0xac, 0xab, 0xe5, 0x3a, 0xd5, 0xb0, 0x35, 0x9f, 0x6d, 0x7f, 0xba,
  184. 0xc0, 0x85, 0x0e, 0xf4, 0x70, 0x3f, 0x13, 0x90, 0x4c, 0x50, 0x1a, 0xee,
  185. 0xc5, 0xeb, 0x69, 0xfe, 0x98, 0x42, 0x87, 0x1d, 0xce, 0x6c, 0x29, 0xaa,
  186. 0x2b, 0x31, 0xc2, 0x38, 0x7b, 0x6b, 0xee, 0x88, 0x0b, 0xba, 0xce, 0xa8,
  187. 0xca, 0x19, 0x60, 0x1b, 0x16, 0xf1, 0x25, 0x1e, 0xcf, 0x63, 0x66, 0x1e,
  188. 0xbb, 0x63, 0xeb, 0x7d, 0xca, 0xd2, 0xb4, 0x23, 0x5a, 0x01, 0x6f, 0x05,
  189. 0xd1, 0xdc, 0x41, 0x73, 0x75, 0xc0, 0xfd, 0x30, 0x91, 0x52, 0x68, 0x96,
  190. 0x45, 0xb3, 0x66, 0x01, 0x3b, 0x53, 0x89, 0x3c, 0x69, 0xbc, 0x6c, 0x69,
  191. 0xe3, 0x51, 0x8f, 0xe3, 0xd2, 0x84, 0xd5, 0x28, 0x66, 0xb5, 0xe6, 0x06,
  192. 0x09, 0xfe, 0x6d, 0xb0, 0x72, 0x16, 0xe0, 0x8a, 0xce, 0x61, 0x65, 0xa9,
  193. 0x21, 0x32, 0x48, 0xdc, 0x7a, 0x1d, 0xe1, 0x38, 0x7f, 0x8c, 0x75, 0x88,
  194. 0x3d, 0x08, 0xa9, 0x4a, 0x6f, 0x3d, 0x9f, 0x7f, 0x3f, 0xbd, 0x57, 0x6b,
  195. 0x19, 0xce, 0x3f, 0x4a, 0xc9, 0xd3, 0xf9, 0x6e, 0x72, 0x7b, 0x5b, 0x74,
  196. 0xea, 0xbe, 0x9c, 0x7a, 0x6d, 0x9c, 0x40, 0x49, 0xe6, 0xfb, 0x2a, 0x1a,
  197. 0x75, 0x70, 0xe5, 0x4e, 0xed, 0x74, 0xe0, 0x75, 0xac, 0xc0, 0xb1, 0x11,
  198. 0x3e, 0xf2, 0xaf, 0x88, 0x4d, 0x66, 0xb6, 0xf6, 0x15, 0x4f, 0x3c, 0x6c,
  199. 0x77, 0xae, 0x47, 0x51, 0x63, 0x9a, 0xfe, 0xe1, 0xb4, 0x1a, 0x12, 0xdf,
  200. 0xe9, 0x54, 0x8d, 0x3b, 0x30, 0x2a, 0x75, 0xe3, 0xe5, 0x29, 0xb1, 0x4c,
  201. 0xb0, 0x7c, 0x6d, 0xb5, 0xae, 0x85, 0xdb, 0x1e, 0x38, 0x55, 0x96, 0xa5,
  202. 0x5b, 0x9f, 0x15, 0x23, 0x28, 0x36, 0xb8, 0xa2, 0x41, 0xb4, 0xd7, 0x19,
  203. 0x91, 0x8d, 0x26, 0x3e, 0xca, 0x9c, 0x05, 0x7a, 0x2b, 0x60, 0x45, 0x86,
  204. 0x8b, 0xee, 0x64, 0x6f, 0x5c, 0x09, 0x4d, 0x4b, 0x5a, 0x7f, 0xb0, 0xc3,
  205. 0x26, 0x9d, 0x8b, 0xb8, 0x83, 0x69, 0xcf, 0x16, 0x72, 0x62, 0x3e, 0x5e,
  206. 0x53, 0x4f, 0x9c, 0x73, 0x76, 0xfc, 0x19, 0xef, 0xa0, 0x74, 0x3a, 0x11,
  207. 0x1e, 0xd0, 0x4d, 0xb7, 0x87, 0xa1, 0xd6, 0x87, 0x6c, 0x0e, 0x6c, 0x8c,
  208. 0xe9, 0xa0, 0x44, 0xc4, 0x72, 0x3e, 0x73, 0x17, 0x13, 0xd1, 0x4e, 0x3d,
  209. 0x8e, 0x1d, 0x5a, 0x8b, 0x75, 0xcb, 0x59, 0x2c, 0x47, 0x87, 0x15, 0x41,
  210. 0xfe, 0x08, 0xe9, 0xa6, 0x97, 0x17, 0x08, 0x26, 0x6a, 0xb5, 0xbb, 0x73,
  211. 0xaa, 0xb8, 0x5b, 0x65, 0x65, 0x5b, 0x30, 0x9e, 0x62, 0x59, 0x02, 0xf8,
  212. 0xb8, 0x0f, 0x32, 0x10, 0xc1, 0x36, 0x08, 0x52, 0x98, 0x4a, 0x1e, 0xf0,
  213. 0xab, 0x21, 0x5e, 0xde, 0x16, 0x0c, 0xda, 0x09, 0x99, 0x6b, 0x9e, 0xc0,
  214. 0x90, 0xa5, 0x5a, 0xcc, 0xb0, 0xb7, 0xbb, 0xd2, 0x8b, 0x5f, 0xd3, 0x3b,
  215. 0x3e, 0x8c, 0xa5, 0x71, 0x66, 0x06, 0xe3, 0x28, 0xd4, 0xf8, 0x3f, 0xe5,
  216. 0x27, 0xdf, 0xfe, 0x0f, 0x09, 0xb2, 0x8a, 0x09, 0x5a, 0x23, 0x61, 0x0d,
  217. 0x2d, 0xf5, 0x44, 0xf1, 0x5c, 0xf8, 0x82, 0x4e, 0xdc, 0x78, 0x7a, 0xab,
  218. 0xc3, 0x57, 0x91, 0xaf, 0x65, 0x6e, 0x71, 0xf1, 0x44, 0xbf, 0xed, 0x43,
  219. 0x50, 0xb4, 0x67, 0x48, 0xef, 0x5a, 0x10, 0x46, 0x81, 0xb4, 0x0c, 0xc8,
  220. 0x48, 0xed, 0x99, 0x7a, 0x45, 0xa5, 0x92, 0xc3, 0x69, 0xd6, 0xd7, 0x8a,
  221. 0x20, 0x1b, 0xeb, 0x8f, 0xb2, 0xff, 0xec, 0x6d, 0x76, 0x04, 0xf8, 0xc2,
  222. 0x58, 0x9b, 0xf2, 0x20, 0x53, 0xc4, 0x74, 0x91, 0x19, 0xdd, 0x2d, 0x12,
  223. 0x53, 0xc7, 0x6e, 0xd0, 0x02, 0x51, 0x3c, 0xa6, 0x7d, 0x80, 0x75, 0x6b,
  224. 0x1d, 0xdf, 0xf8, 0x6a, 0x52, 0xbb, 0x81, 0xf8, 0x30, 0x45, 0xef, 0x51,
  225. 0x85, 0x36, 0xbe, 0x8e, 0xcf, 0x0b, 0x9a, 0x46, 0xe8, 0x3f, 0x99, 0xfd,
  226. 0xf7, 0xd9, 0x3e, 0x84, 0xe5, 0xe3, 0x37, 0xcf, 0x98, 0x7f, 0xeb, 0x5e,
  227. 0x5a, 0x53, 0x77, 0x1c, 0x20, 0xdc, 0xf1, 0x20, 0x99, 0xec, 0x60, 0x40,
  228. 0x93, 0xef, 0x5c, 0x1c, 0x81, 0xe2, 0xa5, 0xad, 0x2a, 0xc2, 0xdb, 0x6b,
  229. 0xc1, 0x7e, 0x8f, 0xa9, 0x23, 0x5b, 0xd9, 0x0d, 0xfe, 0xa0, 0xac, 0x11,
  230. 0x28, 0xba, 0x8e, 0x92, 0x07, 0x2d, 0x07, 0x40, 0x83, 0x14, 0x4c, 0x35,
  231. 0x8d, 0xd0, 0x11, 0xff, 0x98, 0xdb, 0x00, 0x30, 0x6f, 0x65, 0xb6, 0xa0,
  232. 0x7f, 0x9c, 0x08, 0xb8, 0xce, 0xb3, 0xa8, 0x42, 0xd3, 0x84, 0x45, 0xe1,
  233. 0xe3, 0x8f, 0xa6, 0x89, 0x21, 0xd7, 0x74, 0x02, 0x4d, 0x64, 0xdf, 0x54,
  234. 0x15, 0x9e, 0xba, 0x12, 0x49, 0x09, 0x41, 0xf6, 0x10, 0x24, 0xa1, 0x84,
  235. 0x15, 0xfd, 0x68, 0x6a, 0x57, 0x66, 0xb3, 0x6d, 0x4c, 0xea, 0xbf, 0xbc,
  236. 0x60, 0x3f, 0x52, 0x1c, 0x44, 0x1b, 0xc0, 0x4a, 0x25, 0xe3, 0xd9, 0x4c,
  237. 0x9a, 0x74, 0xad, 0xfc, 0x9e, 0x8d, 0x0b, 0x18, 0x66, 0x24, 0xd1, 0x06,
  238. 0xac, 0x68, 0xc1, 0xae, 0x14, 0xce, 0xb1, 0xf3, 0x86, 0x9f, 0x87, 0x11,
  239. 0xd7, 0x9f, 0x30, 0x92, 0xdb, 0xec, 0x0b, 0x4a, 0xe8, 0xf6, 0x53, 0x36,
  240. 0x68, 0x12, 0x11, 0x5e, 0xe0, 0x34, 0xa4, 0xff, 0x00, 0x0a, 0x26, 0xb8,
  241. 0x62, 0x79, 0x9c, 0x0c, 0xd5, 0xe5, 0xf5, 0x1c, 0x1a, 0x16, 0x84, 0x4d,
  242. 0x8e, 0x5d, 0x31, 0x7e, 0xf7, 0xe2, 0xd3, 0xa1, 0x41, 0x90, 0x61, 0x5d,
  243. 0x04, 0xb2, 0x9a, 0x18, 0x9e, 0x54, 0xfb, 0xd1, 0x61, 0x95, 0x1b, 0x08,
  244. 0xca, 0x7c, 0x49, 0x44, 0x74, 0x1d, 0x2f, 0xca, 0xc4, 0x7a, 0xe1, 0x8b,
  245. 0x2f, 0xbb, 0x96, 0xee, 0x19, 0x8a, 0x5d, 0xfb, 0x3e, 0x82, 0xe7, 0x15,
  246. 0xdb, 0x29, 0x14, 0xee, 0xc9, 0x4d, 0x9a, 0xfb, 0x9f, 0x8a, 0xbb, 0x17,
  247. 0x37, 0x1b, 0x6e, 0x28, 0x6c, 0xf9, 0xff, 0xb5, 0xb5, 0x8b, 0x9d, 0x88,
  248. 0x20, 0x08, 0x10, 0xd7, 0xca, 0x58, 0xf6, 0xe1, 0x32, 0x91, 0x6f, 0x36,
  249. 0xc0, 0xad, 0xc1, 0x57, 0x5d, 0x76, 0x31, 0x43, 0xf3, 0xdd, 0xec, 0xf1,
  250. 0xa9, 0x79, 0xe9, 0xe9, 0x85, 0xd7, 0x91, 0xc7, 0x31, 0x62, 0x3c, 0xd2,
  251. 0x90, 0x2c, 0x9c, 0xa4, 0x56, 0x37, 0x7b, 0xbe, 0x40, 0x58, 0xc0, 0x81,
  252. 0x83, 0x22, 0xe8, 0x13, 0x79, 0x18, 0xdb, 0x3a, 0x1b, 0x31, 0x0d, 0x00,
  253. 0x6c, 0x22, 0x62, 0x75, 0x70, 0xd8, 0x96, 0x59, 0x99, 0x44, 0x79, 0x71,
  254. 0xa6, 0x76, 0x81, 0x28, 0xb2, 0x65, 0xe8, 0x47, 0x14, 0xc6, 0x39, 0x06,
  255. };
  256. enum spake2_state_t {
  257. spake2_state_init = 0,
  258. spake2_state_msg_generated,
  259. spake2_state_key_generated,
  260. };
  261. struct spake2_ctx_st {
  262. uint8_t private_key[32];
  263. uint8_t my_msg[32];
  264. uint8_t password_scalar[32];
  265. uint8_t password_hash[SHA512_DIGEST_LENGTH];
  266. uint8_t *my_name;
  267. size_t my_name_len;
  268. uint8_t *their_name;
  269. size_t their_name_len;
  270. enum spake2_role_t my_role;
  271. enum spake2_state_t state;
  272. };
  273. SPAKE2_CTX *SPAKE2_CTX_new(enum spake2_role_t my_role,
  274. const uint8_t *my_name, size_t my_name_len,
  275. const uint8_t *their_name, size_t their_name_len) {
  276. SPAKE2_CTX *ctx = OPENSSL_malloc(sizeof(SPAKE2_CTX));
  277. if (ctx == NULL) {
  278. return NULL;
  279. }
  280. OPENSSL_memset(ctx, 0, sizeof(SPAKE2_CTX));
  281. ctx->my_role = my_role;
  282. CBS my_name_cbs, their_name_cbs;
  283. CBS_init(&my_name_cbs, my_name, my_name_len);
  284. CBS_init(&their_name_cbs, their_name, their_name_len);
  285. if (!CBS_stow(&my_name_cbs, &ctx->my_name, &ctx->my_name_len) ||
  286. !CBS_stow(&their_name_cbs, &ctx->their_name, &ctx->their_name_len)) {
  287. SPAKE2_CTX_free(ctx);
  288. return NULL;
  289. }
  290. return ctx;
  291. }
  292. void SPAKE2_CTX_free(SPAKE2_CTX *ctx) {
  293. if (ctx == NULL) {
  294. return;
  295. }
  296. OPENSSL_free(ctx->my_name);
  297. OPENSSL_free(ctx->their_name);
  298. OPENSSL_free(ctx);
  299. }
  300. // left_shift_3 sets |n| to |n|*8, where |n| is represented in little-endian
  301. // order.
  302. static void left_shift_3(uint8_t n[32]) {
  303. uint8_t carry = 0;
  304. unsigned i;
  305. for (i = 0; i < 32; i++) {
  306. const uint8_t next_carry = n[i] >> 5;
  307. n[i] = (n[i] << 3) | carry;
  308. carry = next_carry;
  309. }
  310. }
  311. int SPAKE2_generate_msg(SPAKE2_CTX *ctx, uint8_t *out, size_t *out_len,
  312. size_t max_out_len, const uint8_t *password,
  313. size_t password_len) {
  314. if (ctx->state != spake2_state_init) {
  315. return 0;
  316. }
  317. if (max_out_len < sizeof(ctx->my_msg)) {
  318. return 0;
  319. }
  320. uint8_t private_tmp[64];
  321. RAND_bytes(private_tmp, sizeof(private_tmp));
  322. x25519_sc_reduce(private_tmp);
  323. // Multiply by the cofactor (eight) so that we'll clear it when operating on
  324. // the peer's point later in the protocol.
  325. left_shift_3(private_tmp);
  326. OPENSSL_memcpy(ctx->private_key, private_tmp, sizeof(ctx->private_key));
  327. ge_p3 P;
  328. x25519_ge_scalarmult_base(&P, ctx->private_key);
  329. // mask = h(password) * <N or M>.
  330. uint8_t password_tmp[SHA512_DIGEST_LENGTH];
  331. SHA512(password, password_len, password_tmp);
  332. OPENSSL_memcpy(ctx->password_hash, password_tmp, sizeof(ctx->password_hash));
  333. x25519_sc_reduce(password_tmp);
  334. OPENSSL_memcpy(ctx->password_scalar, password_tmp, sizeof(ctx->password_scalar));
  335. ge_p3 mask;
  336. x25519_ge_scalarmult_small_precomp(&mask, ctx->password_scalar,
  337. ctx->my_role == spake2_role_alice
  338. ? kSpakeMSmallPrecomp
  339. : kSpakeNSmallPrecomp);
  340. // P* = P + mask.
  341. ge_cached mask_cached;
  342. x25519_ge_p3_to_cached(&mask_cached, &mask);
  343. ge_p1p1 Pstar;
  344. x25519_ge_add(&Pstar, &P, &mask_cached);
  345. // Encode P*
  346. ge_p2 Pstar_proj;
  347. x25519_ge_p1p1_to_p2(&Pstar_proj, &Pstar);
  348. x25519_ge_tobytes(ctx->my_msg, &Pstar_proj);
  349. OPENSSL_memcpy(out, ctx->my_msg, sizeof(ctx->my_msg));
  350. *out_len = sizeof(ctx->my_msg);
  351. ctx->state = spake2_state_msg_generated;
  352. return 1;
  353. }
  354. static void update_with_length_prefix(SHA512_CTX *sha, const uint8_t *data,
  355. const size_t len) {
  356. uint8_t len_le[8];
  357. size_t l = len;
  358. unsigned i;
  359. for (i = 0; i < 8; i++) {
  360. len_le[i] = l & 0xff;
  361. l >>= 8;
  362. }
  363. SHA512_Update(sha, len_le, sizeof(len_le));
  364. SHA512_Update(sha, data, len);
  365. }
  366. int SPAKE2_process_msg(SPAKE2_CTX *ctx, uint8_t *out_key, size_t *out_key_len,
  367. size_t max_out_key_len, const uint8_t *their_msg,
  368. size_t their_msg_len) {
  369. if (ctx->state != spake2_state_msg_generated ||
  370. their_msg_len != 32) {
  371. return 0;
  372. }
  373. ge_p3 Qstar;
  374. if (0 != x25519_ge_frombytes_vartime(&Qstar, their_msg)) {
  375. // Point received from peer was not on the curve.
  376. return 0;
  377. }
  378. // Unmask peer's value.
  379. ge_p3 peers_mask;
  380. x25519_ge_scalarmult_small_precomp(&peers_mask, ctx->password_scalar,
  381. ctx->my_role == spake2_role_alice
  382. ? kSpakeNSmallPrecomp
  383. : kSpakeMSmallPrecomp);
  384. ge_cached peers_mask_cached;
  385. x25519_ge_p3_to_cached(&peers_mask_cached, &peers_mask);
  386. ge_p1p1 Q_compl;
  387. ge_p3 Q_ext;
  388. x25519_ge_sub(&Q_compl, &Qstar, &peers_mask_cached);
  389. x25519_ge_p1p1_to_p3(&Q_ext, &Q_compl);
  390. ge_p2 dh_shared;
  391. x25519_ge_scalarmult(&dh_shared, ctx->private_key, &Q_ext);
  392. uint8_t dh_shared_encoded[32];
  393. x25519_ge_tobytes(dh_shared_encoded, &dh_shared);
  394. SHA512_CTX sha;
  395. SHA512_Init(&sha);
  396. if (ctx->my_role == spake2_role_alice) {
  397. update_with_length_prefix(&sha, ctx->my_name, ctx->my_name_len);
  398. update_with_length_prefix(&sha, ctx->their_name, ctx->their_name_len);
  399. update_with_length_prefix(&sha, ctx->my_msg, sizeof(ctx->my_msg));
  400. update_with_length_prefix(&sha, their_msg, 32);
  401. } else {
  402. update_with_length_prefix(&sha, ctx->their_name, ctx->their_name_len);
  403. update_with_length_prefix(&sha, ctx->my_name, ctx->my_name_len);
  404. update_with_length_prefix(&sha, their_msg, 32);
  405. update_with_length_prefix(&sha, ctx->my_msg, sizeof(ctx->my_msg));
  406. }
  407. update_with_length_prefix(&sha, dh_shared_encoded, sizeof(dh_shared_encoded));
  408. update_with_length_prefix(&sha, ctx->password_hash,
  409. sizeof(ctx->password_hash));
  410. uint8_t key[SHA512_DIGEST_LENGTH];
  411. SHA512_Final(key, &sha);
  412. size_t to_copy = max_out_key_len;
  413. if (to_copy > sizeof(key)) {
  414. to_copy = sizeof(key);
  415. }
  416. OPENSSL_memcpy(out_key, key, to_copy);
  417. *out_key_len = to_copy;
  418. ctx->state = spake2_state_key_generated;
  419. return 1;
  420. }