55 #ifndef MBEDTLS_ARC4_H
56 #define MBEDTLS_ARC4_H
58 #if !defined(MBEDTLS_CONFIG_FILE)
61 #include MBEDTLS_CONFIG_FILE
66 #define MBEDTLS_ERR_ARC4_HW_ACCEL_FAILED -0x0019
68 #if !defined(MBEDTLS_ARC4_ALT)
128 unsigned int keylen );
146 unsigned char *output );
153 #include "arc4_alt.h"
int mbedtls_arc4_crypt(mbedtls_arc4_context *ctx, size_t length, const unsigned char *input, unsigned char *output)
ARC4 cipher function.
Configuration options (set of defines)
void mbedtls_arc4_init(mbedtls_arc4_context *ctx)
Initialize ARC4 context.
void mbedtls_arc4_free(mbedtls_arc4_context *ctx)
Clear ARC4 context.
void mbedtls_arc4_setup(mbedtls_arc4_context *ctx, const unsigned char *key, unsigned int keylen)
ARC4 key schedule.
int mbedtls_arc4_self_test(int verbose)
Checkup routine.