aes.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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|. |key| must point to |bits|/8 bytes. It returns zero on success and a
  69. // negative number if |bits| is an invalid AES key size.
  70. //
  71. // WARNING: this function breaks the usual return value convention.
  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|. |key| must point to |bits|/8 bytes. It returns zero on success and a
  76. // negative number if |bits| is an invalid AES key size.
  77. //
  78. // WARNING: this function breaks the usual return value convention.
  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. This function may be called
  93. // in-place with |in| equal to |out|, but otherwise the buffers may not
  94. // partially overlap. A partial overlap may overwrite input data before it is
  95. // read.
  96. OPENSSL_EXPORT void AES_ctr128_encrypt(const uint8_t *in, uint8_t *out,
  97. size_t len, const AES_KEY *key,
  98. uint8_t ivec[AES_BLOCK_SIZE],
  99. uint8_t ecount_buf[AES_BLOCK_SIZE],
  100. unsigned int *num);
  101. // AES_ecb_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) a single,
  102. // 16 byte block from |in| to |out|. This function may be called in-place with
  103. // |in| equal to |out|, but otherwise the buffers may not partially overlap. A
  104. // partial overlap may overwrite input data before it is read.
  105. OPENSSL_EXPORT void AES_ecb_encrypt(const uint8_t *in, uint8_t *out,
  106. const AES_KEY *key, const int enc);
  107. // AES_cbc_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) |len|
  108. // bytes from |in| to |out|. The length must be a multiple of the block size.
  109. // This function may be called in-place with |in| equal to |out|, but otherwise
  110. // the buffers may not partially overlap. A partial overlap may overwrite input
  111. // data before it is read.
  112. OPENSSL_EXPORT void AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
  113. const AES_KEY *key, uint8_t *ivec,
  114. const int enc);
  115. // AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
  116. // bytes from |in| to |out|. The |num| parameter must be set to zero on the
  117. // first call. This function may be called in-place with |in| equal to |out|,
  118. // but otherwise the buffers may not partially overlap. A partial overlap may
  119. // overwrite input data before it is read.
  120. OPENSSL_EXPORT void AES_ofb128_encrypt(const uint8_t *in, uint8_t *out,
  121. size_t len, const AES_KEY *key,
  122. uint8_t *ivec, int *num);
  123. // AES_cfb128_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) |len|
  124. // bytes from |in| to |out|. The |num| parameter must be set to zero on the
  125. // first call. This function may be called in-place with |in| equal to |out|,
  126. // but otherwise the buffers may not partially overlap. A partial overlap may
  127. // overwrite input data before it is read.
  128. OPENSSL_EXPORT void AES_cfb128_encrypt(const uint8_t *in, uint8_t *out,
  129. size_t len, const AES_KEY *key,
  130. uint8_t *ivec, int *num, int enc);
  131. // AES key wrap.
  132. //
  133. // These functions implement AES Key Wrap mode, as defined in RFC 3394. They
  134. // should never be used except to interoperate with existing systems that use
  135. // this mode.
  136. // AES_wrap_key performs AES key wrap on |in| which must be a multiple of 8
  137. // bytes. |iv| must point to an 8 byte value or be NULL to use the default IV.
  138. // |key| must have been configured for encryption. On success, it writes
  139. // |in_len| + 8 bytes to |out| and returns |in_len| + 8. Otherwise, it returns
  140. // -1.
  141. OPENSSL_EXPORT int AES_wrap_key(const AES_KEY *key, const uint8_t *iv,
  142. uint8_t *out, const uint8_t *in, size_t in_len);
  143. // AES_unwrap_key performs AES key unwrap on |in| which must be a multiple of 8
  144. // bytes. |iv| must point to an 8 byte value or be NULL to use the default IV.
  145. // |key| must have been configured for decryption. On success, it writes
  146. // |in_len| - 8 bytes to |out| and returns |in_len| - 8. Otherwise, it returns
  147. // -1.
  148. OPENSSL_EXPORT int AES_unwrap_key(const AES_KEY *key, const uint8_t *iv,
  149. uint8_t *out, const uint8_t *in,
  150. size_t in_len);
  151. // AES key wrap with padding.
  152. //
  153. // These functions implement AES Key Wrap with Padding mode, as defined in RFC
  154. // 5649. They should never be used except to interoperate with existing systems
  155. // that use this mode.
  156. // AES_wrap_key_padded performs a padded AES key wrap on |in| which must be
  157. // between 1 and 2^32-1 bytes. |key| must have been configured for encryption.
  158. // On success it writes at most |max_out| bytes of ciphertext to |out|, sets
  159. // |*out_len| to the number of bytes written, and returns one. On failure it
  160. // returns zero. To ensure success, set |max_out| to at least |in_len| + 15.
  161. OPENSSL_EXPORT int AES_wrap_key_padded(const AES_KEY *key, uint8_t *out,
  162. size_t *out_len, size_t max_out,
  163. const uint8_t *in, size_t in_len);
  164. // AES_unwrap_key_padded performs a padded AES key unwrap on |in| which must be
  165. // a multiple of 8 bytes. |key| must have been configured for decryption. On
  166. // success it writes at most |max_out| bytes to |out|, sets |*out_len| to the
  167. // number of bytes written, and returns one. On failure it returns zero. Setting
  168. // |max_out| to |in_len| is a sensible estimate.
  169. OPENSSL_EXPORT int AES_unwrap_key_padded(const AES_KEY *key, uint8_t *out,
  170. size_t *out_len, size_t max_out,
  171. const uint8_t *in, size_t in_len);
  172. #if defined(__cplusplus)
  173. } // extern C
  174. #endif
  175. #endif // OPENSSL_HEADER_AES_H