source: EcnlProtoTool/trunk/openssl-1.1.0e/include/openssl/camellia.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr
File size: 3.1 KB
Line 
1/*
2 * Copyright 2006-2016 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#ifndef HEADER_CAMELLIA_H
11# define HEADER_CAMELLIA_H
12
13# include <openssl/opensslconf.h>
14
15# ifndef OPENSSL_NO_CAMELLIA
16# include <stddef.h>
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21# define CAMELLIA_ENCRYPT 1
22# define CAMELLIA_DECRYPT 0
23
24/*
25 * Because array size can't be a const in C, the following two are macros.
26 * Both sizes are in bytes.
27 */
28
29/* This should be a hidden type, but EVP requires that the size be known */
30
31# define CAMELLIA_BLOCK_SIZE 16
32# define CAMELLIA_TABLE_BYTE_LEN 272
33# define CAMELLIA_TABLE_WORD_LEN (CAMELLIA_TABLE_BYTE_LEN / 4)
34
35typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match
36 * with WORD */
37
38struct camellia_key_st {
39 union {
40 double d; /* ensures 64-bit align */
41 KEY_TABLE_TYPE rd_key;
42 } u;
43 int grand_rounds;
44};
45typedef struct camellia_key_st CAMELLIA_KEY;
46
47int Camellia_set_key(const unsigned char *userKey, const int bits,
48 CAMELLIA_KEY *key);
49
50void Camellia_encrypt(const unsigned char *in, unsigned char *out,
51 const CAMELLIA_KEY *key);
52void Camellia_decrypt(const unsigned char *in, unsigned char *out,
53 const CAMELLIA_KEY *key);
54
55void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out,
56 const CAMELLIA_KEY *key, const int enc);
57void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out,
58 size_t length, const CAMELLIA_KEY *key,
59 unsigned char *ivec, const int enc);
60void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out,
61 size_t length, const CAMELLIA_KEY *key,
62 unsigned char *ivec, int *num, const int enc);
63void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out,
64 size_t length, const CAMELLIA_KEY *key,
65 unsigned char *ivec, int *num, const int enc);
66void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out,
67 size_t length, const CAMELLIA_KEY *key,
68 unsigned char *ivec, int *num, const int enc);
69void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out,
70 size_t length, const CAMELLIA_KEY *key,
71 unsigned char *ivec, int *num);
72void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out,
73 size_t length, const CAMELLIA_KEY *key,
74 unsigned char ivec[CAMELLIA_BLOCK_SIZE],
75 unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE],
76 unsigned int *num);
77
78# ifdef __cplusplus
79}
80# endif
81# endif
82
83#endif
Note: See TracBrowser for help on using the repository browser.