Searched refs:ciph (Results 1 - 25 of 27) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/tests/
H A Dpkcs1v2.c200 gcry_sexp_t plain, ciph; local
218 err = gcry_pk_encrypt (&ciph, plain, pub_key);
221 show_sexp ("plain:\n", ciph);
226 if (extract_cmp_data (ciph, "a", tbl[tno].m[mno].encr,
229 show_sexp ("encrypt result:\n", ciph);
232 gcry_sexp_release (ciph);
233 ciph = NULL;
242 err = gcry_sexp_build (&ciph, NULL,
253 err = gcry_pk_decrypt (&plain, ciph, sec_key);
256 show_sexp ("ciph
444 gcry_sexp_t plain, ciph; local
[all...]
H A Dcavs_driver.pl1178 my $ciph = substr($cipher,0,3);
1181 if ($ciph =~ /des/) {$oloop=400;$iloop=10000;}
1252 if ( (!$enc && $ciph =~ /des/) ||
1253 $ciph =~ /rc4/ ||
1273 if ( $ciph =~ /aes/ ) {
1276 } elsif ( $ciph =~ /des/ ) {
1303 } elsif ($ciph =~ /rc4/ ) {
1315 } elsif ( $ciph =~ /rc4/ || $cipher eq "des-ede3" || $cipher =~ /ecb/) {
1318 } elsif (! $enc && $ciph =~ /des/ ) {
H A Dbasic.c2390 gcry_sexp_t plain, ciph, data; local
2516 rc = gcry_pk_encrypt (&ciph, data, pkey);
2541 len = gcry_sexp_sprint (ciph, GCRYSEXP_FMT_CANON, NULL, 0);
2545 len = gcry_sexp_sprint (ciph, GCRYSEXP_FMT_CANON, buf, len);
2554 gcry_sexp_release (ciph);
2555 ciph = list;
2557 rc = gcry_pk_decrypt (&plain, ciph, skey);
2584 gcry_sexp_release (ciph);
2585 ciph = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/tests/
H A Dpkcs1v2.c200 gcry_sexp_t plain, ciph; local
218 err = gcry_pk_encrypt (&ciph, plain, pub_key);
221 show_sexp ("plain:\n", ciph);
226 if (extract_cmp_data (ciph, "a", tbl[tno].m[mno].encr,
229 show_sexp ("encrypt result:\n", ciph);
232 gcry_sexp_release (ciph);
233 ciph = NULL;
242 err = gcry_sexp_build (&ciph, NULL,
253 err = gcry_pk_decrypt (&plain, ciph, sec_key);
256 show_sexp ("ciph
444 gcry_sexp_t plain, ciph; local
[all...]
H A Dcavs_driver.pl1178 my $ciph = substr($cipher,0,3);
1181 if ($ciph =~ /des/) {$oloop=400;$iloop=10000;}
1252 if ( (!$enc && $ciph =~ /des/) ||
1253 $ciph =~ /rc4/ ||
1273 if ( $ciph =~ /aes/ ) {
1276 } elsif ( $ciph =~ /des/ ) {
1303 } elsif ($ciph =~ /rc4/ ) {
1315 } elsif ( $ciph =~ /rc4/ || $cipher eq "des-ede3" || $cipher =~ /ecb/) {
1318 } elsif (! $enc && $ciph =~ /des/ ) {
H A Dbasic.c2390 gcry_sexp_t plain, ciph, data; local
2516 rc = gcry_pk_encrypt (&ciph, data, pkey);
2541 len = gcry_sexp_sprint (ciph, GCRYSEXP_FMT_CANON, NULL, 0);
2545 len = gcry_sexp_sprint (ciph, GCRYSEXP_FMT_CANON, buf, len);
2554 gcry_sexp_release (ciph);
2555 ciph = list;
2557 rc = gcry_pk_decrypt (&plain, ciph, skey);
2584 gcry_sexp_release (ciph);
2585 ciph = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/cms/
H A Dcms_enc.c74 const EVP_CIPHER *ciph; local
95 ciph = ec->cipher;
102 ciph = EVP_get_cipherbyobj(calg->algorithm);
104 if (!ciph) {
110 if (EVP_CipherInit_ex(ctx, ciph, NULL, NULL, NULL, enc) <= 0) {
230 int CMS_EncryptedData_set1_key(CMS_ContentInfo *cms, const EVP_CIPHER *ciph, argument
238 if (ciph) {
251 return cms_EncryptedContent_init(ec, ciph, key, keylen);
H A Dcms.h170 int CMS_EncryptedData_set1_key(CMS_ContentInfo *cms, const EVP_CIPHER *ciph,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/cms/
H A Dcms_enc.c74 const EVP_CIPHER *ciph; local
95 ciph = ec->cipher;
102 ciph = EVP_get_cipherbyobj(calg->algorithm);
104 if (!ciph) {
110 if (EVP_CipherInit_ex(ctx, ciph, NULL, NULL, NULL, enc) <= 0) {
230 int CMS_EncryptedData_set1_key(CMS_ContentInfo *cms, const EVP_CIPHER *ciph, argument
238 if (ciph) {
251 return cms_EncryptedContent_init(ec, ciph, key, keylen);
H A Dcms.h170 int CMS_EncryptedData_set1_key(CMS_ContentInfo *cms, const EVP_CIPHER *ciph,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/ipvs/
H A Dip_vs_core.c572 struct iphdr *ciph = (struct iphdr *)(icmph + 1); local
577 ciph->daddr = cp->vaddr.ip;
578 ip_send_check(ciph);
582 ciph->saddr = cp->daddr.ip;
583 ip_send_check(ciph);
587 if (IPPROTO_TCP == ciph->protocol || IPPROTO_UDP == ciph->protocol ||
588 IPPROTO_SCTP == ciph->protocol) {
589 __be16 *ports = (void *)ciph + ciph
618 struct ipv6hdr *ciph = (struct ipv6hdr *)(icmph + 1); local
713 struct ip_vs_iphdr ciph; local
788 struct ip_vs_iphdr ciph; local
1074 struct ip_vs_iphdr ciph; local
1178 struct ip_vs_iphdr ciph; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/evp/
H A Dnames.c149 void (*fn) (const EVP_CIPHER *ciph,
162 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, argument
172 void EVP_CIPHER_do_all_sorted(void (*fn) (const EVP_CIPHER *ciph, argument
184 void (*fn) (const EVP_MD *ciph,
H A Devp.h929 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph,
933 (const EVP_CIPHER *ciph, const char *from,
936 void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph,
940 (const EVP_MD *ciph, const char *from,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/evp/
H A Dnames.c149 void (*fn) (const EVP_CIPHER *ciph,
162 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, argument
172 void EVP_CIPHER_do_all_sorted(void (*fn) (const EVP_CIPHER *ciph, argument
184 void (*fn) (const EVP_MD *ciph,
H A Devp.h929 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph,
933 (const EVP_CIPHER *ciph, const char *from,
936 void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph,
940 (const EVP_MD *ciph, const char *from,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Dd1_lib.c350 const SSL_CIPHER *ciph = ssl3_get_cipher(u); local
352 if (ciph != NULL) {
353 if (ciph->algorithm_enc == SSL_RC4)
357 return ciph;
H A Dssltest.c827 const SSL_CIPHER *ciph; local
830 ciph = SSL_get_current_cipher(c_ssl);
834 SSL_CIPHER_get_version(ciph), SSL_CIPHER_get_name(ciph));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Dd1_lib.c350 const SSL_CIPHER *ciph = ssl3_get_cipher(u); local
352 if (ciph != NULL) {
353 if (ciph->algorithm_enc == SSL_RC4)
357 return ciph;
H A Dssltest.c827 const SSL_CIPHER *ciph; local
830 ciph = SSL_get_current_cipher(c_ssl);
834 SSL_CIPHER_get_version(ciph), SSL_CIPHER_get_name(ciph));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dssl_openssl.c1148 const SSL_CIPHER *ciph; local
1154 ciph = SSL_get_current_cipher (ks_ssl->ssl);
1158 SSL_CIPHER_get_version (ciph),
1159 SSL_CIPHER_get_name (ciph));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/cipher/
H A Dpubkey.c2845 gcry_mpi_t *pkey = NULL, data = NULL, *ciph = NULL; local
2882 ciph = gcry_calloc (strlen (algo_elems) + 1, sizeof (*ciph));
2883 if (!ciph)
2888 rc = pubkey_encrypt (module->mod_id, ciph, data, pkey, ctx.flags);
2905 rc = octet_string_from_mpi (&em, NULL, ciph[0], emlen);
2952 arg_list[i] = ciph + i;
2968 if (ciph)
2970 release_mpi_array (ciph);
2971 gcry_free (ciph);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Dpubkey.c2845 gcry_mpi_t *pkey = NULL, data = NULL, *ciph = NULL; local
2882 ciph = gcry_calloc (strlen (algo_elems) + 1, sizeof (*ciph));
2883 if (!ciph)
2888 rc = pubkey_encrypt (module->mod_id, ciph, data, pkey, ctx.flags);
2905 rc = octet_string_from_mpi (&em, NULL, ciph[0], emlen);
2952 arg_list[i] = ciph + i;
2968 if (ciph)
2970 release_mpi_array (ciph);
2971 gcry_free (ciph);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Dssltest.c281 SSL_CIPHER *ciph; local
284 ciph=SSL_get_current_cipher(c_ssl);
288 SSL_CIPHER_get_version(ciph),
289 SSL_CIPHER_get_name(ciph));
H A Dssl_locl.h476 #define ssl_put_cipher_by_char(ssl,ciph,ptr) \
477 ((ssl)->method->put_cipher_by_char((ciph),(ptr)))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dssltest.c281 SSL_CIPHER *ciph; local
284 ciph=SSL_get_current_cipher(c_ssl);
288 SSL_CIPHER_get_version(ciph),
289 SSL_CIPHER_get_name(ciph));

Completed in 636 milliseconds

12