srp.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /* crypto/srp/srp.h */
  2. /* Written by Christophe Renou (christophe.renou@edelweb.fr) with
  3. * the precious help of Peter Sylvester (peter.sylvester@edelweb.fr)
  4. * for the EdelKey project and contributed to the OpenSSL project 2004.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * licensing@OpenSSL.org.
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * (eay@cryptsoft.com). This product includes software written by Tim
  56. * Hudson (tjh@cryptsoft.com).
  57. *
  58. */
  59. #ifndef __SRP_H__
  60. #define __SRP_H__
  61. #ifndef OPENSSL_NO_SRP
  62. #include <stdio.h>
  63. #include <string.h>
  64. #ifdef __cplusplus
  65. extern "C" {
  66. #endif
  67. #include <openssl/safestack.h>
  68. #include <openssl/bn.h>
  69. #include <openssl/crypto.h>
  70. typedef struct SRP_gN_cache_st
  71. {
  72. char *b64_bn;
  73. BIGNUM *bn;
  74. } SRP_gN_cache;
  75. DECLARE_STACK_OF(SRP_gN_cache)
  76. typedef struct SRP_user_pwd_st
  77. {
  78. char *id;
  79. BIGNUM *s;
  80. BIGNUM *v;
  81. const BIGNUM *g;
  82. const BIGNUM *N;
  83. char *info;
  84. } SRP_user_pwd;
  85. DECLARE_STACK_OF(SRP_user_pwd)
  86. typedef struct SRP_VBASE_st
  87. {
  88. STACK_OF(SRP_user_pwd) *users_pwd;
  89. STACK_OF(SRP_gN_cache) *gN_cache;
  90. /* to simulate a user */
  91. char *seed_key;
  92. BIGNUM *default_g;
  93. BIGNUM *default_N;
  94. } SRP_VBASE;
  95. /*Structure interne pour retenir les couples N et g*/
  96. typedef struct SRP_gN_st
  97. {
  98. char *id;
  99. BIGNUM *g;
  100. BIGNUM *N;
  101. } SRP_gN;
  102. DECLARE_STACK_OF(SRP_gN)
  103. SRP_VBASE *SRP_VBASE_new(char *seed_key);
  104. int SRP_VBASE_free(SRP_VBASE *vb);
  105. int SRP_VBASE_init(SRP_VBASE *vb, char * verifier_file);
  106. SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);
  107. char *SRP_create_verifier(const char *user, const char *pass, char **salt,
  108. char **verifier, const char *N, const char *g);
  109. int SRP_create_verifier_BN(const char *user, const char *pass, BIGNUM **salt, BIGNUM **verifier, BIGNUM *N, BIGNUM *g);
  110. #define SRP_NO_ERROR 0
  111. #define SRP_ERR_VBASE_INCOMPLETE_FILE 1
  112. #define SRP_ERR_VBASE_BN_LIB 2
  113. #define SRP_ERR_OPEN_FILE 3
  114. #define SRP_ERR_MEMORY 4
  115. #define DB_srptype 0
  116. #define DB_srpverifier 1
  117. #define DB_srpsalt 2
  118. #define DB_srpid 3
  119. #define DB_srpgN 4
  120. #define DB_srpinfo 5
  121. #undef DB_NUMBER
  122. #define DB_NUMBER 6
  123. #define DB_SRP_INDEX 'I'
  124. #define DB_SRP_VALID 'V'
  125. #define DB_SRP_REVOKED 'R'
  126. #define DB_SRP_MODIF 'v'
  127. /* see srp.c */
  128. char * SRP_check_known_gN_param(BIGNUM* g, BIGNUM* N);
  129. SRP_gN *SRP_get_default_gN(const char * id) ;
  130. /* server side .... */
  131. BIGNUM *SRP_Calc_server_key(BIGNUM *A, BIGNUM *v, BIGNUM *u, BIGNUM *b, BIGNUM *N);
  132. BIGNUM *SRP_Calc_B(BIGNUM *b, BIGNUM *N, BIGNUM *g, BIGNUM *v);
  133. int SRP_Verify_A_mod_N(BIGNUM *A, BIGNUM *N);
  134. BIGNUM *SRP_Calc_u(BIGNUM *A, BIGNUM *B, BIGNUM *N) ;
  135. /* client side .... */
  136. BIGNUM *SRP_Calc_x(BIGNUM *s, const char *user, const char *pass);
  137. BIGNUM *SRP_Calc_A(BIGNUM *a, BIGNUM *N, BIGNUM *g);
  138. BIGNUM *SRP_Calc_client_key(BIGNUM *N, BIGNUM *B, BIGNUM *g, BIGNUM *x, BIGNUM *a, BIGNUM *u);
  139. int SRP_Verify_B_mod_N(BIGNUM *B, BIGNUM *N);
  140. #define SRP_MINIMAL_N 1024
  141. #ifdef __cplusplus
  142. }
  143. #endif
  144. #endif
  145. #endif