Home
last modified time | relevance | path

Searched refs:tkey (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/crypto/cms/
Dcms_enc.c35 unsigned char *tkey = NULL; in ossl_cms_EncryptedContent_init_bio() local
123 tkey = OPENSSL_malloc(tkeylen); in ossl_cms_EncryptedContent_init_bio()
124 if (tkey == NULL) { in ossl_cms_EncryptedContent_init_bio()
128 if (EVP_CIPHER_CTX_rand_key(ctx, tkey) <= 0) in ossl_cms_EncryptedContent_init_bio()
133 ec->key = tkey; in ossl_cms_EncryptedContent_init_bio()
135 tkey = NULL; in ossl_cms_EncryptedContent_init_bio()
156 ec->key = tkey; in ossl_cms_EncryptedContent_init_bio()
158 tkey = NULL; in ossl_cms_EncryptedContent_init_bio()
200 OPENSSL_clear_free(tkey, tkeylen); in ossl_cms_EncryptedContent_init_bio()
/netbsd/src/external/bsd/ntp/dist/ntpd/
Dcmd_args.c122 u_long tkey; in getCmdOpts() local
125 tkey = (int)atol(p); in getCmdOpts()
126 if (tkey == 0 || tkey > NTP_MAXKEY) { in getCmdOpts()
131 authtrust(tkey, 1); in getCmdOpts()
Dntpdbase-opts.def341 arg-name = tkey;
Dinvoke-ntpd.texi537 This option takes a string argument @file{tkey}.
/netbsd/src/lib/libc/db/btree/
Dbt_put.c73 DBT tkey, tdata; in __bt_put() local
128 tkey.data = kb; in __bt_put()
129 tkey.size = NOVFLSIZE; in __bt_put()
134 key = &tkey; in __bt_put()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/pkcs7/
Dpk7_doit.c410 unsigned char *ek = NULL, *tkey = NULL; in PKCS7_dataDecode() local
606 tkey = OPENSSL_malloc(tkeylen); in PKCS7_dataDecode()
607 if (tkey == NULL) in PKCS7_dataDecode()
609 if (EVP_CIPHER_CTX_rand_key(evp_ctx, tkey) <= 0) in PKCS7_dataDecode()
612 ek = tkey; in PKCS7_dataDecode()
614 tkey = NULL; in PKCS7_dataDecode()
626 ek = tkey; in PKCS7_dataDecode()
628 tkey = NULL; in PKCS7_dataDecode()
638 OPENSSL_clear_free(tkey, tkeylen); in PKCS7_dataDecode()
639 tkey = NULL; in PKCS7_dataDecode()
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/kdc/
Dkrb5tgs.c1221 Key *tkey; in tgs_parse_request() local
1317 ap_req.ticket.enc_part.etype, &tkey); in tgs_parse_request()
1346 &tkey->key, in tgs_parse_request()
/netbsd/src/crypto/external/bsd/openssl/dist/test/
Devp_extra_test.c3167 EVP_PKEY *tkey = NULL; in test_keygen_with_empty_template() local
3181 if (!TEST_ptr(tkey = EVP_PKEY_new()) in test_keygen_with_empty_template()
3182 || !TEST_true(EVP_PKEY_set_type(tkey, EVP_PKEY_RSA)) in test_keygen_with_empty_template()
3183 || !TEST_ptr(ctx = EVP_PKEY_CTX_new(tkey, NULL))) in test_keygen_with_empty_template()
3196 EVP_PKEY_free(tkey); in test_keygen_with_empty_template()
/netbsd/src/crypto/external/bsd/heimdal/dist/
DChangeLog.2005941 * kdc/kerberos5.c (tgs_rep2): rename one of the tkey to uukey to