#include <sofia-sip/su_types.h>
Include dependency graph for rc4.h:
Go to the source code of this file.
Data Structures | |
struct | rc4_t |
RC4 context. More... | |
Typedefs | |
typedef uint8_t | rc4_u8 |
Byte. | |
Functions | |
void | rc4_init (const void *seed, isize_t seed_len, rc4_t *state) |
Key RC4 context. | |
void | rc4 (void *buffer, isize_t len, rc4_t *state) |
Generate RC4 stream. |
typedef uint8_t rc4_u8 |
Byte.
void rc4 | ( | void * | buffer, | |
isize_t | len, | |||
rc4_t * | state | |||
) |
Generate RC4 stream.
void rc4_init | ( | const void * | seed, | |
isize_t | seed_len, | |||
rc4_t * | state | |||
) |
Key RC4 context.