Searched refs:key1 (Results 1 - 25 of 132) sorted by relevance

123456

/netbsd-current/crypto/external/bsd/heimdal/dist/lib/otp/
H A Dotp_verify.c46 OtpKey key1, key2; local
48 if (otp_parse (key1, passwd, ctx->alg)) {
52 memcpy (key2, key1, sizeof(key1));
56 memcpy (ctx->key, key1, sizeof(key1));
H A Dotptest.c43 test_one(OtpKey key1, char *name, char *val, argument
50 (*print)(key1, buf, sizeof(buf));
60 if (memcmp (key1, key2, OTPKEYSIZE) != 0) {
61 printf ("key1 != key2, ");
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A DMap2D.h46 virtual void put (Key1_t key1, Key2_t key2, Value_t val) = 0;
47 virtual Value_t get (Key1_t key1, Key2_t key2) = 0;
48 virtual Value_t get (Key1_t key1, Key2_t key2, Relation rel) = 0;
49 virtual Value_t remove (Key1_t key1, Key2_t key2) = 0;
H A DIndexMap2D.h42 void put (Key1_t key1, Key2_t key2, Value_t val);
43 Value_t get (Key1_t key1, Key2_t key2);
44 Value_t get (Key1_t key1, Key2_t key2,
46 Value_t remove (Key1_t key1, Key2_t key2);
68 IndexMap2D<Key1_t, Key2_t, Value_t>::put (Key1_t key1, Key2_t key2, Value_t val) argument
70 if (key1 < 0 || key2 < 0)
73 if (key1 < map1->size ())
74 map2 = map1->fetch ((int) key1);
78 map1->store ((int) key1, map2);
85 IndexMap2D<Key1_t, Key2_t, Value_t>::get (Key1_t key1, Key2_ argument
97 get(Key1_t key1, Key2_t key2, typename Map2D<Key1_t, Key2_t, Value_t>::Relation rel) argument
107 remove(Key1_t key1, Key2_t key2) argument
[all...]
H A DDefaultMap2D.h43 void put (Key1_t key1, Key2_t key2, Value_t val);
44 Value_t get (Key1_t key1, Key2_t key2);
45 Value_t get (Key1_t key1, Key2_t key2,
82 DefaultMap2D<Key1_t, Key2_t, Value_t>::put (Key1_t key1, Key2_t key2, Value_t val) argument
84 Map<Key2_t, Value_t> *map2 = map1->get (key1);
92 map1->put (key1, map2);
99 DefaultMap2D<Key1_t, Key2_t, Value_t>::get (Key1_t key1, Key2_t key2) argument
101 Map<Key2_t, Value_t> *map2 = map1->get (key1);
109 DefaultMap2D<Key1_t, Key2_t, Value_t>::get (Key1_t key1, Key2_t key2, argument
112 Map<Key2_t, Value_t> *map2 = map1->get (key1);
[all...]
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DMap2D.h46 virtual void put (Key1_t key1, Key2_t key2, Value_t val) = 0;
47 virtual Value_t get (Key1_t key1, Key2_t key2) = 0;
48 virtual Value_t get (Key1_t key1, Key2_t key2, Relation rel) = 0;
49 virtual Value_t remove (Key1_t key1, Key2_t key2) = 0;
H A DIndexMap2D.h42 void put (Key1_t key1, Key2_t key2, Value_t val);
43 Value_t get (Key1_t key1, Key2_t key2);
44 Value_t get (Key1_t key1, Key2_t key2,
46 Value_t remove (Key1_t key1, Key2_t key2);
68 IndexMap2D<Key1_t, Key2_t, Value_t>::put (Key1_t key1, Key2_t key2, Value_t val) argument
70 if (key1 < 0 || key2 < 0)
73 if (key1 < map1->size ())
74 map2 = map1->fetch ((int) key1);
78 map1->store ((int) key1, map2);
85 IndexMap2D<Key1_t, Key2_t, Value_t>::get (Key1_t key1, Key2_ argument
97 get(Key1_t key1, Key2_t key2, typename Map2D<Key1_t, Key2_t, Value_t>::Relation rel) argument
107 remove(Key1_t key1, Key2_t key2) argument
[all...]
H A DDefaultMap2D.h43 void put (Key1_t key1, Key2_t key2, Value_t val);
44 Value_t get (Key1_t key1, Key2_t key2);
45 Value_t get (Key1_t key1, Key2_t key2,
82 DefaultMap2D<Key1_t, Key2_t, Value_t>::put (Key1_t key1, Key2_t key2, Value_t val) argument
84 Map<Key2_t, Value_t> *map2 = map1->get (key1);
92 map1->put (key1, map2);
99 DefaultMap2D<Key1_t, Key2_t, Value_t>::get (Key1_t key1, Key2_t key2) argument
101 Map<Key2_t, Value_t> *map2 = map1->get (key1);
109 DefaultMap2D<Key1_t, Key2_t, Value_t>::get (Key1_t key1, Key2_t key2, argument
112 Map<Key2_t, Value_t> *map2 = map1->get (key1);
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/des/
H A Dstr2key.c40 void DES_string_to_2keys(const char *str, DES_cblock *key1, DES_cblock *key2) argument
45 memset(key1, 0, 8);
53 (*key1)[i % 8] ^= (j << 1);
61 (*key1)[7 - (i % 8)] ^= j;
67 memcpy(key2, key1, 8);
68 DES_set_odd_parity(key1);
70 DES_set_key_unchecked(key1, &ks);
71 DES_cbc_cksum((const unsigned char *)str, key1, length, &ks, key1);
75 DES_set_odd_parity(key1);
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/des/
H A Dstr2key.c46 void DES_string_to_2keys(const char *str, DES_cblock *key1, DES_cblock *key2) argument
51 memset(key1, 0, 8);
59 (*key1)[i % 8] ^= (j << 1);
67 (*key1)[7 - (i % 8)] ^= j;
73 memcpy(key2, key1, 8);
74 DES_set_odd_parity(key1);
76 DES_set_key_unchecked(key1, &ks);
77 DES_cbc_cksum((const unsigned char *)str, key1, length, &ks, key1);
81 DES_set_odd_parity(key1);
[all...]
/netbsd-current/crypto/external/bsd/openssl/lib/libdes/
H A Dostr2key.c95 void des_string_to_2keys(const char *str, des_cblock *key1, des_cblock *key2) argument
101 memset(key1,0,8);
109 (*key2)[i]=(*key1)[i]=(str[i]<<1);
119 (*key1)[i%8]^=(str[i]<<1);
129 (*key1)[i%8]^=(j<<1);
139 (*key1)[7-(i%8)]^=j;
144 if (length <= 8) memcpy(key2,key1,8);
146 des_set_odd_parity(key1);
148 des_set_key_unchecked(key1,ks);
149 des_cbc_cksum((const unsigned char*)str,key1,lengt
[all...]
H A Doread2pwd.c73 int des_read_2passwords(des_cblock *key1, des_cblock *key2, const char *prompt, argument
80 des_string_to_2keys(buf,key1,key2);
/netbsd-current/crypto/external/bsd/openssl.old/lib/libdes/
H A Dostr2key.c95 void des_string_to_2keys(const char *str, des_cblock *key1, des_cblock *key2) argument
101 memset(key1,0,8);
109 (*key2)[i]=(*key1)[i]=(str[i]<<1);
119 (*key1)[i%8]^=(str[i]<<1);
129 (*key1)[i%8]^=(j<<1);
139 (*key1)[7-(i%8)]^=j;
144 if (length <= 8) memcpy(key2,key1,8);
146 des_set_odd_parity(key1);
148 des_set_key_unchecked(key1,ks);
149 des_cbc_cksum((const unsigned char*)str,key1,lengt
[all...]
H A Doread2pwd.c73 int des_read_2passwords(des_cblock *key1, des_cblock *key2, const char *prompt, argument
80 des_string_to_2keys(buf,key1,key2);
/netbsd-current/external/mpl/bind/dist/bin/tests/system/dns64/ns1/
H A Dsign.sh20 key1=$($KEYGEN -q -a $DEFAULT_ALGORITHM $zone)
23 cat $infile $key1.key $key2.key >$zonefile
/netbsd-current/external/mpl/bind/dist/bin/tests/system/redirect/ns1/
H A Dsign.sh20 key1=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} $zone)
23 cat $infile $key1.key $key2.key >$zonefile
31 key1=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -3 $zone)
34 cat $infile $key1.key $key2.key >$zonefile
/netbsd-current/external/mpl/bind/dist/bin/tests/system/redirect/ns3/
H A Dsign.sh20 key1=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} $zone)
23 cat $infile $key1.key $key2.key >$zonefile
31 key1=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -3 $zone)
34 cat $infile $key1.key $key2.key >$zonefile
/netbsd-current/external/mpl/bind/dist/bin/tests/system/dnssec/ns2/
H A Dsign.sh203 key1=$("$KEYGEN" -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -n zone -f KSK "$zone")
205 cat "$key1.key" "$key2.key" >>"$zonefile"
206 "$SIGNER" -3 - -A -H 1 -g -o "$zone" -k "$key1" "$zonefile" "$key2" >/dev/null 2>&1
211 key1=$("$KEYGEN" -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -n zone -f KSK "$zone")
213 "$DSFROMKEY" -C "$key1.key" >"$key1.cds"
214 cat "$infile" "$key1.key" "$key2.key" "$key1.cds" >$zonefile
220 key1=$("$KEYGEN" -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -n zone -f KSK "$zone")
224 cat "$infile" "$key1
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/redirect/ns5/
H A Dsign.sh24 key1=$($KEYGEN -q -a $DEFAULT_ALGORITHM -b $DEFAULT_BITS $zone 2>/dev/null)
27 cat $infile $key1.key $key2.key >$zonefile
38 key1=$($KEYGEN -q -a $DEFAULT_ALGORITHM -b $DEFAULT_BITS $zone 2>/dev/null)
41 # cat $infile $key1.key $key2.key > $zonefile
42 cat $infile dsset-signed. $key1.key $key2.key >$zonefile
/netbsd-current/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
H A Dcipher_aes_xts.h22 const AES_KEY *key1, const AES_KEY *key2,
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dm-data.cc11 const int key1; member in class:gnu_obj_1
17 gnu_obj_1(antiquities a, long l): test(true), key1(5), key2(l), value(a) {}
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dm-data.cc11 const int key1; member in class:gnu_obj_1
17 gnu_obj_1(antiquities a, long l): test(true), key1(5), key2(l), value(a) {}
/netbsd-current/external/mpl/bind/dist/bin/tests/system/dsdigest/ns1/
H A Dsign.sh25 key1=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -n zone $zone)
28 cat $infile $key1.key $key2.key >$zonefile
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dfast.c41 krb5_keyblock *key1,
52 ret = krb5_crypto_init(context, key1, 0, &crypto1);
68 key1->keytype, armorkey);
40 _krb5_fast_cf2(krb5_context context, krb5_keyblock *key1, const char *pepper1, krb5_keyblock *key2, const char *pepper2, krb5_keyblock *armorkey, krb5_crypto *armor_crypto) argument
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Ddestest.c71 ebc3_test(char key1[8], char key2[8], char key3[8], char in[8], char out[8]) argument
77 memcpy(k1, key1, 8);
97 cbc_test(char key1[8], char iv[8], char in[24], char out[24]) argument
104 memcpy(k1, key1, 8);
119 cfb64_test(char key1[8], char iv[8], char in[23], char out[23]) argument
127 memcpy(k1, key1, 8);
145 cbc3_test(char key1[8], char key2[8], char key3[8], argument
153 memcpy(k1, key1, 8);
179 pcbc_test(char key1[8], char iv[8], char in[24], char out[24]) argument
186 memcpy(k1, key1,
201 cbc_cksum(char key1[8], char iv[8], char *in, size_t len, uint32_t ret, char out[8]) argument
[all...]

Completed in 332 milliseconds

123456