/external/iproute2/ip/ |
D | ipxfrm.c | 515 static void __xfrm_algo_print(struct xfrm_algo *algo, int type, int len, in __xfrm_algo_print() argument 526 if (len < sizeof(*algo)) { in __xfrm_algo_print() 530 len -= sizeof(*algo); in __xfrm_algo_print() 532 fprintf(fp, "%s ", algo->alg_name); in __xfrm_algo_print() 534 keylen = algo->alg_key_len / 8; in __xfrm_algo_print() 542 fprintf(fp, "%.2x", (unsigned char)algo->alg_key[i]); in __xfrm_algo_print() 545 fprintf(fp, " (%d bits)", algo->alg_key_len); in __xfrm_algo_print() 552 static inline void xfrm_algo_print(struct xfrm_algo *algo, int type, int len, in xfrm_algo_print() argument 555 return __xfrm_algo_print(algo, type, len, fp, prefix, 1); in xfrm_algo_print() 558 static void xfrm_aead_print(struct xfrm_algo_aead *algo, int len, in xfrm_aead_print() argument [all …]
|
/external/toybox/toys/lsb/ |
D | passwd.c | 29 char *algo; 130 if (!(toys.optflags & FLAG_a)) TT.algo = "des"; in passwd_main() 131 if (get_salt(salt, TT.algo) == -1) in passwd_main()
|
/external/iptables/extensions/ |
D | libxt_string.c | 62 .flags = XTOPT_MAND | XTOPT_PUT, XTOPT_POINTER(s, algo)}, 268 printf(" ALGO name %s", info->algo); in string_print() 292 printf(" --algo %s", info->algo); in string_save()
|
D | libxt_string.man | 3 \fB\-\-algo\fP {\fBbm\fP|\fBkmp\fP}
|
/external/kernel-headers/original/uapi/linux/tc_ematch/ |
D | tc_em_text.h | 10 char algo[TC_EM_TEXT_ALGOSIZ]; member
|
/external/iproute2/include/linux/tc_ematch/ |
D | tc_em_text.h | 10 char algo[TC_EM_TEXT_ALGOSIZ]; member
|
/external/vboot_reference/scripts/image_signing/ |
D | sign_official_build.sh | 463 local algo algos=( 472 algo=${algos[${key_size}]} 473 if [[ -z ${algo} ]]; then 477 pad_digest_utility ${algo} "${image}" | \
|
/external/lzma/ |
D | Methods.txt | 121 F0 - Misc Ciphers (Real Ciphers without hashing algo) 125 01 - Main Zip crypto algo
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
D | xt_string.h | 17 char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; member
|
/external/iptables/include/linux/netfilter/ |
D | xt_string.h | 17 char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; member
|
/external/toybox/lib/ |
D | password.c | 10 int get_salt(char *salt, char *algo) in get_salt() argument 18 if (!strcmp(algo, al[i].type)) { in get_salt()
|
D | lib.h | 194 int get_salt(char *salt, char * algo);
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | HandlerOut.cpp | 211 UInt32 algo = in SetCompressionMethod2() local 224 SetMethodProp(oneMethodInfo, NCoderPropID::kAlgorithm, algo); in SetCompressionMethod2() 243 UInt32 algo = in SetCompressionMethod2() local 247 SetMethodProp(oneMethodInfo, NCoderPropID::kAlgorithm, algo); in SetCompressionMethod2()
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
D | LzmaAlone.cpp | 383 UInt32 algo = 1; in main2() local 390 ParseUInt32(parser, NKey::kAlgo, algo); in main2() 424 props[4].ulVal = (UInt32)algo; in main2()
|
/external/lzma/C/ |
D | LzmaEnc.h | 24 int algo; /* 0 - fast, 1 - normal, default = 1 */ member
|
D | LzmaEnc.c | 49 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1; in LzmaEncProps_Init() 62 if (p->algo < 0) p->algo = (level < 5 ? 0 : 1); in LzmaEncProps_Normalize() 64 if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1); in LzmaEncProps_Normalize() 70 ((p->btMode && p->algo) ? 2 : 1); in LzmaEncProps_Normalize() 413 p->fastMode = (props.algo == 0); in LzmaEnc_SetProps()
|
/external/iptables/tests/ |
D | options-most.rules | 12 …e DEFAULT --rsource -m socket --transparent -m string --string "foobar" --algo kmp --from 1 --to 2… 39 -A INPUT -p tcp -m string --string "foobar" --algo kmp --from 1 --to 2 --icase 40 -A INPUT -p tcp -m string --hex-string "|00|" --algo kmp --from 1 --to 2 --icase 133 -A matches -m string --hex-string "action=|5C22|http|3A|" --algo bm 135 -A matches -m string --hex-string "action=|5C|http|3A|" --algo bm
|
/external/mdnsresponder/mDNSCore/ |
D | DNSDigest.c | 1443 domainname * algo; in DNSDigest_VerifyMessage() local 1449 algo = (domainname*) ptr; in DNSDigest_VerifyMessage() 1451 if (!SameDomainName(algo, &HMAC_MD5_AlgName)) in DNSDigest_VerifyMessage() 1453 LogMsg("ERROR: DNSDigest_VerifyMessage - TSIG algorithm not supported: %##s", algo->c); in DNSDigest_VerifyMessage() 1460 ptr += DomainNameLength(algo); in DNSDigest_VerifyMessage() 1531 MD5_Update(&c, algo->c, DomainNameLength(algo)); in DNSDigest_VerifyMessage()
|
/external/lzma/CPP/7zip/Compress/ |
D | LzmaEncoder.cpp | 91 case NCoderPropID::kAlgorithm: ep.algo = v; break; in SetLzmaProp()
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
D | TestCertUtils.java | 274 private static final String algo = "testPublicKeyAlgorithm"; field in TestCertUtils.TestPublicKey 282 return algo; in getAlgorithm()
|
/external/libvpx/libwebm/ |
D | mkvparser.hpp | 202 unsigned long long algo; member 220 unsigned long long algo; member
|
D | mkvparser.cpp | 4021 : algo(0), settings(NULL), settings_len(0) {} in ContentCompression() 4028 : algo(0), in ContentEncryption() 4265 long long algo = UnserializeUInt(pReader, pos, size); in ParseCompressionEntry() local 4266 if (algo < 0) in ParseCompressionEntry() 4268 compression->algo = algo; in ParseCompressionEntry() 4320 encryption->algo = UnserializeUInt(pReader, pos, size); in ParseEncryptionEntry() 4321 if (encryption->algo != 5) in ParseEncryptionEntry()
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | mkvparser.hpp | 198 unsigned long long algo; member 216 unsigned long long algo; member
|
D | mkvparser.cpp | 3937 : algo(0), settings(NULL), settings_len(0) {} in ContentCompression() 3944 : algo(0), in ContentEncryption() 4177 long long algo = UnserializeUInt(pReader, pos, size); in ParseCompressionEntry() local 4178 if (algo < 0) in ParseCompressionEntry() 4180 compression->algo = algo; in ParseCompressionEntry() 4232 encryption->algo = UnserializeUInt(pReader, pos, size); in ParseEncryptionEntry() 4233 if (encryption->algo != 5) in ParseEncryptionEntry()
|
/external/toybox/generated/ |
D | globals.h | 91 char *algo; member
|