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>
127 RC4(&key,data_len[i],&(data[i][0]),obuf);
130 printf("error calculating RC4\n");
150 RC4(&key,i,&(data[3][0]),obuf);
153 printf("error in RC4 length processing\n");
177 RC4(&key,i,&(data[3][0]),obuf);
178 RC4(&key,data_len[3]-i,&(data[3][i]),&(obuf[i]));
181 printf("error in RC4 multi-call processing\n");
211 RC4(&key,sizeof(buf),buf,buf);
217 printf("error in RC4 bulk test\n");