HomeSort by: relevance | last modified time | path
    Searched defs:keys (Results 1 - 25 of 204) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/crypto/external/bsd/heimdal/dist/lib/kadm5/
default_keys.c 42 print_keys(krb5_context context, Key *keys, size_t nkeys)
48 printf("keys:\n");
52 ret = krb5_enctype_to_string(context, keys[i].key.keytype, &str);
55 (int)keys[i].key.keytype);
60 if (keys[i].salt) {
63 switch (keys[i].salt->type) {
71 printf("unknown salt: %d", keys[i].salt->type);
74 if (keys[i].salt->salt.length)
75 printf("%.*s", (int)keys[i].salt->salt.length,
76 (char *)keys[i].salt->salt.data)
88 Key *keys; local
    [all...]
chpass_s.c 52 Key *keys; local
89 num_keys = ent.entry.keys.len;
90 keys = ent.entry.keys.val;
92 ent.entry.keys.len = 0;
93 ent.entry.keys.val = NULL;
98 _kadm5_free_keys(context->context, num_keys, keys);
101 _kadm5_free_keys(context->context, num_keys, keys);
108 existsp = _kadm5_exists_keys_hist(ent.entry.keys.val,
109 ent.entry.keys.len
    [all...]
  /src/external/mpl/bind/dist/lib/dns/include/dns/
ipkeylist.h 25 * A structure holding a list of addresses and keys. Used to store
31 dns_name_t **keys; member in struct:dns_ipkeylist
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
ipkeylist.h 26 * A structure holding a list of addresses, dscps and keys. Used to
32 dns_name_t **keys; member in struct:dns_ipkeylist
  /src/external/mpl/dhcp/bind/dist/lib/dns/
ipkeylist.c 32 ipkl->keys = NULL;
56 if (ipkl->keys != NULL) {
58 if (ipkl->keys[i] == NULL) {
61 if (dns_name_dynamic(ipkl->keys[i])) {
62 dns_name_free(ipkl->keys[i], mctx);
64 isc_mem_put(mctx, ipkl->keys[i], sizeof(dns_name_t));
66 isc_mem_put(mctx, ipkl->keys,
113 if (src->keys != NULL) {
115 if (src->keys[i] != NULL) {
116 dst->keys[i] = isc_mem_get(mctx
147 dns_name_t **keys = NULL; local
    [all...]
  /src/lib/libc/citrus/
citrus_lc_messages.c 91 static const struct _citrus_LC_MESSAGES_key keys[] = { variable in typeref:struct:_citrus_LC_MESSAGES_key
111 for (key = &keys[0]; key->name != NULL; ++key) {
140 for (key = &keys[0]; key->name != NULL; ++key) {
citrus_lc_numeric.c 93 static const struct _citrus_LC_NUMERIC_key keys[] = { variable in typeref:struct:_citrus_LC_NUMERIC_key
112 for (key = &keys[0]; key->name != NULL; ++key) {
143 for (key = &keys[0]; key->name != NULL; ++key) {
citrus_lc_time.c 105 static const struct _citrus_LC_TIME_key keys[] = { variable in typeref:struct:_citrus_LC_TIME_key
165 for (key = &keys[0]; key->name != NULL; ++key) {
191 for (key = &keys[0]; key->name != NULL; ++key) {
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_kx/
crypto_kx.c 42 unsigned char keys[2 * crypto_kx_SESSIONKEYBYTES]; local
57 COMPILER_ASSERT(sizeof keys <= crypto_generichash_BYTES_MAX);
58 crypto_generichash_init(&h, NULL, 0U, sizeof keys);
63 crypto_generichash_final(&h, keys, sizeof keys);
66 rx[i] = keys[i];
67 tx[i] = keys[i + crypto_kx_SESSIONKEYBYTES];
69 sodium_memzero(keys, sizeof keys);
83 unsigned char keys[2 * crypto_kx_SESSIONKEYBYTES] local
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
rc4test.c 25 static unsigned char keys[6][30] = { variable
69 RC4_set_key(&key, keys[i][0], &(keys[i][1]));
80 RC4_set_key(&key, keys[3][0], &(keys[3][1]));
93 RC4_set_key(&key, keys[3][0], &(keys[3][1]));
112 RC4_set_key(&key, keys[0][0], &(keys[3][1]));
  /src/crypto/external/bsd/heimdal/dist/kadmin/
ext.c 50 krb5_keytab_entry *keys = NULL; local
71 krb5_warnx(context, "principal has no keys, or user lacks "
72 "get-keys privilege for %s", unparsed);
77 * can have corrupted a principal's keys in the HDB. If some
80 * If all keys are bogus then the server may be a pre-1.6,
81 * post-1.5 server and the client lacks get-keys privilege, or
82 * the keys are corrupted. We can't tell here.
85 krb5_warnx(context, "user lacks get-keys privilege for %s",
90 krb5_warnx(context, "some keys for %s are corrupted in the HDB",
93 keys = calloc(sizeof(*keys), princ.n_key_data)
    [all...]
init.c 54 krb5_keyblock *keys; local
93 /* Replace the string2key based keys with real random bytes */
94 ret = kadm5_randkey_principal(kadm_handle, princ, &keys, &n_keys);
101 krb5_free_keyblock_contents(context, &keys[i]);
102 free(keys);
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
salt-des3.c 50 DES_cblock keys[3]; local
73 memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
74 DES_set_odd_parity(keys + i);
75 if(DES_is_weak_key(keys + i))
76 _krb5_xor8(*(keys + i), (const unsigned char*)"\0\0\0\0\0\0\0\xf0");
77 DES_set_key_unchecked(keys + i, &s[i]);
86 memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
87 DES_set_odd_parity(keys + i)
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
rc4test.c 25 static unsigned char keys[6][30] = { variable
69 RC4_set_key(&key, keys[i][0], &(keys[i][1]));
80 RC4_set_key(&key, keys[3][0], &(keys[3][1]));
93 RC4_set_key(&key, keys[3][0], &(keys[3][1]));
112 RC4_set_key(&key, keys[0][0], &(keys[3][1]));
  /src/crypto/external/bsd/openssl.old/dist/test/
rc4test.c 19 static unsigned char keys[6][30] = { variable
63 RC4_set_key(&key, keys[i][0], &(keys[i][1]));
74 RC4_set_key(&key, keys[3][0], &(keys[3][1]));
87 RC4_set_key(&key, keys[3][0], &(keys[3][1]));
106 RC4_set_key(&key, keys[0][0], &(keys[3][1]));
  /src/crypto/external/cpl/trousers/dist/src/include/
tcs_context.h 31 struct keys_loaded *keys; member in struct:tcs_context
  /src/external/bsd/mdocml/dist/
tbl_opts.c 42 static const struct tbl_phrase keys[] = { variable in typeref:struct:tbl_phrase
60 #define KEY_MAXKEYS ((int)(sizeof(keys)/sizeof(keys[0])))
107 "%s", keys[key].name);
110 "%s want %d have %d", keys[key].name, want, len);
154 (strncasecmp(p + pos, keys[i].name, len) ||
155 keys[i].name[len] != '\0'))
168 if (keys[i].key)
169 tbl->opts.opts |= keys[i].key;
tbl_layout.c 41 static const struct tbl_phrase keys[] = { variable in typeref:struct:tbl_phrase
54 #define KEYS_MAX ((int)(sizeof(keys)/sizeof(keys[0])))
236 if (tolower((unsigned char)p[*pos]) == keys[i].name)
245 c = keys[i].key;
  /src/external/bsd/ntp/dist/sntp/tests/
keyFile.c 74 struct key * keys = NULL; local
78 TEST_ASSERT_EQUAL(0, auth_init(path, &keys));
79 TEST_ASSERT_NULL(keys);
88 struct key * keys = NULL; local
93 TEST_ASSERT_EQUAL(2, auth_init(path, &keys));
94 TEST_ASSERT_NOT_NULL(keys);
112 struct key * keys = NULL; local
119 TEST_ASSERT_EQUAL(3, auth_init(path, &keys));
120 TEST_ASSERT_NOT_NULL(keys);
147 struct key * keys = NULL local
173 struct key * keys = NULL; local
    [all...]
  /src/external/gpl2/texinfo/dist/info/
doc.h 64 FUNCTION_KEYSEQ *keys; member in struct:__anon9520
m-x.c 101 char *keys; local
106 keys = where_is (info_keymap, InfoCmd(info_execute_command));
109 if (!keys)
113 sprintf (prompt, "%d %s ", count, keys);
115 sprintf (prompt, "%s ", keys);
  /src/usr.bin/nbperf/
nbperf.h 43 const void * __restrict * keys; member in struct:nbperf
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
ks_mem.c 50 hx509_private_key *keys; member in struct:mem_data
82 for (i = 0; mem->keys && mem->keys[i]; i++)
83 hx509_private_key_free(&mem->keys[i]);
84 free(mem->keys);
160 hx509_private_key **keys)
165 for (i = 0; mem->keys && mem->keys[i]; i++)
167 *keys = calloc(i + 1, sizeof(**keys));
    [all...]
  /src/crypto/external/bsd/libsaslc/dist/test/hash_tests/
test_hash.c 47 * List of all property keys.
51 static const char *keys[] = { variable
92 for (i = 0; i < __arraycount(keys); i++) {
93 hval = hash(keys[i], hsize, hinit, shift);
98 used[hval] = keys[i];
115 printf("min and max hash size must be >= %zu\n", __arraycount(keys));
144 h_min = __arraycount(keys);
164 if (h_max < __arraycount(keys) ||
165 h_min < __arraycount(keys) ||
  /src/external/bsd/openldap/dist/servers/slapd/back-wt/
filterindex.c 114 struct berval *keys = NULL; local
170 &keys, op->o_tmpmemctx );
180 if( keys == NULL ) {
182 "<= wt_equality_candidates: (%s) no keys\n",
196 for ( i= 0; keys[i].bv_val != NULL; i++ ) {
197 rc = wt_key_read( op->o_bd, cursor, &keys[i], tmp, NULL, 0 );
218 ber_bvarray_free_x( keys, op->o_tmpmemctx );
244 struct berval *keys = NULL; local
291 &keys, op->o_tmpmemctx );
300 if( keys == NULL )
373 struct berval *keys = NULL; local
    [all...]

Completed in 61 milliseconds

1 2 3 4 5 6 7 8 9