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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/isc/libsodium/dist/test/default/
auth3.c 6 static unsigned char key[32] = { variable in typeref:typename:unsigned char[32]
28 printf("%d\n", crypto_auth_hmacsha256_verify(a, c, sizeof c, key));
auth2.c 6 static unsigned char key[32] = { variable in typeref:typename:unsigned char[32]
27 crypto_auth_hmacsha256(a, c, sizeof c, key);
auth5.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_auth_keygen(key);
17 crypto_auth(a, c, clen, key);
18 if (crypto_auth_verify(a, c, clen, key) != 0) {
24 if (crypto_auth_verify(a, c, clen, key) == 0) {
29 if (crypto_auth_verify(a, c, clen, key) == 0) {
auth6.c 6 static unsigned char key[32] = "Jefe"; variable in typeref:typename:unsigned char[32]
16 crypto_auth_hmacsha512(a, c, sizeof c - 1U, key);
auth7.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_auth_keygen(key);
17 crypto_auth_hmacsha512(a, c, clen, key);
18 if (crypto_auth_hmacsha512_verify(a, c, clen, key) != 0) {
24 if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
29 if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
onetimeauth7.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_onetimeauth_keygen(key);
17 crypto_onetimeauth(a, c, clen, key);
18 if (crypto_onetimeauth_verify(a, c, clen, key) != 0) {
24 if (crypto_onetimeauth_verify(a, c, clen, key) == 0) {
29 if (crypto_onetimeauth_verify(a, c, clen, key) == 0) {
auth.c 6 static unsigned char key[32] = "Jefe"; variable in typeref:typename:unsigned char[32]
27 crypto_auth(a, c, sizeof c - 1U, key);
35 crypto_auth_hmacsha512_init(&st, key, sizeof key);
  /src/bin/pax/
getoldopt.c 39 static char *key; /* Points to next keyletter */ local in function:getoldopt
46 if (key == NULL) { /* First time */
48 key = argv[1];
49 if (*key == '-')
57 c = *key++;
59 key--;
  /src/lib/libwrap/
update.c 46 int key; local in function:request_fill
49 while ((key = va_arg(ap, int)) > 0) {
50 switch (key) {
52 tcpd_warn("request_fill: invalid key: %d", key);
  /src/libexec/makekey/
makekey.c 56 char *r, key[9], salt[3]; local in function:main
58 get(key, sizeof(key) - 1);
60 len = strlen(r = crypt(key, salt));
  /src/lib/libc/db/hash/
hash_func.c 62 * Assume that we've already split the bucket to which this key hashes,
74 const uint8_t *key;
78 for (key = keyarg, h = 0; len--;)
79 h = h * PRIME1 ^ (*key++ - ' ');
92 const uint8_t *e, *key;
96 key = keyarg;
97 e = key + len;
98 for (h = 0; key != e;) {
99 c = *key++;
100 if (!c && key > e
166 const uint8_t *key; local in function:hash4
    [all...]
  /src/lib/libc/db/recno/
rec_close.c 114 DBT data, key; local in function:__rec_sync
144 key.size = sizeof(recno_t);
145 key.data = &trec;
153 status = (dbp->seq)(dbp, &key, &data, R_FIRST);
158 status = (dbp->seq)(dbp, &key, &data, R_NEXT);
164 status = (dbp->seq)(dbp, &key, &data, R_FIRST);
171 status = (dbp->seq)(dbp, &key, &data, R_NEXT);
  /src/sys/arch/prep/prep/
ibm_machdep.c 49 char key[20]; local in function:pci_intr_fixup_ibm_6015
63 snprintf(key, sizeof(key), "pin-%c", 'A' + j);
64 prop_dictionary_set(sub, key, intr_num);
74 snprintf(key, sizeof(key), "devfunc-%d", i);
76 snprintf(key, sizeof(key), "pin-%c", 'A' + j);
77 prop_dictionary_set(sub, key, intr_num);
79 prop_dictionary_set(dict, key, sub)
    [all...]
  /src/sys/dev/scsipi/
atapi_base.c 61 int key, error; local in function:atapi_interpret_sense
78 * more than the sense key
83 key = (xs->sense.atapi_sense & 0xf0) >> 4;
84 switch (key) {
150 if (!key) {
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_hashtab.h 43 unsigned long key; member in struct:drm_hash_item
58 extern int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item);
60 extern void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key);
61 extern int drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key);
  /src/sys/modules/luapmf/
luapmf.c 57 const char *key, *value; local in function:set_platform
59 key = lua_tostring(L, -2);
61 if (key != NULL && value != NULL)
62 pmf_set_platform(key, value);
69 const char *key, *value; local in function:get_platform
71 key = lua_tostring(L, -1);
72 if (key != NULL) {
73 value = pmf_get_platform(key);
  /src/sys/stand/efiboot/
console.c 38 EFI_INPUT_KEY key; local in function:getchar
41 key = key_cur;
44 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key);
48 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key);
52 return key.UnicodeChar;
67 EFI_INPUT_KEY key; local in function:ischar
73 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key);
75 key_cur = key;
  /src/tests/crypto/opencrypto/
h_arc4.c 39 unsigned char key[] = "abcdefgh"; variable in typeref:typename:unsigned char[]
60 cs.key = key;
h_camellia.c 40 unsigned char key[32] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, variable in typeref:typename:unsigned char[32]
66 cs.key = key;
h_cbcdes.c 39 unsigned char key[] = "abcdefgh"; variable in typeref:typename:unsigned char[]
61 cs.key = key;
h_null.c 39 unsigned char key[] = "abcdefgh"; variable in typeref:typename:unsigned char[]
56 cs.key = key;
  /src/lib/libc/citrus/
citrus_lc_messages.c 103 const struct _citrus_LC_MESSAGES_key *key; local in function:_citrus_LC_MESSAGES_init_normal
111 for (key = &keys[0]; key->name != NULL; ++key) {
112 if (_db_lookupstr_by_s(db, key->name, &s, NULL))
115 (((char *)(void *)data) + key->offset);
131 const struct _citrus_LC_MESSAGES_key *key; local in function:_citrus_LC_MESSAGES_init_fallback
140 for (key = &keys[0]; key->name != NULL; ++key) {
    [all...]
citrus_lc_numeric.c 104 const struct _citrus_LC_NUMERIC_key *key; local in function:_citrus_LC_NUMERIC_init_normal
112 for (key = &keys[0]; key->name != NULL; ++key) {
113 if (_db_lookupstr_by_s(db, key->name, &s, NULL))
116 (((char *)(void *)data) + key->offset);
134 const struct _citrus_LC_NUMERIC_key *key; local in function:_citrus_LC_NUMERIC_init_fallback
143 for (key = &keys[0]; key->name != NULL; ++key) {
    [all...]
citrus_lookup_factory.c 59 char key[LINE_MAX], data[LINE_MAX]; local in function:convert_line
66 /* key */
73 snprintf(key, sizeof(key), "%.*s", (int)(p-line), line);
74 _bcs_convert_to_lower(key);
81 return _db_factory_addstr_by_s(df, key, data);
  /src/lib/libc/resolv/
mtctxres.c 15 static pthread_key_t key; variable in typeref:typename:pthread_key_t
30 * Initialize the TSD key. By doing this at library load time, we're
38 pthread_keycreate_ret = pthread_key_create(&key, __res_destroy_ctx);
67 if (pthread_getspecific(key) != 0) {
79 if ((ret = pthread_setspecific(key, mt)) != 0) {
122 if (((mt = pthread_getspecific(key)) != 0) ||
124 (mt = pthread_getspecific(key)) != 0)) {

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>