aria.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
  4. *
  5. * Licensed under the Apache License 2.0 (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. /* Copyright (c) 2017 National Security Research Institute. All rights reserved. */
  11. #ifndef OSSL_CRYPTO_ARIA_H
  12. # define OSSL_CRYPTO_ARIA_H
  13. # include <openssl/opensslconf.h>
  14. # ifdef OPENSSL_NO_ARIA
  15. # error ARIA is disabled.
  16. # endif
  17. # define ARIA_ENCRYPT 1
  18. # define ARIA_DECRYPT 0
  19. # define ARIA_BLOCK_SIZE 16 /* Size of each encryption/decryption block */
  20. # define ARIA_MAX_KEYS 17 /* Number of keys needed in the worst case */
  21. typedef union {
  22. unsigned char c[ARIA_BLOCK_SIZE];
  23. unsigned int u[ARIA_BLOCK_SIZE / sizeof(unsigned int)];
  24. } ARIA_u128;
  25. typedef unsigned char ARIA_c128[ARIA_BLOCK_SIZE];
  26. struct aria_key_st {
  27. ARIA_u128 rd_key[ARIA_MAX_KEYS];
  28. unsigned int rounds;
  29. };
  30. typedef struct aria_key_st ARIA_KEY;
  31. int aria_set_encrypt_key(const unsigned char *userKey, const int bits,
  32. ARIA_KEY *key);
  33. int aria_set_decrypt_key(const unsigned char *userKey, const int bits,
  34. ARIA_KEY *key);
  35. void aria_encrypt(const unsigned char *in, unsigned char *out,
  36. const ARIA_KEY *key);
  37. #endif