cipher_rc4_hmac_md5.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <openssl/rc4.h>
  10. #include <openssl/md5.h>
  11. #include "prov/ciphercommon.h"
  12. typedef struct prov_rc4_hmac_md5_ctx_st {
  13. PROV_CIPHER_CTX base; /* Must be first */
  14. union {
  15. OSSL_UNION_ALIGN;
  16. RC4_KEY ks;
  17. } ks;
  18. MD5_CTX head, tail, md;
  19. size_t payload_length;
  20. size_t tls_aad_pad_sz;
  21. } PROV_RC4_HMAC_MD5_CTX;
  22. typedef struct prov_cipher_hw_rc4_hmac_md5_st {
  23. PROV_CIPHER_HW base; /* Must be first */
  24. int (*tls_init)(PROV_CIPHER_CTX *ctx, unsigned char *aad, size_t aad_len);
  25. void (*init_mackey)(PROV_CIPHER_CTX *ctx, const unsigned char *key,
  26. size_t len);
  27. } PROV_CIPHER_HW_RC4_HMAC_MD5;
  28. const PROV_CIPHER_HW *ossl_prov_cipher_hw_rc4_hmac_md5(size_t keybits);