blob: e5c512d911588cd11d7bb7f61e1256ebf2e17a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* ISC license. */
/* Thanks to Thomas Pornin <pornin@bolet.org> */
#include <skalibs/bytestr.h>
#include <skalibs/rc4.h>
void rc4_init (RC4Schedule *r, char const *key, size_t ksize)
{
size_t j = 0 ;
register unsigned int i = 0 ;
register unsigned char c = 0;
r->x = r->y = 0 ;
for (; i < 256 ; i++) r->tab[i] = i ;
for (i = 0 ; i < 256 ; i++)
{
unsigned char t = r->tab[i] ;
c = T8(c + (unsigned char)key[j] + t) ;
r->tab[i] = r->tab[c] ;
r->tab[c] = t ;
if (++j == ksize) j = 0 ;
}
{
char tmp[RC4_THROWAWAY] ;
rc4(r, tmp, tmp, RC4_THROWAWAY) ;
}
}
|