Home
last modified time | relevance | path

Searched refs:tokey (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dtls-provider.c488 XORKEY *tokey = xor_newdata(NULL); in xor_dup() local
492 if (tokey != NULL && fromkey != NULL) { in xor_dup()
497 memcpy(tokey->pubkey, fromkey->pubkey, XOR_KEY_SIZE); in xor_dup()
498 tokey->haspubkey = 1; in xor_dup()
500 tokey->haspubkey = 0; in xor_dup()
505 memcpy(tokey->privkey, fromkey->privkey, XOR_KEY_SIZE); in xor_dup()
506 tokey->hasprivkey = 1; in xor_dup()
508 tokey->hasprivkey = 0; in xor_dup()
513 xor_freedata(tokey); in xor_dup()
514 tokey = NULL; in xor_dup()
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/kdc/
Dstring2key.c73 tokey(krb5_context context, in tokey() function
175 tokey(context, etype, password, salt, "Kerberos 5 (%s)"); in main()
182 tokey(context, ETYPE_DES_CBC_MD5, password, salt, "Kerberos 4"); in main()
188 tokey(context, ETYPE_DES_CBC_MD5, password, salt, "AFS"); in main()
/netbsd/src/crypto/external/bsd/openssh/dist/
Dssh-agent.c413 const struct sshkey *tokey, Identity *id, const char *user, in permitted_by_dest_constraints() argument
441 if (tokey != NULL && match_key_hop("to", tokey, &d->to) != 0) in permitted_by_dest_constraints()
/netbsd/src/crypto/external/bsd/heimdal/dist/
DChangeLog.20061747 * kdc/string2key.c (tokey): catch warnings, free memory after use.