Home
last modified time | relevance | path

Searched refs:CBB_add_asn1_uint64 (Results 1 – 15 of 15) sorted by relevance

/external/boringssl/src/ssl/
Dssl_asn1.cc208 !CBB_add_asn1_uint64(&session, kVersion) || in SSL_SESSION_to_bytes_full()
209 !CBB_add_asn1_uint64(&session, in->ssl_version) || in SSL_SESSION_to_bytes_full()
219 !CBB_add_asn1_uint64(&child, in->time) || in SSL_SESSION_to_bytes_full()
221 !CBB_add_asn1_uint64(&child, in->timeout)) { in SSL_SESSION_to_bytes_full()
249 !CBB_add_asn1_uint64(&child, in->verify_result)) { in SSL_SESSION_to_bytes_full()
277 !CBB_add_asn1_uint64(&child, in->tlsext_tick_lifetime_hint)) { in SSL_SESSION_to_bytes_full()
341 !CBB_add_asn1_uint64(&child, in->group_id))) { in SSL_SESSION_to_bytes_full()
385 !CBB_add_asn1_uint64(&child, in->peer_signature_algorithm))) { in SSL_SESSION_to_bytes_full()
392 !CBB_add_asn1_uint64(&child, in->ticket_max_early_data))) { in SSL_SESSION_to_bytes_full()
399 !CBB_add_asn1_uint64(&child, in->auth_timeout))) { in SSL_SESSION_to_bytes_full()
/external/boringssl/src/crypto/pkcs8/
Dp5_pbev2.c189 !CBB_add_asn1_uint64(&kdf_param, iterations) || in PKCS5_pbe2_encrypt_init()
192 !CBB_add_asn1_uint64(&kdf_param, EVP_CIPHER_key_length(cipher))) || in PKCS5_pbe2_encrypt_init()
Dpkcs8.c344 !CBB_add_asn1_uint64(&param, iterations) || in pkcs12_pbe_encrypt_init()
/external/boringssl/src/crypto/dh/
Ddh_asn1.c126 !CBB_add_asn1_uint64(&child, dh->priv_length)) || in DH_marshal_parameters()
/external/boringssl/src/crypto/evp/
Dp_rsa_asn1.c140 !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) || in rsa_priv_encode()
Dp_ed25519_asn1.c133 !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) || in ed25519_priv_encode()
Dp_ec_asn1.c176 !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) || in eckey_priv_encode()
Dp_dsa_asn1.c179 !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) || in dsa_priv_encode()
/external/boringssl/src/include/openssl/
Dbytestring.h433 OPENSSL_EXPORT int CBB_add_asn1_uint64(CBB *cbb, uint64_t value);
/external/boringssl/src/crypto/rsa_extra/
Drsa_asn1.c238 !CBB_add_asn1_uint64(&child, kVersionTwoPrime) || in RSA_marshal_private_key()
/external/boringssl/src/crypto/dsa/
Ddsa_asn1.c216 !CBB_add_asn1_uint64(&child, 0 /* version */) || in DSA_marshal_private_key()
/external/boringssl/src/crypto/bytestring/
Dcbb.c442 int CBB_add_asn1_uint64(CBB *cbb, uint64_t value) { in CBB_add_asn1_uint64() function
Dbytestring_test.cc640 ASSERT_TRUE(CBB_add_asn1_uint64(cbb.get(), test->value)); in TEST()
/external/boringssl/src/crypto/ec_extra/
Dec_asn1.c202 !CBB_add_asn1_uint64(&ec_private_key, 1 /* version */) || in EC_KEY_marshal_private_key()
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp4485 if (!CBB_add_asn1_uint64(cbb, static_cast<uint64_t>(data))) { in NativeCrypto_asn1_write_uint64()