Home
last modified time | relevance | path

Searched refs:b64 (Results 1 – 21 of 21) sorted by relevance

/dragonfly/crypto/openssh/
HDsshbuf-misc.c94 sshbuf_dtob64(const struct sshbuf *d, struct sshbuf *b64, int wrap) in sshbuf_dtob64() argument
100 if (d == NULL || b64 == NULL || sshbuf_len(d) >= SIZE_MAX / 2) in sshbuf_dtob64()
113 if ((r = sshbuf_put_u8(b64, s[i])) != 0) in sshbuf_dtob64()
115 if (i % 70 == 69 && (r = sshbuf_put_u8(b64, '\n')) != 0) in sshbuf_dtob64()
118 if ((i - 1) % 70 != 69 && (r = sshbuf_put_u8(b64, '\n')) != 0) in sshbuf_dtob64()
121 if ((r = sshbuf_put(b64, s, strlen(s))) != 0) in sshbuf_dtob64()
149 sshbuf_b64tod(struct sshbuf *buf, const char *b64) in sshbuf_b64tod() argument
151 size_t plen = strlen(b64); in sshbuf_b64tod()
159 if ((nlen = b64_pton(b64, p, plen)) < 0) { in sshbuf_b64tod()
172 sshbuf_dtourlb64(const struct sshbuf *d, struct sshbuf *b64, int wrap) in sshbuf_dtourlb64() argument
[all …]
HDsshbuf.h240 int sshbuf_dtob64(const struct sshbuf *d, struct sshbuf *b64, int wrap);
242 int sshbuf_dtourlb64(const struct sshbuf *d, struct sshbuf *b64, int wrap);
245 int sshbuf_b64tod(struct sshbuf *buf, const char *b64);
HDsshsig.c94 char *b64 = NULL; in sshsig_dearmor() local
135 if ((b64 = sshbuf_dup_string(sbuf)) == NULL) { in sshsig_dearmor()
147 if ((r = sshbuf_b64tod(buf, b64)) != 0) { in sshsig_dearmor()
159 free(b64); in sshsig_dearmor()
HDssh-keygen.c347 char comment[61], *b64; in do_convert_to_ssh2() local
354 if ((b64 = sshbuf_dtob64_string(b, 1)) == NULL) in do_convert_to_ssh2()
367 fprintf(stdout, "Comment: \"%s\"\n%s", comment, b64); in do_convert_to_ssh2()
369 free(b64); in do_convert_to_ssh2()
/dragonfly/sys/crypto/siphash/
HDsiphash.c60 ctx->buf.b64 = 0; in SipHash_InitX()
96 x = MIN(len, sizeof(ctx->buf.b64) - ctx->buflen); in SipBuf()
104 ctx->v[3] ^= le64toh(ctx->buf.b64); in SipBuf()
106 ctx->v[0] ^= le64toh(ctx->buf.b64); in SipBuf()
107 ctx->buf.b64 = 0; in SipBuf()
HDsiphash.h55 uint64_t b64; member
/dragonfly/crypto/libressl/apps/openssl/
HDasn1pars.c242 BIO *in = NULL, *out = NULL, *b64 = NULL, *derout = NULL; in asn1parse_main() local
321 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in asn1parse_main()
323 BIO_push(b64, in); in asn1parse_main()
325 in = b64; in asn1parse_main()
326 b64 = tmp; in asn1parse_main()
415 BIO_free(b64); in asn1parse_main()
HDrand.c151 BIO *b64 = BIO_new(BIO_f_base64()); in rand_main() local
152 if (b64 == NULL) in rand_main()
154 out = BIO_push(b64, out); in rand_main()
HDenc.c341 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL; in enc_main() local
550 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in enc_main()
553 BIO_set_callback(b64, BIO_debug_callback); in enc_main()
554 BIO_set_callback_arg(b64, (char *) bio_err); in enc_main()
557 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in enc_main()
559 wbio = BIO_push(b64, wbio); in enc_main()
561 rbio = BIO_push(b64, rbio); in enc_main()
763 BIO_free(b64); in enc_main()
/dragonfly/crypto/libressl/crypto/asn1/
HDasn_mime.c152 BIO *b64; in B64_write_ASN1() local
155 b64 = BIO_new(BIO_f_base64()); in B64_write_ASN1()
156 if (!b64) { in B64_write_ASN1()
162 out = BIO_push(b64, out); in B64_write_ASN1()
166 BIO_free(b64); in B64_write_ASN1()
187 BIO *b64; in b64_read_asn1() local
189 if (!(b64 = BIO_new(BIO_f_base64()))) { in b64_read_asn1()
193 bio = BIO_push(b64, bio); in b64_read_asn1()
199 BIO_free(b64); in b64_read_asn1()
/dragonfly/contrib/file/magic/Magdir/
HDber30 >>>&64 search/b64 \x5f\x81\x49\x01\x03\x5f\x81\x3d\x01
38 >>&64 search/b64 \x5f\x81\x49\x01\x03\x5f\x81\x3d\x01
56 >>&64 search/b64 \x5f\x81\x49\x01\x03\x5f\x81\x3d\x01
/dragonfly/contrib/wpa_supplicant/src/eap_server/
HDtncs.c182 unsigned char *b64; in TNC_TNCS_SendMessage() local
198 b64 = base64_encode(message, messageLength, &b64len); in TNC_TNCS_SendMessage()
199 if (b64 == NULL) in TNC_TNCS_SendMessage()
206 os_free(b64); in TNC_TNCS_SendMessage()
215 (unsigned int) messageType, b64); in TNC_TNCS_SendMessage()
217 os_free(b64); in TNC_TNCS_SendMessage()
/dragonfly/contrib/wpa_supplicant/src/eap_peer/
HDtncc.c147 unsigned char *b64; in TNC_TNCC_SendMessage() local
159 b64 = base64_encode(message, messageLength, &b64len); in TNC_TNCC_SendMessage()
160 if (b64 == NULL) in TNC_TNCC_SendMessage()
168 os_free(b64); in TNC_TNCC_SendMessage()
176 (unsigned int) messageType, b64); in TNC_TNCC_SendMessage()
178 os_free(b64); in TNC_TNCC_SendMessage()
/dragonfly/sys/crypto/
HDsha1.h48 u_int64_t b64[1]; member
HDsha1.c66 #define BCOUNT (ctxt->c.b64[0] / 8)
73 ctxt->c.b64[0] += 8; \
235 ctxt->c.b64[0] += copysiz * 8; in sha1_loop()
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/
HDhs20_supplicant.c343 unsigned char *b64; in hs20_get_icon() local
362 b64 = base64_encode(&icon->image[offset], size, &b64_size); in hs20_get_icon()
363 if (b64 && buf_len >= b64_size) { in hs20_get_icon()
364 os_memcpy(reply, b64, b64_size); in hs20_get_icon()
369 os_free(b64); in hs20_get_icon()
/dragonfly/contrib/ldns/
HDhost2str.c490 char *b64; in ldns_rdf2buffer_str_b64() local
498 if (!(b64 = LDNS_XMALLOC(char, size))) in ldns_rdf2buffer_str_b64()
501 if (ldns_b64_ntop(ldns_rdf_data(rdf), ldns_rdf_size(rdf), b64, size)) { in ldns_rdf2buffer_str_b64()
502 ldns_buffer_printf(output, "%s", b64); in ldns_rdf2buffer_str_b64()
504 LDNS_FREE(b64); in ldns_rdf2buffer_str_b64()
1052 char *b64; in ldns_rdf2buffer_str_int16_data() local
1060 b64 = LDNS_XMALLOC(char, size); in ldns_rdf2buffer_str_int16_data()
1061 if(!b64) in ldns_rdf2buffer_str_int16_data()
1067 b64, size)) { in ldns_rdf2buffer_str_int16_data()
1068 ldns_buffer_printf(output, "%s", b64); in ldns_rdf2buffer_str_int16_data()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
HDhsa-brig.c900 bytes.b64 = (uint64_t) TREE_INT_CST_LOW (value); in emit_immediate_scalar_to_buffer()
924 bytes.b64 = (uint64_t)(uint32_t) tmp[1]; in emit_immediate_scalar_to_buffer()
925 bytes.b64 <<= 32; in emit_immediate_scalar_to_buffer()
926 bytes.b64 |= (uint32_t) tmp[0]; in emit_immediate_scalar_to_buffer()
1027 bytes.b64 = (uint64_t) m_int_value; in emit_to_buffer()
HDhsa-common.h1399 uint64_t b64; member
/dragonfly/usr.bin/dsynth/
HDprogress.css272 .b32, .b64 {color : #adad85; text-decoration: underline}
/dragonfly/share/misc/
HDpci_vendors878 15d9 1b64 SCC-B8SB80-B1 (NI22) Storage Controller Card
2074 5b64 RV370 GL [FireGL V3100]
21597 1b64 SCC-B8SB80-B1
23979 0b64 CXP-12 Interface Card 4C
32022 2b64 Xeon Processor E7 Product Family SMI Physical Port 1: REUT control/status
33062 3b64 5 Series/3400 Series Chipset HECI Controller
34349 9b64 10th Gen Core Processor Host Bridge/DRAM Registers