blob: ff811f6f5a7c3ef929487d810758afd212af2795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
ARCFOUR cipher (based on a cipher posted on the Usenet in Spring-95).
This cipher is widely believed and has been tested to be equivalent
with the RC4 cipher from RSA Data Security, Inc. (RC4 is a trademark
of RSA Data Security)
*/
#ifndef ARCFOUR_INT_H
#define ARCFOUR_INT_H
#include "arcfour.h"
#define CONFOUNDERLENGTH 8
krb5_keyusage krb5int_arcfour_translate_usage(krb5_keyusage usage);
extern const char *const krb5int_arcfour_l40;
#endif /* ARCFOUR_INT_H */
|