Home | History | Annotate | Download | only in rc4

Lines Matching full:rc4

1 /* crypto/rc4/rc4test.c */
11 * apply to all code found in this distribution, be it the RC4, RSA,
68 printf("No RC4 support\n");
72 #include <openssl/rc4.h>
133 RC4(&key,data_len[i],&(data[i][0]),obuf);
136 printf("error calculating RC4\n");
156 RC4(&key,i,&(data[3][0]),obuf);
159 printf("error in RC4 length processing\n");
183 RC4(&key,i,&(data[3][0]),obuf);
184 RC4(&key,data_len[3]-i,&(data[3][i]),&(obuf[i]));
187 printf("error in RC4 multi-call processing\n");
217 RC4(&key,sizeof(buf),buf,buf);
223 printf("error in RC4 bulk test\n");