e_idea.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright 1995-2016 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 <stdio.h>
  10. #include "internal/cryptlib.h"
  11. #ifndef OPENSSL_NO_IDEA
  12. # include <openssl/evp.h>
  13. # include <openssl/objects.h>
  14. # include "crypto/evp.h"
  15. # include <openssl/idea.h>
  16. /* Can't use IMPLEMENT_BLOCK_CIPHER because IDEA_ecb_encrypt is different */
  17. typedef struct {
  18. IDEA_KEY_SCHEDULE ks;
  19. } EVP_IDEA_KEY;
  20. static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
  21. const unsigned char *iv, int enc);
  22. /*
  23. * NB IDEA_ecb_encrypt doesn't take an 'encrypt' argument so we treat it as a
  24. * special case
  25. */
  26. static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  27. const unsigned char *in, size_t inl)
  28. {
  29. BLOCK_CIPHER_ecb_loop()
  30. IDEA_ecb_encrypt(in + i, out + i, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
  31. return 1;
  32. }
  33. BLOCK_CIPHER_func_cbc(idea, IDEA, EVP_IDEA_KEY, ks)
  34. BLOCK_CIPHER_func_ofb(idea, IDEA, 64, EVP_IDEA_KEY, ks)
  35. BLOCK_CIPHER_func_cfb(idea, IDEA, 64, EVP_IDEA_KEY, ks)
  36. BLOCK_CIPHER_defs(idea, IDEA_KEY_SCHEDULE, NID_idea, 8, 16, 8, 64,
  37. 0, idea_init_key, NULL,
  38. EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, NULL)
  39. static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
  40. const unsigned char *iv, int enc)
  41. {
  42. if (!enc) {
  43. if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_OFB_MODE)
  44. enc = 1;
  45. else if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_CFB_MODE)
  46. enc = 1;
  47. }
  48. if (enc)
  49. IDEA_set_encrypt_key(key, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
  50. else {
  51. IDEA_KEY_SCHEDULE tmp;
  52. IDEA_set_encrypt_key(key, &tmp);
  53. IDEA_set_decrypt_key(&tmp, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
  54. OPENSSL_cleanse((unsigned char *)&tmp, sizeof(IDEA_KEY_SCHEDULE));
  55. }
  56. return 1;
  57. }
  58. #endif