53 #ifndef MBEDTLS_ARC4_H
54 #define MBEDTLS_ARC4_H
56 #if !defined(MBEDTLS_CONFIG_FILE)
59 #include MBEDTLS_CONFIG_FILE
64 #define MBEDTLS_ERR_ARC4_HW_ACCEL_FAILED -0x0019
66 #if !defined(MBEDTLS_ARC4_ALT)
126 unsigned int keylen );
144 unsigned char *output );
151 #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.