0cbcba29d330ca423aeffdf6d79de4410036d650
[openssl.git] / crypto / camellia / cmll_locl.h
1 /* ====================================================================
2  * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) .
3  * ALL RIGHTS RESERVED.
4  *
5  * Intellectual Property information for Camellia:
6  *     http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html
7  *
8  * News Release for Announcement of Camellia open source:
9  *     http://www.ntt.co.jp/news/news06e/0604/060413a.html
10  *
11  * The Camellia Code included herein is developed by
12  * NTT (Nippon Telegraph and Telephone Corporation), and is contributed
13  * to the OpenSSL project.
14  *
15  * The Camellia Code is licensed pursuant to the OpenSSL open source
16  * license provided below.
17  */
18 /* ====================================================================
19  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
20  *
21  * Redistribution and use in source and binary forms, with or without
22  * modification, are permitted provided that the following conditions
23  * are met:
24  *
25  * 1. Redistributions of source code must retain the above copyright
26  *    notice, this list of conditions and the following disclaimer.
27  *
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in
30  *    the documentation and/or other materials provided with the
31  *    distribution.
32  *
33  * 3. All advertising materials mentioning features or use of this
34  *    software must display the following acknowledgment:
35  *    "This product includes software developed by the OpenSSL Project
36  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
37  *
38  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
39  *    endorse or promote products derived from this software without
40  *    prior written permission. For written permission, please contact
41  *    openssl-core@openssl.org.
42  *
43  * 5. Products derived from this software may not be called "OpenSSL"
44  *    nor may "OpenSSL" appear in their names without prior written
45  *    permission of the OpenSSL Project.
46  *
47  * 6. Redistributions of any form whatsoever must retain the following
48  *    acknowledgment:
49  *    "This product includes software developed by the OpenSSL Project
50  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
51  *
52  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
53  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
55  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
56  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
58  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
59  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
61  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
62  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
63  * OF THE POSSIBILITY OF SUCH DAMAGE.
64  * ====================================================================
65  */
66
67 #ifndef HEADER_CAMELLIA_LOCL_H
68 # define HEADER_CAMELLIA_LOCL_H
69
70 typedef unsigned int u32;
71 typedef unsigned char u8;
72
73 int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey,
74                      KEY_TABLE_TYPE keyTable);
75 void Camellia_EncryptBlock_Rounds(int grandRounds, const u8 plaintext[],
76                                   const KEY_TABLE_TYPE keyTable,
77                                   u8 ciphertext[]);
78 void Camellia_DecryptBlock_Rounds(int grandRounds, const u8 ciphertext[],
79                                   const KEY_TABLE_TYPE keyTable,
80                                   u8 plaintext[]);
81 void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[],
82                            const KEY_TABLE_TYPE keyTable, u8 ciphertext[]);
83 void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[],
84                            const KEY_TABLE_TYPE keyTable, u8 plaintext[]);
85 #endif                          /* #ifndef HEADER_CAMELLIA_LOCL_H */