Home
last modified time | relevance | path

Searched refs:rc4 (Results 1 - 25 of 48) sorted by relevance

12

/third_party/node/deps/openssl/openssl/crypto/rc4/asm/
H A Drc4-md5-x86_64.pl24 # instruction sequence is virtually identical to rc4-x86_64.pl, which
46 # (*) rc4-x86_64.pl delivers 5.3 on Opteron, so real improvement
50 my ($rc4,$md5)=(1,1); # what to generate?
53 # to be able to use 'openssl speed rc4' for
74 if ($rc4 && !$md5) {
77 } elsif ($md5 && !$rc4) {
148 if ($rc4) {
216 #rc4# add $TX[0]#b,$YY#b
217 #rc4# lea ($dat,$XX[0],4),$XX[1]
244 $code.=" movdqu ($in0),%xmm2\n" if ($rc4
[all...]
/third_party/openssl/crypto/rc4/asm/
H A Drc4-md5-x86_64.pl24 # instruction sequence is virtually identical to rc4-x86_64.pl, which
46 # (*) rc4-x86_64.pl delivers 5.3 on Opteron, so real improvement
50 my ($rc4,$md5)=(1,1); # what to generate?
53 # to be able to use 'openssl speed rc4' for
74 if ($rc4 && !$md5) {
77 } elsif ($md5 && !$rc4) {
148 if ($rc4) {
216 #rc4# add $TX[0]#b,$YY#b
217 #rc4# lea ($dat,$XX[0],4),$XX[1]
244 $code.=" movdqu ($in0),%xmm2\n" if ($rc4
[all...]
/third_party/ffmpeg/libavformat/
H A Dasfcrypt.c28 #include "libavutil/rc4.h"
151 struct AVRC4 *rc4; in ff_asfcrypt_dec() local
165 rc4 = av_rc4_alloc(); in ff_asfcrypt_dec()
166 if (!des || !rc4) { in ff_asfcrypt_dec()
168 av_freep(&rc4); in ff_asfcrypt_dec()
172 av_rc4_init(rc4, key, 12 * 8, 1); in ff_asfcrypt_dec()
173 av_rc4_crypt(rc4, (uint8_t *)rc4buff, NULL, sizeof(rc4buff), NULL, 1); in ff_asfcrypt_dec()
182 av_rc4_init(rc4, (uint8_t *)&packetkey, 64, 1); in ff_asfcrypt_dec()
183 av_rc4_crypt(rc4, data, data, len, NULL, 1); in ff_asfcrypt_dec()
194 av_free(rc4); in ff_asfcrypt_dec()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dcrypto_internal-cipher.c24 } rc4; member
57 if (key_len > sizeof(ctx->u.rc4.key)) { in crypto_cipher_init()
61 ctx->u.rc4.keylen = key_len; in crypto_cipher_init()
62 os_memcpy(ctx->u.rc4.key, key, key_len); in crypto_cipher_init()
112 rc4_skip(ctx->u.rc4.key, ctx->u.rc4.keylen, in crypto_cipher_encrypt()
113 ctx->u.rc4.used_bytes, crypt, len); in crypto_cipher_encrypt()
114 ctx->u.rc4.used_bytes += len; in crypto_cipher_encrypt()
176 rc4_skip(ctx->u.rc4.key, ctx->u.rc4 in crypto_cipher_decrypt()
[all...]
H A Dcrypto_libtomcrypt.c289 int rc4; member
296 } rc4; member
306 int idx, res, rc4 = 0; in crypto_cipher_init() local
323 rc4 = 1; in crypto_cipher_init()
333 if (rc4) { in crypto_cipher_init()
334 ctx->rc4 = 1; in crypto_cipher_init()
335 if (key_len > sizeof(ctx->u.rc4.key)) { in crypto_cipher_init()
339 ctx->u.rc4.keylen = key_len; in crypto_cipher_init()
340 os_memcpy(ctx->u.rc4.key, key, key_len); in crypto_cipher_init()
359 if (ctx->rc4) { in crypto_cipher_encrypt()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dcrypto_internal-cipher.c24 } rc4; member
57 if (key_len > sizeof(ctx->u.rc4.key)) { in crypto_cipher_init()
61 ctx->u.rc4.keylen = key_len; in crypto_cipher_init()
62 os_memcpy(ctx->u.rc4.key, key, key_len); in crypto_cipher_init()
112 rc4_skip(ctx->u.rc4.key, ctx->u.rc4.keylen, in crypto_cipher_encrypt()
113 ctx->u.rc4.used_bytes, crypt, len); in crypto_cipher_encrypt()
114 ctx->u.rc4.used_bytes += len; in crypto_cipher_encrypt()
176 rc4_skip(ctx->u.rc4.key, ctx->u.rc4 in crypto_cipher_decrypt()
[all...]
H A Dcrypto_libtomcrypt.c289 int rc4; member
296 } rc4; member
306 int idx, res, rc4 = 0; in crypto_cipher_init() local
323 rc4 = 1; in crypto_cipher_init()
333 if (rc4) { in crypto_cipher_init()
334 ctx->rc4 = 1; in crypto_cipher_init()
335 if (key_len > sizeof(ctx->u.rc4.key)) { in crypto_cipher_init()
339 ctx->u.rc4.keylen = key_len; in crypto_cipher_init()
340 os_memcpy(ctx->u.rc4.key, key, key_len); in crypto_cipher_init()
359 if (ctx->rc4) { in crypto_cipher_encrypt()
[all...]
/third_party/ffmpeg/tools/
H A Dcrypto_bench.c84 #include "libavutil/rc4.h"
176 static struct AVRC4 *rc4; in run_lavu_rc4() local
177 if (!rc4 && !(rc4 = av_rc4_alloc())) in run_lavu_rc4()
179 av_rc4_init(rc4, hardcoded_key, 128, 0); in run_lavu_rc4()
180 av_rc4_crypt(rc4, output, input, size, NULL, 0); in run_lavu_rc4()
208 #include <openssl/rc4.h>
283 RC4_KEY rc4; in run_crypto_rc4() local
285 RC4_set_key(&rc4, 16, hardcoded_key); in run_crypto_rc4()
286 RC4(&rc4, siz in run_crypto_rc4()
423 mbedtls_arc4_context rc4; run_mbedcrypto_rc4() local
534 rc4_state rc4; run_tomcrypt_rc4() local
[all...]
/third_party/alsa-lib/src/pcm/
H A Dpcm.c8185 OBSOLETE1(snd_pcm_hw_params_get_access, ALSA_0.9, ALSA_0.9.0rc4);
8186 OBSOLETE1(snd_pcm_hw_params_set_access_first, ALSA_0.9, ALSA_0.9.0rc4);
8187 OBSOLETE1(snd_pcm_hw_params_set_access_last, ALSA_0.9, ALSA_0.9.0rc4);
8189 OBSOLETE1(snd_pcm_hw_params_get_format, ALSA_0.9, ALSA_0.9.0rc4);
8190 OBSOLETE1(snd_pcm_hw_params_set_format_first, ALSA_0.9, ALSA_0.9.0rc4);
8191 OBSOLETE1(snd_pcm_hw_params_set_format_last, ALSA_0.9, ALSA_0.9.0rc4);
8193 OBSOLETE1(snd_pcm_hw_params_get_subformat, ALSA_0.9, ALSA_0.9.0rc4);
8194 OBSOLETE1(snd_pcm_hw_params_set_subformat_first, ALSA_0.9, ALSA_0.9.0rc4);
8195 OBSOLETE1(snd_pcm_hw_params_set_subformat_last, ALSA_0.9, ALSA_0.9.0rc4);
8197 OBSOLETE1(snd_pcm_hw_params_get_channels, ALSA_0.9, ALSA_0.9.0rc4);
[all...]
/third_party/node/deps/openssl/openssl/crypto/pem/
H A Dpvkfmt.c831 EVP_CIPHER *rc4 = NULL; in do_PVK_body_key() local
873 if ((rc4 = EVP_CIPHER_fetch(libctx, "RC4", propq)) == NULL) in do_PVK_body_key()
875 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in do_PVK_body_key()
885 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in do_PVK_body_key()
908 EVP_CIPHER_free(rc4); in do_PVK_body_key()
1008 EVP_CIPHER *rc4 = NULL; in i2b_PVK() local
1069 if ((rc4 = EVP_CIPHER_fetch(libctx, "RC4", propq)) == NULL) in i2b_PVK()
1074 if (!EVP_EncryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in i2b_PVK()
1093 EVP_CIPHER_free(rc4); in i2b_PVK()
/third_party/openssl/crypto/pem/
H A Dpvkfmt.c831 EVP_CIPHER *rc4 = NULL; in do_PVK_body_key() local
873 if ((rc4 = EVP_CIPHER_fetch(libctx, "RC4", propq)) == NULL) in do_PVK_body_key()
875 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in do_PVK_body_key()
885 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in do_PVK_body_key()
908 EVP_CIPHER_free(rc4); in do_PVK_body_key()
1008 EVP_CIPHER *rc4 = NULL; in i2b_PVK() local
1069 if ((rc4 = EVP_CIPHER_fetch(libctx, "RC4", propq)) == NULL) in i2b_PVK()
1074 if (!EVP_EncryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in i2b_PVK()
1093 EVP_CIPHER_free(rc4); in i2b_PVK()
/third_party/typescript/tests/baselines/reference/
H A DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.js18 var rc4 = undefined % undefined; variable
77 var rc4 = undefined % undefined; variable
H A DcomparisonOperatorWithIdenticalPrimitiveType.js32 var rc4 = d <= d; variable
114 var rc4 = d <= d; variable
H A DcomparisonOperatorWithSubtypeObjectOnProperty.js49 var rc4 = b2 <= a2; variable
149 var rc4 = b2 <= a2; variable
H A DcomparisonOperatorWithSubtypeEnumAndNumber.js27 var rc4 = b <= E.a; variable
98 var rc4 = b <= E.a; variable
H A DcomparisonOperatorWithTypeParameter.js28 var rc4 = t >= v;
105 var rc4 = t >= v;
H A DarithmeticOperatorWithAnyAndNumber.js29 var rc4 = 0 % a; variable
130 var rc4 = 0 % a; variable
H A DarithmeticOperatorWithNullValueAndValidOperands.js37 var rc4 = null % E.a; variable
145 var rc4 = null % E.a; variable
/third_party/node/deps/cares/src/lib/
H A Dares_rand.c66 /* initialize an rc4 key as the last possible fallback. */
153 ares_rand_rc4 rc4; member
202 ares_rc4_init(&state->state.rc4); in ares__init_rand_engine()
315 ares_rc4_prng(&state->state.rc4, buf, len); in ares__rand_bytes_fetch()
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_rc4.c119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream)
121 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
H A Dcipher_rc4.h10 #include <openssl/rc4.h>
H A Dcipher_rc4_hmac_md5.h10 #include <openssl/rc4.h>
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_rc4.c119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream)
121 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
H A Dcipher_rc4.h10 #include <openssl/rc4.h>
H A Dcipher_rc4_hmac_md5.h10 #include <openssl/rc4.h>

Completed in 23 milliseconds

12