evp_locl.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:9k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* evp_locl.h */
  2. /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
  3.  * project 2000.
  4.  */
  5. /* ====================================================================
  6.  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  *
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer. 
  14.  *
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  *
  20.  * 3. All advertising materials mentioning features or use of this
  21.  *    software must display the following acknowledgment:
  22.  *    "This product includes software developed by the OpenSSL Project
  23.  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  24.  *
  25.  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26.  *    endorse or promote products derived from this software without
  27.  *    prior written permission. For written permission, please contact
  28.  *    licensing@OpenSSL.org.
  29.  *
  30.  * 5. Products derived from this software may not be called "OpenSSL"
  31.  *    nor may "OpenSSL" appear in their names without prior written
  32.  *    permission of the OpenSSL Project.
  33.  *
  34.  * 6. Redistributions of any form whatsoever must retain the following
  35.  *    acknowledgment:
  36.  *    "This product includes software developed by the OpenSSL Project
  37.  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  38.  *
  39.  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40.  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42.  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46.  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50.  * OF THE POSSIBILITY OF SUCH DAMAGE.
  51.  * ====================================================================
  52.  *
  53.  * This product includes cryptographic software written by Eric Young
  54.  * (eay@cryptsoft.com).  This product includes software written by Tim
  55.  * Hudson (tjh@cryptsoft.com).
  56.  *
  57.  */
  58. /* Macros to code block cipher wrappers */
  59. /* Wrapper functions for each cipher mode */
  60. #define BLOCK_CIPHER_ecb_loop() 
  61. unsigned int i, bl; 
  62. bl = ctx->cipher->block_size;
  63. if(inl < bl) return 1;
  64. inl -= bl; 
  65. for(i=0; i <= inl; i+=bl) 
  66. #define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) 
  67. static int cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 
  68. {
  69. BLOCK_CIPHER_ecb_loop() 
  70. cprefix##_ecb_encrypt(in + i, out + i, &((kstruct *)ctx->cipher_data)->ksched, ctx->encrypt);
  71. return 1;
  72. }
  73. #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) 
  74. static int cname##_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 
  75. {
  76. cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);
  77. return 1;
  78. }
  79. #define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) 
  80. static int cname##_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 
  81. {
  82. cprefix##_cbc_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, ctx->encrypt);
  83. return 1;
  84. }
  85. #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) 
  86. static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 
  87. {
  88. cprefix##_cfb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num, ctx->encrypt);
  89. return 1;
  90. }
  91. #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) 
  92. BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) 
  93. BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) 
  94. BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) 
  95. BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched)
  96. #define BLOCK_CIPHER_def1(cname, nmode, mode, MODE, kstruct, nid, block_size, 
  97.   key_len, iv_len, flags, init_key, cleanup, 
  98.   set_asn1, get_asn1, ctrl) 
  99. static const EVP_CIPHER cname##_##mode = { 
  100. nid##_##nmode, block_size, key_len, iv_len, 
  101. flags | EVP_CIPH_##MODE##_MODE, 
  102. init_key, 
  103. cname##_##mode##_cipher, 
  104. cleanup, 
  105. sizeof(kstruct), 
  106. set_asn1, get_asn1,
  107. ctrl, 
  108. NULL 
  109. }; 
  110. const EVP_CIPHER *EVP_##cname##_##mode(void) { return &cname##_##mode; }
  111. #define BLOCK_CIPHER_def_cbc(cname, kstruct, nid, block_size, key_len, 
  112.      iv_len, flags, init_key, cleanup, set_asn1, 
  113.      get_asn1, ctrl) 
  114. BLOCK_CIPHER_def1(cname, cbc, cbc, CBC, kstruct, nid, block_size, key_len, 
  115.   iv_len, flags, init_key, cleanup, set_asn1, get_asn1, ctrl)
  116. #define BLOCK_CIPHER_def_cfb(cname, kstruct, nid, key_len, 
  117.      iv_len, cbits, flags, init_key, cleanup, 
  118.      set_asn1, get_asn1, ctrl) 
  119. BLOCK_CIPHER_def1(cname, cfb##cbits, cfb##cbits, CFB, kstruct, nid, 1, 
  120.   key_len, iv_len, flags, init_key, cleanup, set_asn1, 
  121.   get_asn1, ctrl)
  122. #define BLOCK_CIPHER_def_ofb(cname, kstruct, nid, key_len, 
  123.      iv_len, cbits, flags, init_key, cleanup, 
  124.      set_asn1, get_asn1, ctrl) 
  125. BLOCK_CIPHER_def1(cname, ofb##cbits, ofb, OFB, kstruct, nid, 1, 
  126.   key_len, iv_len, flags, init_key, cleanup, set_asn1, 
  127.   get_asn1, ctrl)
  128. #define BLOCK_CIPHER_def_ecb(cname, kstruct, nid, block_size, key_len, 
  129.      iv_len, flags, init_key, cleanup, set_asn1, 
  130.      get_asn1, ctrl) 
  131. BLOCK_CIPHER_def1(cname, ecb, ecb, ECB, kstruct, nid, block_size, key_len, 
  132.   iv_len, flags, init_key, cleanup, set_asn1, get_asn1, ctrl)
  133. #define BLOCK_CIPHER_defs(cname, kstruct, 
  134.   nid, block_size, key_len, iv_len, cbits, flags, 
  135.   init_key, cleanup, set_asn1, get_asn1, ctrl) 
  136. BLOCK_CIPHER_def_cbc(cname, kstruct, nid, block_size, key_len, iv_len, flags, 
  137.      init_key, cleanup, set_asn1, get_asn1, ctrl) 
  138. BLOCK_CIPHER_def_cfb(cname, kstruct, nid, key_len, iv_len, cbits, 
  139.      flags, init_key, cleanup, set_asn1, get_asn1, ctrl) 
  140. BLOCK_CIPHER_def_ofb(cname, kstruct, nid, key_len, iv_len, cbits, 
  141.      flags, init_key, cleanup, set_asn1, get_asn1, ctrl) 
  142. BLOCK_CIPHER_def_ecb(cname, kstruct, nid, block_size, key_len, iv_len, flags, 
  143.      init_key, cleanup, set_asn1, get_asn1, ctrl)
  144. /*
  145. #define BLOCK_CIPHER_defs(cname, kstruct, 
  146. nid, block_size, key_len, iv_len, flags,
  147.  init_key, cleanup, set_asn1, get_asn1, ctrl)
  148. static const EVP_CIPHER cname##_cbc = {
  149. nid##_cbc, block_size, key_len, iv_len, 
  150. flags | EVP_CIPH_CBC_MODE,
  151. init_key,
  152. cname##_cbc_cipher,
  153. cleanup,
  154. sizeof(EVP_CIPHER_CTX)-sizeof((((EVP_CIPHER_CTX *)NULL)->c))+
  155. sizeof((((EVP_CIPHER_CTX *)NULL)->c.kstruct)),
  156. set_asn1, get_asn1,
  157. ctrl, 
  158. NULL 
  159. };
  160. const EVP_CIPHER *EVP_##cname##_cbc(void) { return &cname##_cbc; }
  161. static const EVP_CIPHER cname##_cfb = {
  162. nid##_cfb64, 1, key_len, iv_len, 
  163. flags | EVP_CIPH_CFB_MODE,
  164. init_key,
  165. cname##_cfb_cipher,
  166. cleanup,
  167. sizeof(EVP_CIPHER_CTX)-sizeof((((EVP_CIPHER_CTX *)NULL)->c))+
  168. sizeof((((EVP_CIPHER_CTX *)NULL)->c.kstruct)),
  169. set_asn1, get_asn1,
  170. ctrl,
  171. NULL 
  172. };
  173. const EVP_CIPHER *EVP_##cname##_cfb(void) { return &cname##_cfb; }
  174. static const EVP_CIPHER cname##_ofb = {
  175. nid##_ofb64, 1, key_len, iv_len, 
  176. flags | EVP_CIPH_OFB_MODE,
  177. init_key,
  178. cname##_ofb_cipher,
  179. cleanup,
  180. sizeof(EVP_CIPHER_CTX)-sizeof((((EVP_CIPHER_CTX *)NULL)->c))+
  181. sizeof((((EVP_CIPHER_CTX *)NULL)->c.kstruct)),
  182. set_asn1, get_asn1,
  183. ctrl,
  184. NULL 
  185. };
  186. const EVP_CIPHER *EVP_##cname##_ofb(void) { return &cname##_ofb; }
  187. static const EVP_CIPHER cname##_ecb = {
  188. nid##_ecb, block_size, key_len, iv_len, 
  189. flags | EVP_CIPH_ECB_MODE,
  190. init_key,
  191. cname##_ecb_cipher,
  192. cleanup,
  193. sizeof(EVP_CIPHER_CTX)-sizeof((((EVP_CIPHER_CTX *)NULL)->c))+
  194. sizeof((((EVP_CIPHER_CTX *)NULL)->c.kstruct)),
  195. set_asn1, get_asn1,
  196. ctrl,
  197. NULL 
  198. };
  199. const EVP_CIPHER *EVP_##cname##_ecb(void) { return &cname##_ecb; }
  200. */
  201. #define IMPLEMENT_BLOCK_CIPHER(cname, ksched, cprefix, kstruct, nid, 
  202.        block_size, key_len, iv_len, cbits, 
  203.        flags, init_key, 
  204.        cleanup, set_asn1, get_asn1, ctrl) 
  205. BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) 
  206. BLOCK_CIPHER_defs(cname, kstruct, nid, block_size, key_len, iv_len, 
  207.   cbits, flags, init_key, cleanup, set_asn1, 
  208.   get_asn1, ctrl)
  209. #define EVP_C_DATA(kstruct, ctx) ((kstruct *)(ctx)->cipher_data)
  210. #define IMPLEMENT_CFBR(cipher,cprefix,kstruct,ksched,keysize,cbits,iv_len) 
  211. BLOCK_CIPHER_func_cfb(cipher##_##keysize,cprefix,cbits,kstruct,ksched) 
  212. BLOCK_CIPHER_def_cfb(cipher##_##keysize,kstruct, 
  213.      NID_##cipher##_##keysize, keysize/8, iv_len, cbits, 
  214.      0, cipher##_init_key, NULL, 
  215.      EVP_CIPHER_set_asn1_iv, 
  216.      EVP_CIPHER_get_asn1_iv, 
  217.      NULL)