i_ecb.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright 1995-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. /*
  10. * IDEA low level APIs are deprecated for public use, but still ok for internal
  11. * use where we're using them to implement the higher level EVP interface, as is
  12. * the case here.
  13. */
  14. #include "internal/deprecated.h"
  15. #include <openssl/idea.h>
  16. #include "idea_local.h"
  17. #include <openssl/opensslv.h>
  18. const char *IDEA_options(void)
  19. {
  20. return "idea(int)";
  21. }
  22. void IDEA_ecb_encrypt(const unsigned char *in, unsigned char *out,
  23. IDEA_KEY_SCHEDULE *ks)
  24. {
  25. unsigned long l0, l1, d[2];
  26. n2l(in, l0);
  27. d[0] = l0;
  28. n2l(in, l1);
  29. d[1] = l1;
  30. IDEA_encrypt(d, ks);
  31. l0 = d[0];
  32. l2n(l0, out);
  33. l1 = d[1];
  34. l2n(l1, out);
  35. l0 = l1 = d[0] = d[1] = 0;
  36. }