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.
 
 
 
 
 
 

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