Home
last modified time | relevance | path

Searched refs:rc4 (Results 1 – 25 of 113) sorted by relevance

12345

/third_party/openssl/crypto/rc4/
Dbuild.info5 $RC4ASM_x86=rc4-586.S
6 $RC4ASM_x86_64=rc4-x86_64.s rc4-md5-x86_64.s
7 $RC4ASM_s390x=rc4-s390x.s
8 $RC4ASM_parisc11=rc4-parisc.s
10 $RC4ASM_c64xplus=rc4-c64xplus.s
23 # rc4 functions, so we must include them directly in liblegacy.a
28 GENERATE[rc4-586.S]=asm/rc4-586.pl
29 DEPEND[rc4-586.S]=../perlasm/x86asm.pl
31 GENERATE[rc4-x86_64.s]=asm/rc4-x86_64.pl
32 GENERATE[rc4-md5-x86_64.s]=asm/rc4-md5-x86_64.pl
[all …]
/third_party/openssl/crypto/rc4/asm/
Drc4-md5-x86_64.pl50 my ($rc4,$md5)=(1,1); # what to generate?
74 if ($rc4 && !$md5) {
77 } elsif ($md5 && !$rc4) {
148 if ($rc4) {
244 $code.=" movdqu ($in0),%xmm2\n" if ($rc4 && $j==15);
245 $code.=" add \$$MOD,$XX[0]#b\n" if ($rc4 && $j==15 && $k==$MOD-1);
246 $code.=" pxor $xmm,$xmm\n" if ($rc4 && $j<=1);
266 $code.=<<___ if ($rc4 && $j==15 && $k==$MOD-1);
272 $code.=<<___ if ($rc4 && $j==15);
284 $code.=" movdqu 16($in0),%xmm3\n" if ($rc4 && $j==15);
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
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.keylen, in crypto_cipher_decrypt()
177 ctx->u.rc4.used_bytes, plain, len); in crypto_cipher_decrypt()
178 ctx->u.rc4.used_bytes += len; in crypto_cipher_decrypt()
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/src/crypto/
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.keylen, in crypto_cipher_decrypt()
177 ctx->u.rc4.used_bytes, plain, len); in crypto_cipher_decrypt()
178 ctx->u.rc4.used_bytes += len; in crypto_cipher_decrypt()
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/libavformat/
Dasfcrypt.c150 struct AVRC4 *rc4; in ff_asfcrypt_dec() local
164 rc4 = av_rc4_alloc(); in ff_asfcrypt_dec()
165 if (!des || !rc4) { in ff_asfcrypt_dec()
167 av_freep(&rc4); in ff_asfcrypt_dec()
171 av_rc4_init(rc4, key, 12 * 8, 1); in ff_asfcrypt_dec()
172 av_rc4_crypt(rc4, (uint8_t *)rc4buff, NULL, sizeof(rc4buff), NULL, 1); in ff_asfcrypt_dec()
181 av_rc4_init(rc4, (uint8_t *)&packetkey, 64, 1); in ff_asfcrypt_dec()
182 av_rc4_crypt(rc4, data, data, len, NULL, 1); in ff_asfcrypt_dec()
193 av_free(rc4); in ff_asfcrypt_dec()
/third_party/ffmpeg/tools/
Dcrypto_bench.c176 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()
283 RC4_KEY rc4; in run_crypto_rc4() local
285 RC4_set_key(&rc4, 16, hardcoded_key); in run_crypto_rc4()
286 RC4(&rc4, size, input, output); in run_crypto_rc4()
332 DEFINE_GCRYPT_CYPHER_WRAPPER(rc4, ARCFOUR, STREAM, 16)
423 mbedtls_arc4_context rc4; in run_mbedcrypto_rc4() local
425 mbedtls_arc4_init(&rc4); in run_mbedcrypto_rc4()
[all …]
/third_party/alsa-lib/src/pcm/
Dpcm.c8003 OBSOLETE1(snd_pcm_hw_params_get_access, ALSA_0.9, ALSA_0.9.0rc4);
8004 OBSOLETE1(snd_pcm_hw_params_set_access_first, ALSA_0.9, ALSA_0.9.0rc4);
8005 OBSOLETE1(snd_pcm_hw_params_set_access_last, ALSA_0.9, ALSA_0.9.0rc4);
8007 OBSOLETE1(snd_pcm_hw_params_get_format, ALSA_0.9, ALSA_0.9.0rc4);
8008 OBSOLETE1(snd_pcm_hw_params_set_format_first, ALSA_0.9, ALSA_0.9.0rc4);
8009 OBSOLETE1(snd_pcm_hw_params_set_format_last, ALSA_0.9, ALSA_0.9.0rc4);
8011 OBSOLETE1(snd_pcm_hw_params_get_subformat, ALSA_0.9, ALSA_0.9.0rc4);
8012 OBSOLETE1(snd_pcm_hw_params_set_subformat_first, ALSA_0.9, ALSA_0.9.0rc4);
8013 OBSOLETE1(snd_pcm_hw_params_set_subformat_last, ALSA_0.9, ALSA_0.9.0rc4);
8015 OBSOLETE1(snd_pcm_hw_params_get_channels, ALSA_0.9, ALSA_0.9.0rc4);
[all …]
/third_party/openssl/crypto/pem/
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/
DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.js18 var rc4 = undefined % undefined; variable
77 var rc4 = undefined % undefined;
DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.symbols48 var rc4 = undefined % undefined;
49 >rc4 : Symbol(rc4, Decl(arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts, 16, 3))
DcomparisonOperatorWithSubtypeEnumAndNumber.js27 var rc4 = b <= E.a; variable
98 var rc4 = b <= E.a;
DcomparisonOperatorWithSubtypeObjectOnProperty.js49 var rc4 = b2 <= a2; variable
149 var rc4 = b2 <= a2;
DarithmeticOperatorWithNullValueAndValidOperands.js37 var rc4 = null % E.a; variable
145 var rc4 = null % E.a;
DcomparisonOperatorWithIdenticalPrimitiveType.js32 var rc4 = d <= d; variable
114 var rc4 = d <= d;
DarithmeticOperatorWithAnyAndNumber.js29 var rc4 = 0 % a; variable
130 var rc4 = 0 % a;
DcomparisonOperatorWithTypeParameter.js28 var rc4 = t >= v; variable
105 var rc4 = t >= v;
DarithmeticOperatorWithUndefinedValueAndValidOperands.js37 var rc4 = undefined % E.a; variable
145 var rc4 = undefined % E.a;
/third_party/openssl/providers/implementations/ciphers/
Dcipher_rc4.c119 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 40, 8, 0, stream)
121 IMPLEMENT_cipher(rc4, RC4, RC4_FLAGS, 128, 8, 0, stream)
/third_party/alsa-lib/src/
DVersions.in18 ALSA_0.9.0rc4 {
98 } ALSA_0.9.0rc4;
/third_party/node/deps/cares/src/lib/
Dares_query.c36 static void rc4(rc4_key* key, unsigned char *buffer_ptr, int buffer_len) in rc4() function
101 rc4(key, (unsigned char *)&r, sizeof(r)); in ares__generate_new_id()
/third_party/mesa3d/docs/
Drelease-calendar.csv8 ,2022-08-17,22.2.0-rc4,Dylan Baker,Or 22.2.0 final.
/third_party/openssl/
DBUILD.gn115 "${openssl_selected_platform_full_path}/crypto/rc4/rc4-md5-x86_64.s",
116 "${openssl_selected_platform_full_path}/crypto/rc4/rc4-x86_64.s",
164 "${openssl_selected_platform_full_path}/crypto/rc4/rc4-md5-x86_64.s",
165 "${openssl_selected_platform_full_path}/crypto/rc4/rc4-x86_64.s",
198 "${openssl_selected_platform_full_path}/crypto/rc4/rc4-md5-x86_64.s",
199 "${openssl_selected_platform_full_path}/crypto/rc4/rc4-x86_64.s",
1458 "crypto/rc4/rc4_enc.c",
1459 "crypto/rc4/rc4_skey.c",
1471 "crypto/rc4/rc4_enc.c",
1472 "crypto/rc4/rc4_skey.c",
[all …]
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/arithmeticOperator/
DarithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts17 var rc4 = undefined % undefined; variable

12345