HomeSort by relevance Sort by last modified time
    Searched defs:RC4 (Results 1 - 15 of 15) sorted by null

  /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)"
rc4-x86_64.S 4 .globl RC4
5 .type RC4,@function
7 RC4: orq %rsi,%rsi
519 .size RC4,.-RC4
rc4-ia64.pl 32 # for RC4 encryption. The basic algorithm looks like this:
315 .ident \"rc4-ia64.s, version 3.0\"
464 .type RC4, \@function
465 .global RC4
467 .proc RC4
470 RC4:
752 .endp RC4
rc4-x86_64.pl 12 # 2.22x RC4 tune-up:-) It should be noted though that my hand [as in
101 # but more than likely at the cost of the others (see rc4-586.pl
128 .globl RC4
129 .type RC4,\@function,4
131 RC4: or $len,$len
425 .size RC4,.-RC4
523 .asciz "rc4(8x,int)"
524 .asciz "rc4(8x,char)"
525 .asciz "rc4(16x,int)
    [all...]
  /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)"
rc4-x86_64.S 4 .globl RC4
5 .type RC4,@function
7 RC4: orq %rsi,%rsi
519 .size RC4,.-RC4
rc4-ia64.pl 32 # for RC4 encryption. The basic algorithm looks like this:
315 .ident \"rc4-ia64.s, version 3.0\"
464 .type RC4, \@function
465 .global RC4
467 .proc RC4
470 RC4:
752 .endp RC4
rc4-x86_64.pl 12 # 2.22x RC4 tune-up:-) It should be noted though that my hand [as in
101 # but more than likely at the cost of the others (see rc4-586.pl
128 .globl RC4
129 .type RC4,\@function,4
131 RC4: or $len,$len
425 .size RC4,.-RC4
523 .asciz "rc4(8x,int)"
524 .asciz "rc4(8x,char)"
525 .asciz "rc4(16x,int)
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
Cryptlib_RC4.py 1 """Cryptlib RC4 implementation."""
4 from RC4 import RC4
11 class Cryptlib_RC4(RC4):
14 RC4.__init__(self, key, "cryptlib")
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)
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_enc.c 1 /* crypto/rc4/rc4_enc.c */
11 * apply to all code found in this distribution, be it the RC4, RSA,
59 #include <openssl/rc4.h>
62 /* RC4 as implemented from a posting from
65 * Subject: RC4 Algorithm revealed.
70 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
99 * (**) i.e. according to 'apps/openssl speed rc4' benchmark,
100 * crypto/rc4/rc4speed.c exhibits almost 70% speed-up...
  /external/openssl/crypto/rc4/
rc4_enc.c 1 /* crypto/rc4/rc4_enc.c */
11 * apply to all code found in this distribution, be it the RC4, RSA,
59 #include <openssl/rc4.h>
62 /* RC4 as implemented from a posting from
65 * Subject: RC4 Algorithm revealed.
70 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
99 * (**) i.e. according to 'apps/openssl speed rc4' benchmark,
100 * crypto/rc4/rc4speed.c exhibits almost 70% speed-up...
  /external/dropbear/libtomcrypt/
crypt.tex 197 The RC2 and RC4 symmetric ciphers are not under patents but are under trademark regulations. This means you can use
    [all...]

Completed in 158 milliseconds