cmll_misc.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright 2006-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 <openssl/opensslv.h>
  10. #include <openssl/camellia.h>
  11. #include "cmll_locl.h"
  12. int Camellia_set_key(const unsigned char *userKey, const int bits,
  13. CAMELLIA_KEY *key)
  14. {
  15. if (!userKey || !key)
  16. return -1;
  17. if (bits != 128 && bits != 192 && bits != 256)
  18. return -2;
  19. key->grand_rounds = Camellia_Ekeygen(bits, userKey, key->u.rd_key);
  20. return 0;
  21. }
  22. void Camellia_encrypt(const unsigned char *in, unsigned char *out,
  23. const CAMELLIA_KEY *key)
  24. {
  25. Camellia_EncryptBlock_Rounds(key->grand_rounds, in, key->u.rd_key, out);
  26. }
  27. void Camellia_decrypt(const unsigned char *in, unsigned char *out,
  28. const CAMELLIA_KEY *key)
  29. {
  30. Camellia_DecryptBlock_Rounds(key->grand_rounds, in, key->u.rd_key, out);
  31. }