116f3ce9741eac02776f6f3e99396bf6fc767e9f
[openssl.git] / crypto / include / internal / aria.h
1 /*
2  * Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 /* ====================================================================
11  * Copyright (c) 2017 Oracle and/or its affiliates.  All rights reserved.
12  */
13
14  /* Copyright (c) 2017 National Security Resarch Institute.  All rights reserved. */
15
16 #ifndef HEADER_ARIA_H
17 # define HEADER_ARIA_H
18
19 # include <openssl/opensslconf.h>
20
21 # ifdef OPENSSL_NO_ARIA
22 #  error ARIA is disabled.
23 # endif
24
25 # define ARIA_ENCRYPT     1
26 # define ARIA_DECRYPT     0
27
28 # define ARIA_BLOCK_SIZE    16  /* Size of each encryption/decription block */
29 # define ARIA_MAX_KEYS      17  /* Number of keys needed in the worst case  */
30
31 # ifdef  __cplusplus
32 extern "C" {
33 # endif
34
35 typedef union {
36     unsigned char c[ARIA_BLOCK_SIZE];
37     unsigned int u[ARIA_BLOCK_SIZE / sizeof(unsigned int)];
38 } ARIA_u128;
39
40 typedef unsigned char ARIA_c128[ARIA_BLOCK_SIZE];
41
42 struct aria_key_st {
43     ARIA_u128 rd_key[ARIA_MAX_KEYS];
44     unsigned int rounds;
45 };
46 typedef struct aria_key_st ARIA_KEY;
47
48
49 int aria_set_encrypt_key(const unsigned char *userKey, const int bits,
50                          ARIA_KEY *key);
51 int aria_set_decrypt_key(const unsigned char *userKey, const int bits,
52                          ARIA_KEY *key);
53
54 void aria_encrypt(const unsigned char *in, unsigned char *out,
55                   const ARIA_KEY *key);
56
57 # ifdef  __cplusplus
58 }
59 # endif
60
61 #endif