HomeSort by: relevance | last modified time | path
    Searched refs:rc4 (Results 1 - 25 of 65) sorted by relevancy

1 2 3

  /src/tests/crypto/libcrypto/rc4/
Makefile 4 HELPER_DIR= rc4
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_rc4.h 10 #include <openssl/rc4.h>
cipher_rc4_hmac_md5.h 10 #include <openssl/rc4.h>
cipher_rc4.c 10 /* Dispatch functions for RC4 ciphers */
13 * RC4 low level APIs are deprecated for public use, but still ok for internal
117 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream)
119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_rc4.h 10 #include <openssl/rc4.h>
cipher_rc4_hmac_md5.h 10 #include <openssl/rc4.h>
cipher_rc4.c 10 /* Dispatch functions for RC4 ciphers */
13 * RC4 low level APIs are deprecated for public use, but still ok for internal
119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream)
121 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
  /src/external/bsd/wpa/dist/src/crypto/
crypto_internal-cipher.c 24 } rc4; member in union:crypto_cipher::__anon8300
57 if (key_len > sizeof(ctx->u.rc4.key)) {
61 ctx->u.rc4.keylen = key_len;
62 os_memcpy(ctx->u.rc4.key, key, key_len);
112 rc4_skip(ctx->u.rc4.key, ctx->u.rc4.keylen,
113 ctx->u.rc4.used_bytes, crypt, len);
114 ctx->u.rc4.used_bytes += len;
176 rc4_skip(ctx->u.rc4.key, ctx->u.rc4.keylen
    [all...]
crypto_libtomcrypt.c 289 int rc4; member in struct:crypto_cipher
296 } rc4; member in union:crypto_cipher::__anon8307
306 int idx, res, rc4 = 0; local
323 rc4 = 1;
333 if (rc4) {
334 ctx->rc4 = 1;
335 if (key_len > sizeof(ctx->u.rc4.key)) {
339 ctx->u.rc4.keylen = key_len;
340 os_memcpy(ctx->u.rc4.key, key, key_len);
359 if (ctx->rc4) {
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/rc4/asm/
rc4-md5-x86_64.pl 19 # This is RC4+MD5 "stitch" implementation. The idea, as spelled in
23 # processor resources better and achieve better performance. RC4
24 # instruction sequence is virtually identical to rc4-x86_64.pl, which
27 # minimize register usage, which was used as "main thread" with RC4
28 # weaved into it, one RC4 round per one MD5 round. In addition to the
30 # ossl_md5_block_asm_data_order and RC4. Below are performance numbers in
34 # RC4 MD5 RC4+MD5 stitch gain
46 # (*) rc4-x86_64.pl delivers 5.3 on Opteron, so real improvement
50 my ($rc4,$md5)=(1,1); # what to generate
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/rc4/asm/
rc4-md5-x86_64.pl 19 # This is RC4+MD5 "stitch" implementation. The idea, as spelled in
23 # processor resources better and achieve better performance. RC4
24 # instruction sequence is virtually identical to rc4-x86_64.pl, which
27 # minimize register usage, which was used as "main thread" with RC4
28 # weaved into it, one RC4 round per one MD5 round. In addition to the
30 # ossl_md5_block_asm_data_order and RC4. Below are performance numbers in
34 # RC4 MD5 RC4+MD5 stitch gain
46 # (*) rc4-x86_64.pl delivers 5.3 on Opteron, so real improvement
50 my ($rc4,$md5)=(1,1); # what to generate
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/rc4/asm/
rc4-md5-x86_64.pl 19 # This is RC4+MD5 "stitch" implementation. The idea, as spelled in
23 # processor resources better and achieve better performance. RC4
24 # instruction sequence is virtually identical to rc4-x86_64.pl, which
27 # minimize register usage, which was used as "main thread" with RC4
28 # weaved into it, one RC4 round per one MD5 round. In addition to the
30 # md5_block_asm_data_order and RC4. Below are performance numbers in
34 # RC4 MD5 RC4+MD5 stitch gain
46 # (*) rc4-x86_64.pl delivers 5.3 on Opteron, so real improvement
50 my ($rc4,$md5)=(1,1); # what to generate
    [all...]
  /src/tests/crypto/libcrypto/
t_ciphers.sh 82 atf_test_case rc4
85 atf_set "descr" "Checks RC4 cipher"
119 atf_add_test_case rc4
Makefile 6 rc2 rc4 rsa srp threads
  /src/crypto/external/bsd/heimdal/dist/include/
crypto-headers.h 17 #include <openssl/rc4.h>
51 #include <hcrypto/rc4.h>
  /src/crypto/external/apache2/openssl/dist/crypto/rc4/
rc4_skey.c 11 * RC4 low level APIs are deprecated for public use, but still ok for internal
16 #include <openssl/rc4.h>
23 return "rc4(char)";
25 return "rc4(int)";
29 * RC4 as implemented from a posting from
31 * Subject: RC4 Algorithm revealed.
rc4_enc.c 11 * RC4 low level APIs are deprecated for public use, but still ok for internal
16 #include <openssl/rc4.h>
20 * RC4 as implemented from a posting from
22 * Subject: RC4 Algorithm revealed.
27 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
  /src/crypto/external/bsd/openssl/dist/crypto/rc4/
rc4_skey.c 11 * RC4 low level APIs are deprecated for public use, but still ok for internal
16 #include <openssl/rc4.h>
23 return "rc4(char)";
25 return "rc4(int)";
29 * RC4 as implemented from a posting from
31 * Subject: RC4 Algorithm revealed.
rc4_enc.c 11 * RC4 low level APIs are deprecated for public use, but still ok for internal
16 #include <openssl/rc4.h>
20 * RC4 as implemented from a posting from
22 * Subject: RC4 Algorithm revealed.
27 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
  /src/crypto/external/bsd/openssl.old/dist/crypto/rc4/
rc4_skey.c 10 #include <openssl/rc4.h>
17 return "rc4(char)";
19 return "rc4(int)";
23 * RC4 as implemented from a posting from
25 * Subject: RC4 Algorithm revealed.
rc4_enc.c 10 #include <openssl/rc4.h>
14 * RC4 as implemented from a posting from
16 * Subject: RC4 Algorithm revealed.
21 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
e_rc4.c 11 * RC4 low level APIs are deprecated for public use, but still ok for internal
23 #include <openssl/rc4.h>
91 RC4(&data(ctx)->ks, inl, in, out);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rc4.c 1 /* $NetBSD: rc4.c,v 1.2 2017/01/28 21:31:47 christos Exp $ */
41 #include <rc4.h>
65 RC4(RC4_KEY *key, const int len, const unsigned char *in, unsigned char *out)
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
e_rc4.c 11 * RC4 low level APIs are deprecated for public use, but still ok for internal
23 # include <openssl/rc4.h>
91 RC4(&data(ctx)->ks, inl, in, out);
  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
e_rc4.c 17 # include <openssl/rc4.h>
79 RC4(&data(ctx)->ks, inl, in, out);

Completed in 39 milliseconds

1 2 3