Searched refs:algorithm (Results 1 - 25 of 317) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/opie/libopie/
H A Dkeycrunch.c27 int opiekeycrunch FUNCTION((algorithm, result, seed, secret), int algorithm AND
43 if (algorithm & 0x10)
50 if (!(algorithm & 0x10))
54 opiehashlen(algorithm & 0x0f, c, result, i);
H A Dparsechallenge.c24 struct algorithm { struct
29 static struct algorithm algorithms[] = {
36 int __opieparsechallenge FUNCTION((buffer, algorithm, sequence, seed, exts), char *buffer AND int *algorithm AND int *sequence AND char **seed AND int *exts)
44 struct algorithm *a;
50 *algorithm = a->num;
H A Dgenerator.c138 int algorithm; local
156 if (__opieparsechallenge(challenge, &algorithm, &sequence, &seed, &exts))
166 if (i = opiekeycrunch(algorithm, &key, seed, secret))
180 opiehash(&key, algorithm);
185 if (opiekeycrunch(algorithm, &newkey, newseed, secret))
189 opiehash(&newkey, algorithm);
193 if (snprintf(buf, sizeof(buf), ":%s 499 %s:", algids[algorithm],
249 opiehash(&key, algorithm);
256 if (snprintf(cmd, sizeof(cmd), "S= %d %d %s %s\n", algorithm, sequence,
281 if ((cmd[0] != 'S') || (cmd[1] != '+') || (cmd[2] != ' ') || (strtoul(&cmd[3], &c, 10) != algorithm) || (strtou
[all...]
H A Dhash.c29 VOIDRET opiehash FUNCTION((x, algorithm), struct opie_otpkey *x AND argument
30 unsigned algorithm)
34 switch(algorithm) {
H A Dhashlen.c26 VOIDRET opiehashlen FUNCTION((algorithm, in, out, n), int algorithm AND
32 switch(algorithm) {
/freebsd-10.1-release/crypto/openssl/crypto/asn1/
H A Dx_algor.c66 ASN1_SIMPLE(X509_ALGOR, algorithm, ASN1_OBJECT),
92 if (alg->algorithm)
93 ASN1_OBJECT_free(alg->algorithm);
94 alg->algorithm = aobj;
112 *paobj = algor->algorithm;
142 rv = OBJ_cmp(a->algorithm, b->algorithm);
H A Dt_spki.c81 i = OBJ_obj2nid(spki->spkac->pubkey->algor->algorithm);
94 i = OBJ_obj2nid(spki->sig_algor->algorithm);
/freebsd-10.1-release/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)
181 (*algorithm[ccp->in.algorithm]->Disp)(&ccp->in.opt));
183 if (ccp->out.algorithm != -1) {
185 for (f = 0; f < ccp->out.algorithm; f++)
186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]))
189 (*algorithm[cc
[all...]
H A Dccp.h87 int algorithm; member in struct:ccp_opt
101 int algorithm; /* Algorithm in use */ member in struct:ccp::__anon12041
107 int algorithm; /* Algorithm in use */ member in struct:ccp::__anon12042
/freebsd-10.1-release/contrib/opie/
H A Dopiekey.c133 unsigned algorithm = MDX; /* default algorithm per Makefile's MDX local
153 algorithm = 4;
156 algorithm = 5;
159 algorithm = 3;
183 /* use MD4 algorithm */
184 algorithm = 4;
188 /* use MD5 algorithm */
189 algorithm = 5;
209 algorithm
[all...]
H A Dopieauto.c54 int algorithm, base, current; member in struct:cachedotp
86 int algorithm, sequence, i; local
99 if (((algorithm = strtoul(&cmd[3], &c, 10)) < 3) || (algorithm > 5) || (*c != ' ')) {
101 fprintf(stderr, "%s: got bogus algorithm: %s\n", myname, cmd);
144 fprintf(stderr, "got cmd=%c, algorithm=%d sequence=%d seed=+%s+ response=+%s+ on fd %d\n", cmd[0], algorithm, sequence, seed, response, fd);
153 sprintf(cmd, "%c- %d %d %s\n", cmd[0], algorithm, sequence, seed);
159 for (c = &head; *c && (strcmp((*c)->seed, seed) || ((*c)->algorithm != algorithm));
[all...]
/freebsd-10.1-release/contrib/libstdc++/include/std/
H A Dstd_string.h57 # include <algorithm> // for find_if
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dresolve.h142 unsigned algorithm; member in struct:rk_key_record
149 unsigned algorithm; member in struct:rk_sig_record
163 unsigned algorithm; member in struct:rk_cert_record
169 unsigned algorithm; member in struct:rk_sshfp_record
177 unsigned algorithm; member in struct:rk_ds_record
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A Dcircular_raw_ostream.cpp15 #include <algorithm>
/freebsd-10.1-release/crypto/openssh/
H A Ddns.c77 dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type, argument
85 *algorithm = SSHFP_KEY_RSA;
90 *algorithm = SSHFP_KEY_DSA;
95 *algorithm = SSHFP_KEY_ECDSA;
100 *algorithm = SSHFP_KEY_RESERVED; /* 0 */
115 if (*algorithm && *digest_type) {
133 dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type, argument
138 *algorithm = SSHFP_KEY_RESERVED;
142 *algorithm = rdata[0];
337 error("%s: unsupported algorithm an
[all...]
/freebsd-10.1-release/contrib/libstdc++/include/precompiled/
H A Dstdc++.h55 #include <algorithm>
/freebsd-10.1-release/contrib/ldns/ldns/
H A Ddnssec_sign.h60 * \param[in] digest_type The digest algorithm to use in the creation of
143 uint8_t algorithm,
252 * \param[in] algorithm the NSEC3 hashing algorithm to use
265 uint8_t algorithm,
280 * \param[in] algorithm the NSEC3 hashing algorithm to use
296 uint8_t algorithm,
340 * \param[in] algorithm the NSEC3 hashing algorithm t
[all...]
H A Dtsig.h28 char *algorithm; member in struct:ldns_tsig_credentials_struct
75 * \param[in] algorithm_name the name of the algorithm used
88 * \param[in] algorithm_name the name of the algorithm used
/freebsd-10.1-release/crypto/openssl/crypto/ocsp/
H A Docsp_lib.c114 if (alg->algorithm != NULL)
115 ASN1_OBJECT_free(alg->algorithm);
120 if (!(alg->algorithm = OBJ_nid2obj(nid)))
155 ret = OBJ_cmp(a->hashAlgorithm->algorithm, b->hashAlgorithm->algorithm);
/freebsd-10.1-release/crypto/openssl/engines/
H A De_4758cca.c628 X509_ALGOR algorithm; local
635 sig.algor = &algorithm;
636 algorithm.algorithm = OBJ_nid2obj(type);
638 if (!algorithm.algorithm) {
644 if (!algorithm.algorithm->length) {
652 algorithm.parameter = &parameter;
741 X509_ALGOR algorithm; local
[all...]
/freebsd-10.1-release/contrib/libstdc++/include/backward/
H A Dalgobase.h63 #include <ext/algorithm>
84 // Names from ext/algorithm
/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DInterval.cpp19 #include <algorithm>
/freebsd-10.1-release/contrib/llvm/lib/Support/Unix/
H A DUnix.h24 #include <algorithm>
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DTemplateBase.cpp27 #include <algorithm>
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DPythonPointer.h13 #include <algorithm>

Completed in 244 milliseconds

1234567891011>>