Home
last modified time | relevance | path

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

12

/freebsd-12-stable/crypto/openssl/crypto/rc4/
Dbuild.info5 GENERATE[rc4-586.s]=asm/rc4-586.pl \
7 DEPEND[rc4-586.s]=../perlasm/x86asm.pl
9 GENERATE[rc4-x86_64.s]=asm/rc4-x86_64.pl $(PERLASM_SCHEME)
10 GENERATE[rc4-md5-x86_64.s]=asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME)
12 GENERATE[rc4-parisc.s]=asm/rc4-parisc.pl $(PERLASM_SCHEME)
14 GENERATE[rc4-s390x.s]=asm/rc4-s390x.pl $(PERLASM_SCHEME)
18 {- $builddir -}/rc4-%.s: {- $sourcedir -}/asm/rc4-%.pl
/freebsd-12-stable/crypto/openssl/crypto/rc4/asm/
Drc4-md5-x86_64.pl50 my ($rc4,$md5)=(1,1); # what to generate?
72 if ($rc4 && !$md5) {
75 } elsif ($md5 && !$rc4) {
146 if ($rc4) {
242 $code.=" movdqu ($in0),%xmm2\n" if ($rc4 && $j==15);
243 $code.=" add \$$MOD,$XX[0]#b\n" if ($rc4 && $j==15 && $k==$MOD-1);
244 $code.=" pxor $xmm,$xmm\n" if ($rc4 && $j<=1);
264 $code.=<<___ if ($rc4 && $j==15 && $k==$MOD-1);
270 $code.=<<___ if ($rc4 && $j==15);
282 $code.=" movdqu 16($in0),%xmm3\n" if ($rc4 && $j==15);
[all …]
/freebsd-12-stable/contrib/wpa/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 …]
DMakefile32 rc4.o \
/freebsd-12-stable/sys/netgraph/
Dng_mppc.c150 struct rc4_state rc4; /* rc4 state */ member
178 u_char *key0, u_char *key, struct rc4_state *rc4);
197 MODULE_DEPEND(ng_mppc, rc4, 1, 1, 1);
337 rc4_init(&d->rc4, d->key, keylen); in ng_mppc_rcvmsg()
591 d->cfg.startkey, d->key, &d->rc4); in ng_mppc_compress()
595 rc4_init(&d->rc4, d->key, KEYLEN(d->cfg.bits)); in ng_mppc_compress()
601 rc4_crypt(&d->rc4, mtod(m1, u_char *), in ng_mppc_compress()
688 d->cfg.startkey, d->key, &d->rc4); in ng_mppc_decompress()
695 rc4_init(&d->rc4, d->key, KEYLEN(d->cfg.bits)); in ng_mppc_decompress()
724 d->cfg.startkey, d->key, &d->rc4); in ng_mppc_decompress()
[all …]
/freebsd-12-stable/sys/modules/rc4/
DMakefile3 .PATH: ${SRCTOP}/sys/crypto/rc4
5 KMOD= rc4
6 SRCS= rc4.c
/freebsd-12-stable/sys/modules/netgraph/
DMakefile62 .if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c)
/freebsd-12-stable/contrib/netbsd-tests/crypto/libcrypto/
Dt_ciphers.sh79 atf_test_case rc4
119 atf_add_test_case rc4
/freebsd-12-stable/secure/lib/libcrypto/
DMakefile.asm76 ${LCRYPTO_SRC}/crypto/rc4/asm \
111 SRCS+= rc4-md5-x86_64.pl rc4-x86_64.pl
218 ${LCRYPTO_SRC}/crypto/rc4/asm \
264 SRCS+= rc4-586.pl
DMakefile294 SRCS+= rc4-md5-x86_64.S rc4-x86_64.S
296 SRCS+= rc4-586.S
407 INCS+= pkcs7err.h rand.h rand_drbg.h randerr.h rc2.h rc4.h rc5.h ripemd.h
513 ${LCRYPTO_SRC}/crypto/rc4 \
/freebsd-12-stable/sys/crypto/rc4/
Drc4.c127 DECLARE_MODULE(rc4, rc4_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
128 MODULE_VERSION(rc4, 1);
/freebsd-12-stable/crypto/heimdal/include/hcrypto/
DMakefile.am25 rc4.h \
DMakefile.in365 rc4.h \
/freebsd-12-stable/crypto/heimdal/kdc/
Ddigest.c1336 EVP_CIPHER_CTX *rc4; in _kdc_do_digest() local
1357 rc4 = EVP_CIPHER_CTX_new(); in _kdc_do_digest()
1358 if (rc4 == NULL) { in _kdc_do_digest()
1364 EVP_CipherInit_ex(rc4, EVP_rc4(), NULL, sessionkey, NULL, 1); in _kdc_do_digest()
1365 EVP_Cipher(rc4, in _kdc_do_digest()
1368 EVP_CIPHER_CTX_free(rc4); in _kdc_do_digest()
/freebsd-12-stable/lib/msun/ld128/
Ds_erfl.c177 rc4 = -2.04415631865861549920184039902945685e4L, /* 0xc00d3f66, 0x40b3fc04, 0x5388f2ec, 0xb009e1f… variable
318 R=rc0+s*(rc1+s*(rc2+s*(rc3+s*(rc4+s*(rc5+s*(rc6+s*(rc7+ in erfcl()
/freebsd-12-stable/usr.sbin/wpa/src/crypto/
DMakefile92 SRCS+= rc4.c
/freebsd-12-stable/crypto/openssl/doc/man3/
DRC4_set_key.pod9 #include <openssl/rc4.h>
/freebsd-12-stable/lib/msun/ld80/
Ds_erfl.c211 #define rc4 (rc4u.e) macro
328 R=rc0+s*(rc1+s*(rc2+s*(rc3+s*(rc4+s*rc5)))); in erfcl()
/freebsd-12-stable/crypto/openssl/doc/man1/
Denc.pod335 rc4 128 bit RC4
336 rc4-64 64 bit RC4
337 rc4-40 40 bit RC4
Dopenssl.pod455 =item B<rc4>
/freebsd-12-stable/crypto/openssl/
Dconfig862 for i in aes aria bf camellia cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa seed…
/freebsd-12-stable/sys/modules/
DMakefile338 rc4 \
/freebsd-12-stable/crypto/openssl/crypto/objects/
Dobj_mac.num6 rc4 5
/freebsd-12-stable/crypto/heimdal/lib/asn1/
Drfc2459.asn143 id-pkcs3-rc4 OBJECT IDENTIFIER ::= { id-pkcs-3 4 }

12