]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/seed.h
Fix header file include guard names
[thirdparty/openssl.git] / include / openssl / seed.h
CommitLineData
21dcbebc
RS
1/*
2 * Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
48f4ad77 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
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
96afc1cf 10/*
0f113f3e 11 * Copyright (c) 2007 KISA(Korea Information Security Agency). All rights reserved.
96afc1cf
BM
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Neither the name of author nor the names of its contributors may
19 * be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
96afc1cf
BM
33 */
34
ae4186b0
DMSP
35#ifndef OPENSSL_SEED_H
36# define OPENSSL_SEED_H
96afc1cf 37
0f113f3e 38# include <openssl/opensslconf.h>
3c27208f
RS
39
40# ifndef OPENSSL_NO_SEED
0f113f3e
MC
41# include <openssl/e_os2.h>
42# include <openssl/crypto.h>
96afc1cf 43
3c27208f
RS
44#ifdef __cplusplus
45extern "C" {
46#endif
96afc1cf 47
68d39f3c 48/* look whether we need 'long' to get 32 bits */
0f113f3e
MC
49# ifdef AES_LONG
50# ifndef SEED_LONG
51# define SEED_LONG 1
52# endif
96afc1cf 53# endif
96afc1cf 54
b379fe6c 55# include <sys/types.h>
96afc1cf 56
0f113f3e
MC
57# define SEED_BLOCK_SIZE 16
58# define SEED_KEY_LENGTH 16
96afc1cf 59
96afc1cf 60typedef struct seed_key_st {
0f113f3e 61# ifdef SEED_LONG
96afc1cf 62 unsigned long data[32];
0f113f3e 63# else
96afc1cf 64 unsigned int data[32];
0f113f3e 65# endif
96afc1cf
BM
66} SEED_KEY_SCHEDULE;
67
0f113f3e
MC
68void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
69 SEED_KEY_SCHEDULE *ks);
70
71void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE],
72 unsigned char d[SEED_BLOCK_SIZE],
73 const SEED_KEY_SCHEDULE *ks);
74void SEED_decrypt(const unsigned char s[SEED_BLOCK_SIZE],
75 unsigned char d[SEED_BLOCK_SIZE],
76 const SEED_KEY_SCHEDULE *ks);
77
78void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out,
79 const SEED_KEY_SCHEDULE *ks, int enc);
80void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len,
81 const SEED_KEY_SCHEDULE *ks,
82 unsigned char ivec[SEED_BLOCK_SIZE], int enc);
96afc1cf 83void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out,
0f113f3e
MC
84 size_t len, const SEED_KEY_SCHEDULE *ks,
85 unsigned char ivec[SEED_BLOCK_SIZE], int *num,
86 int enc);
96afc1cf 87void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out,
0f113f3e
MC
88 size_t len, const SEED_KEY_SCHEDULE *ks,
89 unsigned char ivec[SEED_BLOCK_SIZE], int *num);
96afc1cf 90
3c27208f 91# ifdef __cplusplus
96afc1cf 92}
3c27208f
RS
93# endif
94# endif
96afc1cf 95
3c27208f 96#endif