OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:key_blob
(Results
1 - 6
of
6
) sorted by relevancy
/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
evp-crypt.c
100
} *
key_blob
;
local
101
size_t bloblen = sizeof(*
key_blob
) - 1 + keylen;
103
key_blob
= malloc(bloblen);
105
key_blob
->hdr.bType = PLAINTEXTKEYBLOB;
106
key_blob
->hdr.bVersion = CUR_BLOB_VERSION;
107
key_blob
->hdr.reserved = 0;
108
key_blob
->hdr.aiKeyAlg = alg;
109
key_blob
->len = 24;
110
memcpy(
key_blob
->key, key, keylen);
113
(void *)
key_blob
, bloblen, 0, 0
[
all
...]
/src/crypto/external/cpl/trousers/dist/src/tcs/
tcs_key_mem_cache.c
294
TSS_KEY *
key_blob
)
319
if (!
key_blob
)
329
memcpy(entry->blob,
key_blob
, sizeof(TSS_KEY));
332
if (
key_blob
->algorithmParms.parmSize) {
333
BYTE *tmp_parms = (BYTE *)malloc(
key_blob
->algorithmParms.parmSize);
335
LogError("malloc of %u bytes failed.",
key_blob
->algorithmParms.parmSize);
340
memcpy(tmp_parms,
key_blob
->algorithmParms.parms,
key_blob
->algorithmParms.parmSize);
343
entry->blob->algorithmParms.parmSize =
key_blob
->algorithmParms.parmSize;
346
if (
key_blob
->pubKey.keyLength > 0)
[
all
...]
/src/crypto/external/cpl/trousers/dist/src/tcs/ps/
tcsps.c
568
BYTE *
key_blob
,
582
if ((rc = UnloadBlob_TSS_KEY(&offset,
key_blob
, &key)))
655
if ((rc = write_data(fd, (void *)
key_blob
, key_blob_size))) {
/src/crypto/external/bsd/openssh/dist/
monitor.c
150
static u_char *
key_blob
= NULL;
variable
567
if (
key_blob
== NULL || key_bloblen != bloblen ||
568
timingsafe_bcmp(
key_blob
, blob, key_bloblen))
577
free(
key_blob
);
581
key_blob
= NULL;
1399
if ((r = sshkey_to_blob(key, &
key_blob
, &key_bloblen)) != 0)
1603
/* XXX use sshkey_froms here; need to change
key_blob
, etc. */
/src/crypto/external/cpl/trousers/dist/src/tspi/ps/
tspps.c
488
BYTE *
key_blob
,
524
if ((result = UnloadBlob_TSS_KEY(&offset,
key_blob
, &key)))
578
if ((result = write_data(fd, (void *)
key_blob
, key_blob_size))) {
/src/crypto/external/apache2/openssl/dist/providers/implementations/encode_decode/
encode_key2any.c
1024
uint8_t *
key_blob
;
local
1032
key_blob
= OPENSSL_memdup(ossl_slh_dsa_key_get_pub(key), key_len);
1033
if (
key_blob
== NULL)
1036
*pder =
key_blob
;
Completed in 35 milliseconds
Indexes created Fri Sep 18 00:27:12 UTC 2026