HomeSort by relevance Sort by last modified time
    Searched refs:RC4 (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/third_party/tlslite/tlslite/utils/
OpenSSL_RC4.py 1 """OpenSSL/M2Crypto RC4 implementation."""
4 from RC4 import RC4
11 class OpenSSL_RC4(RC4):
14 RC4.__init__(self, key, "openssl")
15 self.rc4 = m2.rc4_new()
16 m2.rc4_set_key(self.rc4, key)
19 m2.rc4_free(self.rc4)
22 return m2.rc4_update(self.rc4, plaintext)
PyCrypto_RC4.py 1 """PyCrypto RC4 implementation."""
4 from RC4 import *
12 class PyCrypto_RC4(RC4):
15 RC4.__init__(self, key, "pycrypto")
Cryptlib_RC4.py 1 """Cryptlib RC4 implementation."""
4 from RC4 import RC4
11 class Cryptlib_RC4(RC4):
14 RC4.__init__(self, key, "cryptlib")
Python_RC4.py 1 """Pure-Python RC4 implementation."""
3 from RC4 import RC4
9 class Python_RC4(RC4):
11 RC4.__init__(self, key, "python")
RC4.py 1 """Abstract class for RC4."""
5 class RC4:
10 self.name = "rc4"
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4.h 1 /* crypto/rc4/rc4.h */
11 * apply to all code found in this distribution, be it the RC4, RSA,
64 #error RC4 is disabled.
83 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
rc4_utl.c 1 /* crypto/rc4/rc4_utl.c -*- mode:C; c-file-style: "eay" -*- */
54 #include <openssl/rc4.h>
59 fips_cipher_abort(RC4);
rc4s.cpp 35 #include <openssl/rc4.h>
59 RC4(&ctx,numm,buffer,buffer);
61 RC4(&ctx,numm,buffer,buffer);
64 RC4(&ctx,num,buffer,buffer);
66 RC4(&ctx,num,buffer,buffer);
69 printf("RC4 (%d bytes) %d %d (%d) - 8 bytes\n",num,
rc4test.c 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]))
    [all...]
rc4speed.c 1 /* crypto/rc4/rc4speed.c */
11 * apply to all code found in this distribution, be it the RC4, RSA,
102 #include <openssl/rc4.h>
204 RC4(&sch,8,buf,buf);
233 printf("Doing RC4 on %ld byte blocks for 10 seconds\n",BUFSIZE);
236 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE);
240 RC4(&sch,BUFSIZE,buf,buf);
242 printf("%ld RC4's of %ld byte blocks in %.2f second\n",
246 printf("RC4 set_key per sec = %12.2f (%9.3fuS)\n",a,1.0e6/a);
247 printf("RC4 bytes per sec = %12.2f (%9.3fuS)\n",c,8.0e6/c)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
rc4.h 1 /* crypto/rc4/rc4.h */
11 * apply to all code found in this distribution, be it the RC4, RSA,
64 #error RC4 is disabled.
83 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
  /external/openssl/crypto/rc4/
rc4.h 1 /* crypto/rc4/rc4.h */
11 * apply to all code found in this distribution, be it the RC4, RSA,
64 #error RC4 is disabled.
83 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
rc4_utl.c 1 /* crypto/rc4/rc4_utl.c -*- mode:C; c-file-style: "eay" -*- */
54 #include <openssl/rc4.h>
59 fips_cipher_abort(RC4);
rc4s.cpp 35 #include <openssl/rc4.h>
59 RC4(&ctx,numm,buffer,buffer);
61 RC4(&ctx,numm,buffer,buffer);
64 RC4(&ctx,num,buffer,buffer);
66 RC4(&ctx,num,buffer,buffer);
69 printf("RC4 (%d bytes) %d %d (%d) - 8 bytes\n",num,
rc4test.c 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]))
    [all...]
rc4speed.c 1 /* crypto/rc4/rc4speed.c */
11 * apply to all code found in this distribution, be it the RC4, RSA,
102 #include <openssl/rc4.h>
204 RC4(&sch,8,buf,buf);
233 printf("Doing RC4 on %ld byte blocks for 10 seconds\n",BUFSIZE);
236 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE);
240 RC4(&sch,BUFSIZE,buf,buf);
242 printf("%ld RC4's of %ld byte blocks in %.2f second\n",
246 printf("RC4 set_key per sec = %12.2f (%9.3fuS)\n",a,1.0e6/a);
247 printf("RC4 bytes per sec = %12.2f (%9.3fuS)\n",c,8.0e6/c)
    [all...]
  /external/openssl/include/openssl/
rc4.h 1 /* crypto/rc4/rc4.h */
11 * apply to all code found in this distribution, be it the RC4, RSA,
64 #error RC4 is disabled.
83 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
  /external/openssh/openbsd-compat/
bsd-arc4random.c 30 #include <openssl/rc4.h>
40 static RC4_KEY rc4; variable
55 RC4(&rc4, sizeof(r), (unsigned char *)&r, (unsigned char *)&r);
68 memset(&rc4, 0, sizeof(rc4));
72 RC4_set_key(&rc4, sizeof(rand_buf), rand_buf);
76 * http://www.wisdom.weizmann.ac.il/~itsik/RC4/Papers/Rc4_ksa.ps
79 RC4(&rc4, sizeof(rand_buf), rand_buf, rand_buf)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
e_rc4_hmac_md5.c 59 #include <openssl/rc4.h>
140 RC4(&key->ks,rc4_off,in,out);
167 RC4(&key->ks,len-rc4_off,out+rc4_off,out+rc4_off);
169 RC4(&key->ks,len-rc4_off,in+rc4_off,out+rc4_off);
180 RC4(&key->ks,rc4_off,in,out);
198 RC4(&key->ks,len-rc4_off,in+rc4_off,out+rc4_off);
e_rc4.c 11 * apply to all code found in this distribution, be it the RC4, RSA,
67 #include <openssl/rc4.h>
134 RC4(&data(ctx)->ks,inl,in,out);
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/asm/
rc4-s390x.pl 46 # void RC4(RC4_KEY *key,size_t len,const void *inp,void *out)
61 .globl RC4
62 .type RC4,\@function
64 RC4:
155 .size RC4,.-RC4
156 .string "RC4 for s390x, CRYPTOGAMS by <appro\@openssl.org>"
230 .string "rc4(8x,char)"
  /external/openssl/crypto/evp/
e_rc4_hmac_md5.c 59 #include <openssl/rc4.h>
140 RC4(&key->ks,rc4_off,in,out);
167 RC4(&key->ks,len-rc4_off,out+rc4_off,out+rc4_off);
169 RC4(&key->ks,len-rc4_off,in+rc4_off,out+rc4_off);
180 RC4(&key->ks,rc4_off,in,out);
198 RC4(&key->ks,len-rc4_off,in+rc4_off,out+rc4_off);
e_rc4.c 11 * apply to all code found in this distribution, be it the RC4, RSA,
67 #include <openssl/rc4.h>
134 RC4(&data(ctx)->ks,inl,in,out);
  /external/openssl/crypto/rc4/asm/
rc4-s390x.pl 46 # void RC4(RC4_KEY *key,size_t len,const void *inp,void *out)
61 .globl RC4
62 .type RC4,\@function
64 RC4:
155 .size RC4,.-RC4
156 .string "RC4 for s390x, CRYPTOGAMS by <appro\@openssl.org>"
230 .string "rc4(8x,char)"
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_prng.h 11 #ifdef RC4
55 #ifdef RC4
56 struct rc4_prng rc4; member in union:Prng_state
145 #ifdef RC4

Completed in 240 milliseconds

1 2 3