d4d97ed2261481e447e0af43fea0f7591e3b5b38
[openssl.git] / include / openssl / rc5.h
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 OPENSSL_RC5_H
11 # define OPENSSL_RC5_H
12 # pragma once
13
14 # include <openssl/macros.h>
15 # if !OPENSSL_API_3
16 #  define HEADER_RC5_H
17 # endif
18
19 # include <openssl/opensslconf.h>
20
21 # ifndef OPENSSL_NO_RC5
22 # ifdef  __cplusplus
23 extern "C" {
24 # endif
25
26 # define RC5_ENCRYPT     1
27 # define RC5_DECRYPT     0
28
29 # define RC5_32_INT unsigned int
30
31 # define RC5_32_BLOCK            8
32 # define RC5_32_KEY_LENGTH       16/* This is a default, max is 255 */
33
34 /*
35  * This are the only values supported.  Tweak the code if you want more The
36  * most supported modes will be RC5-32/12/16 RC5-32/16/8
37  */
38 # define RC5_8_ROUNDS    8
39 # define RC5_12_ROUNDS   12
40 # define RC5_16_ROUNDS   16
41
42 typedef struct rc5_key_st {
43     /* Number of rounds */
44     int rounds;
45     RC5_32_INT data[2 * (RC5_16_ROUNDS + 1)];
46 } RC5_32_KEY;
47
48 int RC5_32_set_key(RC5_32_KEY *key, int len, const unsigned char *data,
49                    int rounds);
50 void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out,
51                         RC5_32_KEY *key, int enc);
52 void RC5_32_encrypt(unsigned long *data, RC5_32_KEY *key);
53 void RC5_32_decrypt(unsigned long *data, RC5_32_KEY *key);
54 void RC5_32_cbc_encrypt(const unsigned char *in, unsigned char *out,
55                         long length, RC5_32_KEY *ks, unsigned char *iv,
56                         int enc);
57 void RC5_32_cfb64_encrypt(const unsigned char *in, unsigned char *out,
58                           long length, RC5_32_KEY *schedule,
59                           unsigned char *ivec, int *num, int enc);
60 void RC5_32_ofb64_encrypt(const unsigned char *in, unsigned char *out,
61                           long length, RC5_32_KEY *schedule,
62                           unsigned char *ivec, int *num);
63
64 # ifdef  __cplusplus
65 }
66 # endif
67 # endif
68
69 #endif