blob: ada6083e06aa739ef4b58b3513270b32b24a973e [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file arc4.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief The ARCFOUR stream cipher
Hanno Beckerbbca8c52017-09-25 14:53:51 +01005 *
6 * \warning ARC4 is considered a weak cipher and its use constitutes a
7 * security risk. We recommend considering stronger ciphers instead.
Darryl Greena40a1012018-01-05 15:33:17 +00008 */
9/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020010 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020011 * SPDX-License-Identifier: Apache-2.0
12 *
13 * Licensed under the Apache License, Version 2.0 (the "License"); you may
14 * not use this file except in compliance with the License.
15 * You may obtain a copy of the License at
16 *
17 * http://www.apache.org/licenses/LICENSE-2.0
18 *
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
Paul Bakkerb96f1542010-07-18 20:36:00 +000024 *
Paul Bakker5121ce52009-01-03 21:22:43 +000025 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020026#ifndef MBEDTLS_ARC4_H
27#define MBEDTLS_ARC4_H
Paul Bakker5121ce52009-01-03 21:22:43 +000028
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020029#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010030#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020031#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020032#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020033#endif
Paul Bakker90995b52013-06-24 19:20:35 +020034
Rich Evans00ab4702015-02-06 13:43:58 +000035#include <stddef.h>
Paul Bakker23986e52011-04-24 08:57:21 +000036
Paul Bakker407a0da2013-06-27 14:29:21 +020037#ifdef __cplusplus
38extern "C" {
39#endif
40
Ron Eldorb2aacec2017-05-18 16:53:08 +030041#if !defined(MBEDTLS_ARC4_ALT)
42// Regular implementation
43//
44
Paul Bakker5121ce52009-01-03 21:22:43 +000045/**
Hanno Beckerbbca8c52017-09-25 14:53:51 +010046 * \brief ARC4 context structure
47 *
48 * \warning ARC4 is considered a weak cipher and its use constitutes a
49 * security risk. We recommend considering stronger ciphers instead.
50 *
Paul Bakker5121ce52009-01-03 21:22:43 +000051 */
Dawid Drozd428cc522018-07-24 10:02:47 +020052typedef struct mbedtls_arc4_context
Paul Bakker5121ce52009-01-03 21:22:43 +000053{
54 int x; /*!< permutation index */
55 int y; /*!< permutation index */
56 unsigned char m[256]; /*!< permutation table */
57}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058mbedtls_arc4_context;
Paul Bakker5121ce52009-01-03 21:22:43 +000059
Ron Eldorb2aacec2017-05-18 16:53:08 +030060#else /* MBEDTLS_ARC4_ALT */
61#include "arc4_alt.h"
62#endif /* MBEDTLS_ARC4_ALT */
63
Paul Bakker5121ce52009-01-03 21:22:43 +000064/**
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020065 * \brief Initialize ARC4 context
Paul Bakker5121ce52009-01-03 21:22:43 +000066 *
67 * \param ctx ARC4 context to be initialized
Hanno Beckerbbca8c52017-09-25 14:53:51 +010068 *
69 * \warning ARC4 is considered a weak cipher and its use constitutes a
70 * security risk. We recommend considering stronger ciphers
71 * instead.
72 *
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020073 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074void mbedtls_arc4_init( mbedtls_arc4_context *ctx );
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020075
76/**
77 * \brief Clear ARC4 context
78 *
79 * \param ctx ARC4 context to be cleared
Hanno Beckerbbca8c52017-09-25 14:53:51 +010080 *
81 * \warning ARC4 is considered a weak cipher and its use constitutes a
82 * security risk. We recommend considering stronger ciphers
83 * instead.
84 *
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020085 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020086void mbedtls_arc4_free( mbedtls_arc4_context *ctx );
Paul Bakkerc7ea99a2014-06-18 11:12:03 +020087
88/**
89 * \brief ARC4 key schedule
90 *
91 * \param ctx ARC4 context to be setup
Paul Bakker5121ce52009-01-03 21:22:43 +000092 * \param key the secret key
Manuel Pégourié-Gonnardce411252013-09-04 12:28:37 +020093 * \param keylen length of the key, in bytes
Hanno Beckerbbca8c52017-09-25 14:53:51 +010094 *
95 * \warning ARC4 is considered a weak cipher and its use constitutes a
96 * security risk. We recommend considering stronger ciphers
97 * instead.
98 *
Paul Bakker5121ce52009-01-03 21:22:43 +000099 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200100void mbedtls_arc4_setup( mbedtls_arc4_context *ctx, const unsigned char *key,
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200101 unsigned int keylen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000102
103/**
104 * \brief ARC4 cipher function
105 *
106 * \param ctx ARC4 context
Paul Bakkerbaad6502010-03-21 15:42:15 +0000107 * \param length length of the input data
108 * \param input buffer holding the input data
109 * \param output buffer for the output data
Paul Bakkerf3ccc682010-03-18 21:21:02 +0000110 *
Paul Bakker27caa8a2010-03-21 15:43:59 +0000111 * \return 0 if successful
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100112 *
113 * \warning ARC4 is considered a weak cipher and its use constitutes a
114 * security risk. We recommend considering stronger ciphers
115 * instead.
116 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000117 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200118int mbedtls_arc4_crypt( mbedtls_arc4_context *ctx, size_t length, const unsigned char *input,
Paul Bakkerbaad6502010-03-21 15:42:15 +0000119 unsigned char *output );
Paul Bakker5121ce52009-01-03 21:22:43 +0000120
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500121#if defined(MBEDTLS_SELF_TEST)
122
Paul Bakker9a736322012-11-14 12:39:52 +0000123/**
Paul Bakker5121ce52009-01-03 21:22:43 +0000124 * \brief Checkup routine
125 *
126 * \return 0 if successful, or 1 if the test failed
Hanno Beckerbbca8c52017-09-25 14:53:51 +0100127 *
128 * \warning ARC4 is considered a weak cipher and its use constitutes a
129 * security risk. We recommend considering stronger ciphers
130 * instead.
131 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000132 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200133int mbedtls_arc4_self_test( int verbose );
Paul Bakker5121ce52009-01-03 21:22:43 +0000134
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500135#endif /* MBEDTLS_SELF_TEST */
136
Paul Bakker5121ce52009-01-03 21:22:43 +0000137#ifdef __cplusplus
138}
139#endif
140
141#endif /* arc4.h */