Home
last modified time | relevance | path

Searched refs:pkey_data (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/bearssl/src/x509/
H A Dx509_decoder.t0104 \ Get the address and length for the pkey_data buffer.
105 : addr-len-pkey_data ( -- addr len )
106 CX 0 8191 { offsetof(br_x509_decoder_context, pkey_data) }
114 CTX->pkey.key.rsa.n = CTX->pkey_data;
116 CTX->pkey.key.rsa.e = CTX->pkey_data + nlen;
126 CTX->pkey.key.ec.q = CTX->pkey_data;
209 \ the pkey_data[] buffer, if they fit.
211 addr-len-pkey_data
213 addr-len-pkey_data swap nlen + swap nlen -
229 dup addr-len-pkey_data rot < if
H A Dx509_decoder.c153 T0_INT2(offsetof(br_x509_decoder_context, pkey_data)), 0x01,
617 CTX->pkey.key.ec.q = CTX->pkey_data; in br_x509_decoder_run()
628 CTX->pkey.key.rsa.n = CTX->pkey_data; in br_x509_decoder_run()
630 CTX->pkey.key.rsa.e = CTX->pkey_data + nlen; in br_x509_decoder_run()
H A Dx509_minimal.c483 T0_INT2(offsetof(br_x509_minimal_context, pkey_data)), 0x01,
1279 memcpy(CTX->ee_pkey_data, CTX->pkey_data, qlen); in br_x509_minimal_run()
1292 memcpy(CTX->ee_pkey_data, CTX->pkey_data, nlen + elen); in br_x509_minimal_run()
1377 pk.key.ec.q = CTX->pkey_data; in br_x509_minimal_run()
1391 pk.key.rsa.n = CTX->pkey_data; in br_x509_minimal_run()
1393 pk.key.rsa.e = CTX->pkey_data + nlen; in br_x509_minimal_run()
H A Dx509_minimal.t0797 \ Get the address and length for the pkey_data buffer.
798 : addr-len-pkey_data ( -- addr len )
799 CX 0 8191 { offsetof(br_x509_minimal_context, pkey_data) }
806 memcpy(CTX->ee_pkey_data, CTX->pkey_data, nlen + elen);
818 memcpy(CTX->ee_pkey_data, CTX->pkey_data, qlen);
910 \ into CTX->pkey_data; the modulus and exponent length are provided as
919 pk.key.rsa.n = CTX->pkey_data;
921 pk.key.rsa.e = CTX->pkey_data + nlen;
937 pk.key.ec.q = CTX->pkey_data;
1247 \ the pkey_data[] buffer, if they fit.
[all …]
/freebsd/lib/libc/rpc/
H A Dsvc_auth_des.c176 char pkey_data[1024]; in _svcauth_des() local
179 if (! getpublickey(cred->adc_fullname.name, pkey_data)) { in _svcauth_des()
183 pkey.n_bytes = pkey_data; in _svcauth_des()
184 pkey.n_len = strlen(pkey_data) + 1; in _svcauth_des()
H A Dauth_des.c124 u_char pkey_data[1024]; in authdes_seccreate() local
128 if (! getpublickey(servername, (char *) pkey_data)) { in authdes_seccreate()
135 pkey.n_bytes = (char *) pkey_data; in authdes_seccreate()
136 pkey.n_len = (u_int)strlen((char *)pkey_data) + 1; in authdes_seccreate()
/freebsd/contrib/bearssl/inc/
H A Dbearssl_x509.h729 unsigned char pkey_data[BR_X509_BUFSIZE_KEY]; member
1042 unsigned char pkey_data[BR_X509_BUFSIZE_KEY]; member