Home
last modified time | relevance | path

Searched refs:algorithm (Results 1 – 25 of 663) sorted by relevance

12345678910>>...27

/freebsd/crypto/openssl/test/recipes/
H A D15-test_gendhparam.t19 algorithm => 'DHX',
25 algorithm => 'DH',
31 algorithm => 'DHX',
37 algorithm => 'DHX',
43 algorithm => 'DHX',
49 algorithm => 'DH',
55 algorithm => 'DH',
61 algorithm => 'DH',
67 algorithm => 'DH',
73 algorithm => 'DH',
[all …]
/freebsd/usr.sbin/ppp/
H A Dccp.c147 static const struct ccp_algorithm * const algorithm[] = { variable
156 #define NALGORITHMS (sizeof algorithm/sizeof algorithm[0])
179 if (ccp->in.algorithm != -1) in ccp_ReportStatus()
181 (*algorithm[ccp->in.algorithm]->Disp)(&ccp->in.opt)); in ccp_ReportStatus()
183 if (ccp->out.algorithm != -1) { in ccp_ReportStatus()
185 for (f = 0; f < ccp->out.algorithm; f++) in ccp_ReportStatus()
186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in ccp_ReportStatus()
189 (*algorithm[ccp->out.algorithm]->Disp)(&(*o)->val)); in ccp_ReportStatus()
277 ccp->in.algorithm = ccp->out.algorithm = -1; in ccp_Setup()
303 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in ccp_Required()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dmcrypt15 >4 string >\0 algorithm: %s,
26 >3 byte 0 algorithm: blowfish-448,
27 >3 byte 1 algorithm: DES,
28 >3 byte 2 algorithm: 3DES,
29 >3 byte 3 algorithm: 3-WAY,
30 >3 byte 4 algorithm: GOST,
31 >3 byte 6 algorithm: SAFER-SK64,
32 >3 byte 7 algorithm: SAFER-SK128,
33 >3 byte 8 algorithm: CAST-128,
34 >3 byte 9 algorithm: xTEA,
[all …]
/freebsd/lib/libc++/
H A Dlibcxx.imp2 { include: [ "<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public" ] },
3 { include: [ "<__algorithm/all_of.h>", "private", "<algorithm>", "public" ] },
4 { include: [ "<__algorithm/any_of.h>", "private", "<algorithm>", "public" ] },
5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
8 { include: [ "<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public" ] },
9 { include: [ "<__algorithm/copy.h>", "private", "<algorithm>", "public" ] },
10 { include: [ "<__algorithm/copy_backward.h>", "private", "<algorithm>", "public" ] },
11 { include: [ "<__algorithm/copy_if.h>", "private", "<algorithm>", "public" ] },
[all …]
/freebsd/crypto/openssl/crypto/asn1/
H A Dx_algor.c19 ASN1_SIMPLE(X509_ALGOR, algorithm, ASN1_OBJECT),
43 ASN1_OBJECT_free(alg->algorithm);
44 alg->algorithm = aobj;
60 *paobj = algor->algorithm; in X509_ALGOR_get0()
90 rv = OBJ_cmp(a->algorithm, b->algorithm); in X509_ALGOR_cmp()
103 if (dest->algorithm) in X509_ALGOR_copy()
104 ASN1_OBJECT_free(dest->algorithm); in X509_ALGOR_copy()
105 dest->algorithm = NULL; in X509_ALGOR_copy()
111 if (src->algorithm) in X509_ALGOR_copy()
112 if ((dest->algorithm = OBJ_dup(src->algorithm)) == NULL) in X509_ALGOR_copy()
[all …]
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/include/
H A Dlac_sym_hash_defs.h288 #define IS_HMAC_ALG(algorithm) \ argument
289 ((algorithm == CPA_CY_SYM_HASH_MD5) || \
290 (algorithm == CPA_CY_SYM_HASH_SHA1) || \
291 (algorithm == CPA_CY_SYM_HASH_SHA224) || \
292 (algorithm == CPA_CY_SYM_HASH_SHA256) || \
293 (algorithm == CPA_CY_SYM_HASH_SHA384) || \
294 (algorithm == CPA_CY_SYM_HASH_SHA512) || \
295 (algorithm == CPA_CY_SYM_HASH_SM3)) || \
296 (LAC_HASH_IS_SHA3(algorithm))
/freebsd/crypto/openssh/
H A Ddns.c81 dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type, in dns_read_key() argument
89 *algorithm = SSHFP_KEY_RSA; in dns_read_key()
92 *algorithm = SSHFP_KEY_DSA; in dns_read_key()
95 *algorithm = SSHFP_KEY_ECDSA; in dns_read_key()
98 *algorithm = SSHFP_KEY_ED25519; in dns_read_key()
101 *algorithm = SSHFP_KEY_XMSS; in dns_read_key()
104 *algorithm = SSHFP_KEY_RESERVED; /* 0 */ in dns_read_key()
118 if (*algorithm && *digest_type) { in dns_read_key()
135 dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type, in dns_read_rdata() argument
140 *algorithm = SSHFP_KEY_RESERVED; in dns_read_rdata()
[all …]
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-genpkey.pod.in22 [B<-algorithm> I<alg>]
64 This option encrypts the private key with the supplied cipher. Any algorithm
67 =item B<-algorithm> I<alg>
69 Public key algorithm to use such as RSA, DSA, DH or DHX. If used this option must
70 precede any B<-pkeyopt> options. The options B<-paramfile> and B<-algorithm>
74 Valid built-in algorithm names for private key generation are RSA, RSA-PSS, EC,
77 Valid built-in algorithm names for parameter generation (see the B<-genparam>
80 Note that the algorithm name X9.42 DH may be used as a synonym for DHX keys and
85 Set the public key algorithm option I<opt> to I<value>. The precise set of
86 options supported depends on the public key algorithm used and its
[all …]
H A Dopenssl-speed.pod.in28 [I<algorithm> ...]
50 Use the specified cipher or message digest algorithm via the EVP interface.
73 Time the HMAC algorithm using the specified message digest.
77 Time the CMAC algorithm using the specified cipher e.g.
95 is only effective if RSA algorithm is specified to test.
117 =item I<algorithm> ...
119 If any I<algorithm> is given, then those algorithms are tested, otherwise a
126 The I<algorithm> can be selected only from a pre-compiled subset of things
128 or cipher algorithm supported by OpenSSL use the C<-evp> option.
H A Dopenssl-pkeyutl.pod.in6 openssl-pkeyutl - public key algorithm command
14 [B<-digest> I<algorithm>]
31 [B<-kdf> I<algorithm>]
45 operations using any supported algorithm.
65 which is not hashed by any message digest algorithm.
67 the user can specify a digest algorithm by using the B<-digest> option.
69 the default digest algorithm is SHA-256. For SM2, it is SM3.
74 =item B<-digest> I<algorithm>
77 It specifies the digest algorithm that is used to hash the input data
79 if the signature algorithm does not require preprocessing the input through
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DEVP_PBE_CipherInit.pod35 I<pass> of length I<passlen>. The PBE algorithm type and parameters are extracted
39 I<libctx> and property query I<propq> to select appropriate algorithm
42 =head2 PBE algorithm search
44 EVP_PBE_find() and EVP_PBE_find_ex() search for a matching algorithm using two parameters:
46 1. An algorithm type I<type> which can be:
52 EVP_PBE_TYPE_OUTER - A PBE algorithm
64 2. A I<pbe_nid> which can represent the algorithm identifier with parameters e.g.
65 B<NID_pbeWithSHA1AndRC2_CBC> or an algorithm class e.g. B<NID_pbes2>.
67 They return the algorithm's cipher ID I<pcnid>, digest ID I<pmnid> and a key
68 generation function for the algorithm I<pkeygen>. EVP_PBE_CipherInit_ex() also
[all …]
H A DOSSL_ALGORITHM.pod5 OSSL_ALGORITHM - OpenSSL Core type to define a fetchable algorithm
22 algorithm that a L<provider(7)> provides. Arrays of this type are returned
41 L<EVP_MD_fetch(3)>, etc) to find the desired algorithm.
43 Multiple names / identities allow a specific algorithm implementation to be
44 fetched multiple ways. For example, the RSA algorithm has the following
57 This is the name of the algorithm's OBJECT IDENTIFIER (OID), as given by the
72 The OpenSSL libraries use the first of the algorithm names as the main
73 or canonical name, on a per algorithm implementation basis.
75 See the notes L</On the subject of algorithm names> below for a more in
82 algorithm implementation, and is used by the appropriate fetching
[all …]
H A DPKCS12_pack_p7encdata.pod23 type from the set of safeBags I<bags>. The algorithm ID in I<pbe_nid> can be
24 a PKCS#12 or PKCS#5 password based encryption algorithm, or a cipher algorithm.
25 If a cipher algorithm is passed, the PKCS#5 PBES2 algorithm will be used with
32 algorithm implementation.
H A DEVP_PKEY_CTX_new.pod8 - public key algorithm context functions
28 The EVP_PKEY_CTX_new() function allocates public key algorithm context using
31 The EVP_PKEY_CTX_new_id() function allocates public key algorithm context
34 The EVP_PKEY_CTX_new_from_name() function allocates a public key algorithm
41 The EVP_PKEY_CTX_new_from_pkey() function allocates a public key algorithm
43 algorithm specified by I<pkey> and the property query I<propquery>. None of the
64 The B<EVP_PKEY_CTX> structure is an opaque public key algorithm context used
72 as "algorithm" in most cases, allowing either term to be used
74 I<algorithm> of the operations that use the keys are not the same,
H A DEVP_PKEY_CTX_set_rsa_pss_keygen_md.pod10 - EVP_PKEY RSA-PSS algorithm support functions
55 they have exactly the same meaning as for the RSA algorithm.
64 EVP_PKEY_CTX_set_rsa_pss_keygen_md() restricts the digest algorithm the
67 passes the algorithm by name rather than by B<EVP_MD>.
69 EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md() restricts the MGF1 algorithm the
72 passes the algorithm by name rather than by B<EVP_MD>.
79 A context for the B<RSA-PSS> algorithm can be obtained by calling:
87 the public key algorithm.
H A DEVP_ASYM_CIPHER_free.pod10 - Functions to manage EVP_ASYM_CIPHER algorithm objects
16 EVP_ASYM_CIPHER *EVP_ASYM_CIPHER_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
37 B<algorithm> from any provider offering it, within the criteria given
39 L<OSSL_LIB_CTX(3)>). The algorithm will be one offering functions for performing
54 algorithm that's identifiable with I<name>, otherwise 0.
64 EVP_ASYM_CIPHER_get0_name() returns the algorithm name from the provided
67 algorithm definition is returned. Ownership of the returned string is retained
79 parameters that can be retrieved or set by a key encryption algorithm using
H A DEVP_SIGNATURE.pod11 - Functions to manage EVP_SIGNATURE algorithm objects
19 EVP_SIGNATURE *EVP_SIGNATURE_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
41 B<algorithm> from any provider offering it, within the criteria given
43 The algorithm will be one offering functions for performing signature related
58 algorithm that's identifiable with I<name>, otherwise 0.
68 EVP_SIGNATURE_get0_name() returns the algorithm name from the provided
71 algorithm definition is returned. Ownership of the returned string is retained
83 parameters that can be retrieved or set by a signature algorithm using
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/
H A Dlac_sym_cipher.c68 CpaCySymCipherAlgorithm algorithm = pSessionDesc->cipherAlgorithm; in LacCipher_PerformIvCheck() local
71 switch (algorithm) { in LacCipher_PerformIvCheck()
85 ivLenInBytes = LacSymQat_CipherIvSizeBytesGet(algorithm); in LacCipher_PerformIvCheck()
89 (LAC_CIPHER_IS_GCM(algorithm) && in LacCipher_PerformIvCheck()
93 LAC_CIPHER_IS_CCM(algorithm))) { in LacCipher_PerformIvCheck()
362 LacCipher_PerformParamCheck(CpaCySymCipherAlgorithm algorithm, in LacCipher_PerformParamCheck() argument
379 switch (algorithm) { in LacCipher_PerformParamCheck()
422 (LacSymQat_CipherBlockSizeBytesGet(algorithm) - in LacCipher_PerformParamCheck()
/freebsd/crypto/openssl/doc/man7/
H A Dopenssl-glossary.pod17 implementation for any given algorithm available for use.
34 the algorithm implementations in the Base Provider are also available in the
41 A decoder is a type of algorithm used for decoding keys and parameters from some
48 An OpenSSL Provider that contains the most common OpenSSL algorithm
50 the algorithm implementations in the Base Provider are also available in the
67 An encoder is a type of algorithm used for encoding keys and parameters to some
75 where a function call is made to obtain an algorithm object representing an
80 Fetching is the process of looking through the available algorithm
90 An OpenSSL Provider that contains OpenSSL algorithm implementations that have
98 where an algorithm object with no associated implementation is used such as the
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc585 SYMBOL(adjacent_find, std::, <algorithm>)
600 SYMBOL(all_of, std::, <algorithm>)
610 SYMBOL(any_of, std::, <algorithm>)
807 SYMBOL(binary_search, std::, <algorithm>)
877 SYMBOL(clamp, std::, <algorithm>)
945 SYMBOL(copy, std::, <algorithm>)
946 SYMBOL(copy_backward, std::, <algorithm>)
948 SYMBOL(copy_if, std::, <algorithm>)
949 SYMBOL(copy_n, std::, <algorithm>)
980 SYMBOL(count, std::, <algorithm>)
[all …]
/freebsd/sys/contrib/openzfs/scripts/
H A Dconvert_wycheproof.pl72 my $algorithm = $data->{algorithm};
73 if (!defined $algorithm) {
90 say "algorithm: $algorithm";
195 say $outfh "algorithm: $algorithm";
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsa8540p-ride.dts201 snps,dcb-algorithm;
208 snps,dcb-algorithm;
214 snps,avb-algorithm;
220 snps,avb-algorithm;
231 snps,dcb-algorithm;
235 snps,dcb-algorithm;
239 snps,avb-algorithm;
247 snps,avb-algorithm;
278 snps,dcb-algorithm;
285 snps,dcb-algorithm;
[all …]
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/qat/
H A Dlac_sym_qat.c257 icp_qat_hw_cipher_algo_t algorithm; in LacSymQat_UseSymConstantsTable() local
268 pSession, &algorithm, &mode, &dir, &key_convert); in LacSymQat_UseSymConstantsTable()
272 algorithm, in LacSymQat_UseSymConstantsTable()
289 icp_qat_hw_auth_algo_t algorithm; in LacSymQat_UseSymConstantsTable() local
308 &algorithm, in LacSymQat_UseSymConstantsTable()
313 algorithm, in LacSymQat_UseSymConstantsTable()
/freebsd/crypto/heimdal/lib/roken/
H A Dresolve.h142 unsigned algorithm; member
149 unsigned algorithm; member
163 unsigned algorithm; member
169 unsigned algorithm; member
177 unsigned algorithm; member
/freebsd/contrib/ldns/ldns/
H A Ddnssec_sign.h148 uint8_t algorithm,
270 uint8_t algorithm,
301 uint8_t algorithm,
357 uint8_t algorithm,
382 ldns_zone *ldns_zone_sign_nsec3(ldns_zone *zone, ldns_key_list *key_list, uint8_t algorithm, uint8_…

12345678910>>...27