Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

171 lignes
7.1 KiB

  1. /* ====================================================================
  2. * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in
  13. * the documentation and/or other materials provided with the
  14. * distribution.
  15. *
  16. * 3. All advertising materials mentioning features or use of this
  17. * software must display the following acknowledgment:
  18. * "This product includes software developed by the OpenSSL Project
  19. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  20. *
  21. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  22. * endorse or promote products derived from this software without
  23. * prior written permission. For written permission, please contact
  24. * openssl-core@openssl.org.
  25. *
  26. * 5. Products derived from this software may not be called "OpenSSL"
  27. * nor may "OpenSSL" appear in their names without prior written
  28. * permission of the OpenSSL Project.
  29. *
  30. * 6. Redistributions of any form whatsoever must retain the following
  31. * acknowledgment:
  32. * "This product includes software developed by the OpenSSL Project
  33. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  34. *
  35. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  36. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  37. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  38. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  39. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  41. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  42. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  43. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  44. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  45. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  46. * OF THE POSSIBILITY OF SUCH DAMAGE.
  47. * ==================================================================== */
  48. #ifndef OPENSSL_HEADER_AES_H
  49. #define OPENSSL_HEADER_AES_H
  50. #include <openssl/base.h>
  51. #if defined(__cplusplus)
  52. extern "C" {
  53. #endif
  54. // Raw AES functions.
  55. #define AES_ENCRYPT 1
  56. #define AES_DECRYPT 0
  57. // AES_MAXNR is the maximum number of AES rounds.
  58. #define AES_MAXNR 14
  59. #define AES_BLOCK_SIZE 16
  60. // aes_key_st should be an opaque type, but EVP requires that the size be
  61. // known.
  62. struct aes_key_st {
  63. uint32_t rd_key[4 * (AES_MAXNR + 1)];
  64. unsigned rounds;
  65. };
  66. typedef struct aes_key_st AES_KEY;
  67. // AES_set_encrypt_key configures |aeskey| to encrypt with the |bits|-bit key,
  68. // |key|.
  69. //
  70. // WARNING: unlike other OpenSSL functions, this returns zero on success and a
  71. // negative number on error.
  72. OPENSSL_EXPORT int AES_set_encrypt_key(const uint8_t *key, unsigned bits,
  73. AES_KEY *aeskey);
  74. // AES_set_decrypt_key configures |aeskey| to decrypt with the |bits|-bit key,
  75. // |key|.
  76. //
  77. // WARNING: unlike other OpenSSL functions, this returns zero on success and a
  78. // negative number on error.
  79. OPENSSL_EXPORT int AES_set_decrypt_key(const uint8_t *key, unsigned bits,
  80. AES_KEY *aeskey);
  81. // AES_encrypt encrypts a single block from |in| to |out| with |key|. The |in|
  82. // and |out| pointers may overlap.
  83. OPENSSL_EXPORT void AES_encrypt(const uint8_t *in, uint8_t *out,
  84. const AES_KEY *key);
  85. // AES_decrypt decrypts a single block from |in| to |out| with |key|. The |in|
  86. // and |out| pointers may overlap.
  87. OPENSSL_EXPORT void AES_decrypt(const uint8_t *in, uint8_t *out,
  88. const AES_KEY *key);
  89. // Block cipher modes.
  90. // AES_ctr128_encrypt encrypts (or decrypts, it's the same in CTR mode) |len|
  91. // bytes from |in| to |out|. The |num| parameter must be set to zero on the
  92. // first call and |ivec| will be incremented.
  93. OPENSSL_EXPORT void AES_ctr128_encrypt(const uint8_t *in, uint8_t *out,
  94. size_t len, const AES_KEY *key,
  95. uint8_t ivec[AES_BLOCK_SIZE],
  96. uint8_t ecount_buf[AES_BLOCK_SIZE],
  97. unsigned int *num);
  98. // AES_ecb_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) a single,
  99. // 16 byte block from |in| to |out|.
  100. OPENSSL_EXPORT void AES_ecb_encrypt(const uint8_t *in, uint8_t *out,
  101. const AES_KEY *key, const int enc);
  102. // AES_cbc_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) |len|
  103. // bytes from |in| to |out|. The length must be a multiple of the block size.
  104. OPENSSL_EXPORT void AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
  105. const AES_KEY *key, uint8_t *ivec,
  106. const int enc);
  107. // AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
  108. // bytes from |in| to |out|. The |num| parameter must be set to zero on the
  109. // first call.
  110. OPENSSL_EXPORT void AES_ofb128_encrypt(const uint8_t *in, uint8_t *out,
  111. size_t len, const AES_KEY *key,
  112. uint8_t *ivec, int *num);
  113. // AES_cfb128_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) |len|
  114. // bytes from |in| to |out|. The |num| parameter must be set to zero on the
  115. // first call.
  116. OPENSSL_EXPORT void AES_cfb128_encrypt(const uint8_t *in, uint8_t *out,
  117. size_t len, const AES_KEY *key,
  118. uint8_t *ivec, int *num, int enc);
  119. // AES key wrap.
  120. //
  121. // These functions implement AES Key Wrap mode, as defined in RFC 3394. They
  122. // should never be used except to interoperate with existing systems that use
  123. // this mode.
  124. // AES_wrap_key performs AES key wrap on |in| which must be a multiple of 8
  125. // bytes. |iv| must point to an 8 byte value or be NULL to use the default IV.
  126. // |key| must have been configured for encryption. On success, it writes
  127. // |in_len| + 8 bytes to |out| and returns |in_len| + 8. Otherwise, it returns
  128. // -1.
  129. OPENSSL_EXPORT int AES_wrap_key(const AES_KEY *key, const uint8_t *iv,
  130. uint8_t *out, const uint8_t *in, size_t in_len);
  131. // AES_unwrap_key performs AES key unwrap on |in| which must be a multiple of 8
  132. // bytes. |iv| must point to an 8 byte value or be NULL to use the default IV.
  133. // |key| must have been configured for decryption. On success, it writes
  134. // |in_len| - 8 bytes to |out| and returns |in_len| - 8. Otherwise, it returns
  135. // -1.
  136. OPENSSL_EXPORT int AES_unwrap_key(const AES_KEY *key, const uint8_t *iv,
  137. uint8_t *out, const uint8_t *in,
  138. size_t in_len);
  139. #if defined(__cplusplus)
  140. } // extern C
  141. #endif
  142. #endif // OPENSSL_HEADER_AES_H