Searched defs:algo (Results 1 - 9 of 9) sorted by relevance

/external/kernel-headers/original/linux/netfilter/
H A Dxt_string.h11 char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; member in struct:xt_string_info
/external/iptables/include/linux/netfilter/
H A Dxt_string.h17 char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; member in struct:xt_string_info
/external/webp/src/enc/
H A Dalpha.c32 int algo) {
40 if (deflateInit(&strm, algo ? Z_BEST_SPEED : Z_BEST_COMPRESSION) != Z_OK) {
30 CompressAlpha(const uint8_t* data, size_t data_size, uint8_t** output, size_t* output_size, int algo) argument
/external/dropbear/
H A Dsvr-authpubkey.c35 #include "algo.h"
42 static int checkpubkey(unsigned char* algo, unsigned int algolen,
45 static void send_msg_userauth_pk_ok(unsigned char* algo, unsigned int algolen,
54 unsigned char* algo = NULL; /* pubkey algo */ local
69 algo = buf_getstring(ses.payload, &algolen);
74 if (checkpubkey(algo, algolen, keyblob, keybloblen) == DROPBEAR_FAILURE) {
81 send_msg_userauth_pk_ok(algo, algolen, keyblob, keybloblen);
123 if (algo) {
124 m_free(algo);
136 send_msg_userauth_pk_ok(unsigned char* algo, unsigned int algolen, unsigned char* keyblob, unsigned int keybloblen) argument
154 checkpubkey(unsigned char* algo, unsigned int algolen, unsigned char* keyblob, unsigned int keybloblen) argument
[all...]
H A Dcommon-algo.c26 #include "algo.h"
29 /* This file (algo.c) organises the ciphers which can be used, and is used to
191 /* algolen specifies the length of algo, algos is our local list to match
193 * Returns DROPBEAR_SUCCESS if we have a match for algo, DROPBEAR_FAILURE
195 int have_algo(char* algo, size_t algolen, algo_type algos[]) { argument
201 && (strncmp(algos[i].name, algo, algolen) == 0)) {
H A Dcommon-kex.c28 #include "algo.h"
580 /* read the other side's algo list. buf_match_algo is a callback to match
592 algo_type * algo = NULL; local
594 /* which algo couldn't match */
606 algo = ses.buf_match_algo(ses.payload, sshkex, &goodguess);
608 if (algo == NULL) {
612 TRACE(("kex algo %s", algo->name))
613 ses.newkeys->algo_kex = algo->val;
616 algo
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java277 private static final String algo = "testPublicKeyAlgorithm"; field in class:TestCertUtils.TestPublicKey
285 return algo;
/external/iproute2/ip/
H A Dipxfrm.c508 static void __xfrm_algo_print(struct xfrm_algo *algo, int type, int len, argument
519 if (len < sizeof(*algo)) {
523 len -= sizeof(*algo);
525 fprintf(fp, "%s ", algo->alg_name);
527 keylen = algo->alg_key_len / 8;
535 fprintf(fp, "%.2x", (unsigned char)algo->alg_key[i]);
538 fprintf(fp, " (%d bits)", algo->alg_key_len);
545 static inline void xfrm_algo_print(struct xfrm_algo *algo, int type, int len, argument
548 return __xfrm_algo_print(algo, type, len, fp, prefix, 1);
551 static void xfrm_aead_print(struct xfrm_algo_aead *algo, in argument
555 struct xfrm_algo algo; member in struct:__anon5214
[all...]
/external/kernel-headers/original/linux/
H A Di2c.h223 struct i2c_algorithm *algo;/* the algorithm to access the bus */ member in struct:i2c_adapter
346 return adap->algo->functionality(adap);

Completed in 898 milliseconds