aes_gcm.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * aes_gcm.h
  3. *
  4. * Header for AES Galois Counter Mode.
  5. *
  6. * John A. Foley
  7. * Cisco Systems, Inc.
  8. *
  9. */
  10. /*
  11. *
  12. * Copyright (c) 2013-2017, 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_GCM_H
  46. #define AES_GCM_H
  47. #include "cipher.h"
  48. #include "srtp.h"
  49. #include "datatypes.h"
  50. #ifdef OPENSSL
  51. #include <openssl/evp.h>
  52. #include <openssl/aes.h>
  53. typedef struct {
  54. int key_size;
  55. int tag_len;
  56. EVP_CIPHER_CTX *ctx;
  57. srtp_cipher_direction_t dir;
  58. } srtp_aes_gcm_ctx_t;
  59. #endif /* OPENSSL */
  60. #ifdef MBEDTLS
  61. #define MAX_AD_SIZE 2048
  62. #include <mbedtls/aes.h>
  63. #include <mbedtls/gcm.h>
  64. typedef struct {
  65. int key_size;
  66. int tag_len;
  67. int aad_size;
  68. int iv_len;
  69. uint8_t iv[12];
  70. uint8_t tag[16];
  71. uint8_t aad[MAX_AD_SIZE];
  72. mbedtls_gcm_context *ctx;
  73. srtp_cipher_direction_t dir;
  74. } srtp_aes_gcm_ctx_t;
  75. #endif /* MBEDTLS */
  76. #ifdef NSS
  77. #define NSS_PKCS11_2_0_COMPAT 1
  78. #include <nss.h>
  79. #include <pk11pub.h>
  80. #define MAX_AD_SIZE 2048
  81. typedef struct {
  82. int key_size;
  83. int tag_size;
  84. srtp_cipher_direction_t dir;
  85. NSSInitContext *nss;
  86. PK11SymKey *key;
  87. uint8_t iv[12];
  88. uint8_t aad[MAX_AD_SIZE];
  89. int aad_size;
  90. CK_GCM_PARAMS params;
  91. uint8_t tag[16];
  92. } srtp_aes_gcm_ctx_t;
  93. #endif /* NSS */
  94. #endif /* AES_GCM_H */