blob: c6c676b3c33c88b8e31704abbcf5d5ed4819e8e2 [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
5 *
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +02006 * Copyright (C) 2006-2014, Brainspark B.V.
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
8 * This file is part of PolarSSL (http://www.polarssl.org)
Paul Bakker84f12b72010-07-18 10:13:04 +00009 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakkerb96f1542010-07-18 20:36:00 +000010 *
Paul Bakker77b385e2009-07-28 17:23:11 +000011 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000012 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Paul Bakker5121ce52009-01-03 21:22:43 +000026 */
Paul Bakker40e46942009-01-03 21:51:57 +000027#ifndef POLARSSL_ARC4_H
28#define POLARSSL_ARC4_H
Paul Bakker5121ce52009-01-03 21:22:43 +000029
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020030#if !defined(POLARSSL_CONFIG_FILE)
Paul Bakker90995b52013-06-24 19:20:35 +020031#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020032#else
33#include POLARSSL_CONFIG_FILE
34#endif
Paul Bakker90995b52013-06-24 19:20:35 +020035
Paul Bakker23986e52011-04-24 08:57:21 +000036#include <string.h>
37
Paul Bakker90995b52013-06-24 19:20:35 +020038#if !defined(POLARSSL_ARC4_ALT)
39// Regular implementation
40//
41
Paul Bakker407a0da2013-06-27 14:29:21 +020042#ifdef __cplusplus
43extern "C" {
44#endif
45
Paul Bakker5121ce52009-01-03 21:22:43 +000046/**
47 * \brief ARC4 context structure
48 */
49typedef struct
50{
51 int x; /*!< permutation index */
52 int y; /*!< permutation index */
53 unsigned char m[256]; /*!< permutation table */
54}
55arc4_context;
56
Paul Bakker5121ce52009-01-03 21:22:43 +000057/**
58 * \brief ARC4 key schedule
59 *
60 * \param ctx ARC4 context to be initialized
61 * \param key the secret key
Manuel Pégourié-Gonnardce411252013-09-04 12:28:37 +020062 * \param keylen length of the key, in bytes
Paul Bakker5121ce52009-01-03 21:22:43 +000063 */
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +020064void arc4_setup( arc4_context *ctx, const unsigned char *key,
65 unsigned int keylen );
Paul Bakker5121ce52009-01-03 21:22:43 +000066
67/**
68 * \brief ARC4 cipher function
69 *
70 * \param ctx ARC4 context
Paul Bakkerbaad6502010-03-21 15:42:15 +000071 * \param length length of the input data
72 * \param input buffer holding the input data
73 * \param output buffer for the output data
Paul Bakkerf3ccc682010-03-18 21:21:02 +000074 *
Paul Bakker27caa8a2010-03-21 15:43:59 +000075 * \return 0 if successful
Paul Bakker5121ce52009-01-03 21:22:43 +000076 */
Paul Bakker23986e52011-04-24 08:57:21 +000077int arc4_crypt( arc4_context *ctx, size_t length, const unsigned char *input,
Paul Bakkerbaad6502010-03-21 15:42:15 +000078 unsigned char *output );
Paul Bakker5121ce52009-01-03 21:22:43 +000079
Paul Bakker90995b52013-06-24 19:20:35 +020080#ifdef __cplusplus
81}
82#endif
83
84#else /* POLARSSL_ARC4_ALT */
85#include "arc4_alt.h"
86#endif /* POLARSSL_ARC4_ALT */
87
88#ifdef __cplusplus
89extern "C" {
90#endif
91
Paul Bakker9a736322012-11-14 12:39:52 +000092/**
Paul Bakker5121ce52009-01-03 21:22:43 +000093 * \brief Checkup routine
94 *
95 * \return 0 if successful, or 1 if the test failed
96 */
97int arc4_self_test( int verbose );
98
99#ifdef __cplusplus
100}
101#endif
102
103#endif /* arc4.h */