aes_icm.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * aes_icm.h
  3. *
  4. * Header for AES Integer Counter Mode.
  5. *
  6. * David A. McGrew
  7. * Cisco Systems, Inc.
  8. *
  9. */
  10. /*
  11. *
  12. * Copyright (c) 2001-2006, Cisco Systems, Inc.
  13. * All rights reserved.
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. *
  19. * Redistributions of source code must retain the above copyright
  20. * notice, this list of conditions and the following disclaimer.
  21. *
  22. * Redistributions in binary form must reproduce the above
  23. * copyright notice, this list of conditions and the following
  24. * disclaimer in the documentation and/or other materials provided
  25. * with the distribution.
  26. *
  27. * Neither the name of the Cisco Systems, Inc. nor the names of its
  28. * contributors may be used to endorse or promote products derived
  29. * from this software without specific prior written permission.
  30. *
  31. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  32. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  33. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  34. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  35. * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  36. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  37. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  38. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  40. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  41. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  42. * OF THE POSSIBILITY OF SUCH DAMAGE.
  43. *
  44. */
  45. #ifndef AES_ICM_H
  46. #define AES_ICM_H
  47. #include "aes.h"
  48. #include "cipher.h"
  49. typedef struct {
  50. v128_t counter; /* holds the counter value */
  51. v128_t offset; /* initial offset value */
  52. v128_t keystream_buffer; /* buffers bytes of keystream */
  53. aes_expanded_key_t expanded_key; /* the cipher key */
  54. int bytes_in_buffer; /* number of unused bytes in buffer */
  55. } aes_icm_ctx_t;
  56. err_status_t
  57. aes_icm_context_init(aes_icm_ctx_t *c,
  58. const unsigned char *key,
  59. int key_len);
  60. err_status_t
  61. aes_icm_set_iv(aes_icm_ctx_t *c, void *iv, int direction);
  62. err_status_t
  63. aes_icm_encrypt(aes_icm_ctx_t *c,
  64. unsigned char *buf, unsigned int *bytes_to_encr);
  65. err_status_t
  66. aes_icm_output(aes_icm_ctx_t *c,
  67. unsigned char *buf, unsigned int bytes_to_output);
  68. err_status_t
  69. aes_icm_dealloc(cipher_t *c);
  70. err_status_t
  71. aes_icm_encrypt_ismacryp(aes_icm_ctx_t *c,
  72. unsigned char *buf,
  73. unsigned int *enc_len,
  74. int forIsmacryp);
  75. err_status_t
  76. aes_icm_alloc_ismacryp(cipher_t **c,
  77. int key_len,
  78. int forIsmacryp);
  79. uint16_t
  80. aes_icm_bytes_encrypted(aes_icm_ctx_t *c);
  81. #endif /* AES_ICM_H */