/third_party/node/deps/openssl/openssl/crypto/rc4/asm/ |
H A D | rc4-md5-x86_64.pl | 24 # 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 D | rc4-md5-x86_64.pl | 24 # 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 D | asfcrypt.c | 28 #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 D | crypto_internal-cipher.c | 24 } 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 D | crypto_libtomcrypt.c | 289 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 D | crypto_internal-cipher.c | 24 } 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 D | crypto_libtomcrypt.c | 289 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 D | crypto_bench.c | 84 #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 D | pcm.c | 8185 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 D | pvkfmt.c | 831 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 D | pvkfmt.c | 831 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 D | arithmeticOperatorWithOnlyNullValueOrUndefinedValue.js | 18 var rc4 = undefined % undefined; variable 77 var rc4 = undefined % undefined;
variable
|
H A D | comparisonOperatorWithIdenticalPrimitiveType.js | 32 var rc4 = d <= d; variable 114 var rc4 = d <= d;
variable
|
H A D | comparisonOperatorWithSubtypeObjectOnProperty.js | 49 var rc4 = b2 <= a2; variable 149 var rc4 = b2 <= a2;
variable
|
H A D | comparisonOperatorWithSubtypeEnumAndNumber.js | 27 var rc4 = b <= E.a; variable 98 var rc4 = b <= E.a;
variable
|
H A D | comparisonOperatorWithTypeParameter.js | 28 var rc4 = t >= v; 105 var rc4 = t >= v;
|
H A D | arithmeticOperatorWithAnyAndNumber.js | 29 var rc4 = 0 % a; variable 130 var rc4 = 0 % a;
variable
|
H A D | arithmeticOperatorWithNullValueAndValidOperands.js | 37 var rc4 = null % E.a; variable 145 var rc4 = null % E.a;
variable
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_rand.c | 66 /* 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 D | cipher_rc4.c | 119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream) 121 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
|
H A D | cipher_rc4.h | 10 #include <openssl/rc4.h>
|
H A D | cipher_rc4_hmac_md5.h | 10 #include <openssl/rc4.h>
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_rc4.c | 119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream) 121 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
|
H A D | cipher_rc4.h | 10 #include <openssl/rc4.h>
|
H A D | cipher_rc4_hmac_md5.h | 10 #include <openssl/rc4.h>
|