HomeSort by relevance Sort by last modified time
    Searched refs:cbb (Results 51 - 74 of 74) sorted by null

1 23

  /external/boringssl/src/crypto/evp/
evp_extra_test.cc 499 bssl::ScopedCBB cbb; local
500 EXPECT_FALSE(EVP_marshal_public_key(cbb.get(), empty.get()))
580 bssl::ScopedCBB cbb; local
583 ASSERT_TRUE(CBB_init(cbb.get(), 0));
584 ASSERT_TRUE(EVP_marshal_public_key(cbb.get(), pubkey.get()));
585 ASSERT_TRUE(CBB_finish(cbb.get(), &der, &der_len));
590 ASSERT_TRUE(CBB_init(cbb.get(), 0));
591 EXPECT_FALSE(EVP_marshal_private_key(cbb.get(), pubkey.get()));
595 cbb.Reset();
    [all...]
  /external/boringssl/src/crypto/pkcs7/
pkcs7_test.cc 484 bssl::ScopedCBB cbb; local
521 bssl::ScopedCBB cbb; local
    [all...]
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc 321 * Finishes a pending CBB and returns a jbyteArray with the contents.
323 jbyteArray CBBToByteArray(JNIEnv* env, CBB* cbb) {
326 if (!CBB_finish(cbb, &data, &len)) {
1127 bssl::ScopedCBB cbb; local
1185 bssl::ScopedCBB cbb; local
2161 bssl::ScopedCBB cbb; local
4848 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4862 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4878 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4905 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4916 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4932 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4954 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4965 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
4991 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
5003 CBB* cbb = reinterpret_cast<CBB*>(static_cast<uintptr_t>(cbbRef)); local
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.cc 190 bool CBBFinishArray(CBB *cbb, Array<uint8_t> *out) {
193 if (!CBB_finish(cbb, &ptr, &len)) {
336 static int cbb_add_hex(CBB *cbb, const uint8_t *in, size_t in_len) {
340 if (!CBB_add_space(cbb, &out, in_len * 2)) {
358 ScopedCBB cbb; local
361 if (!CBB_init(cbb.get(), strlen(label) + 1 + SSL3_RANDOM_SIZE * 2 + 1 +
363 !CBB_add_bytes(cbb.get(), (const uint8_t *)label, strlen(label)) ||
364 !CBB_add_bytes(cbb.get(), (const uint8_t *)" ", 1) |
    [all...]
ssl_test.cc 3973 ScopedCBB cbb; local
4041 ScopedCBB cbb; local
    [all...]
t1_lib.cc 467 bool tls12_add_verify_sigalgs(const SSL *ssl, CBB *out) {
523 // The add callbacks receive a |CBB| to which the extension can be appended but
533 bool (*add_clienthello)(SSL_HANDSHAKE *hs, CBB *out);
539 bool (*add_serverhello)(SSL_HANDSHAKE *hs, CBB *out);
565 static bool dont_add_serverhello(SSL_HANDSHAKE *hs, CBB *out) {
573 static bool ext_sni_add_clienthello(SSL_HANDSHAKE *hs, CBB *out) {
579 CBB contents, server_name_list, name;
645 static bool ext_sni_add_serverhello(SSL_HANDSHAKE *hs, CBB *out) {
664 static bool ext_ri_add_clienthello(SSL_HANDSHAKE *hs, CBB *out) {
674 CBB contents, prev_finished
    [all...]
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 85 void addCallbackBuffer(JNIEnv *env, jbyteArray cbb, int msgType);
470 JNIEnv *env, jbyteArray cbb, int msgType)
473 if (cbb != NULL) {
477 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb);
493 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb);
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ElementsTest.java     [all...]
  /external/boringssl/src/include/openssl/
evp.h 206 // structure (RFC 5280) and appends the result to |cbb|. It returns one on
208 OPENSSL_EXPORT int EVP_marshal_public_key(CBB *cbb, const EVP_PKEY *key);
224 // structure (RFC 5208) and appends the result to |cbb|. It returns one on
226 OPENSSL_EXPORT int EVP_marshal_private_key(CBB *cbb, const EVP_PKEY *key);
    [all...]
rsa.h 439 // (RFC 3447) and appends the result to |cbb|. It returns one on success and
441 OPENSSL_EXPORT int RSA_marshal_public_key(CBB *cbb, const RSA *rsa);
461 // structure (RFC 3447) and appends the result to |cbb|. It returns one on
463 OPENSSL_EXPORT int RSA_marshal_private_key(CBB *cbb, const RSA *rsa);
    [all...]
bn.h 261 // BN_bn2cbb_padded behaves like |BN_bn2bin_padded| but writes to a |CBB|.
262 OPENSSL_EXPORT int BN_bn2cbb_padded(CBB *out, size_t len, const BIGNUM *in);
321 // result to |cbb|. It returns one on success and zero on failure.
322 OPENSSL_EXPORT int BN_marshal_asn1(CBB *cbb, const BIGNUM *bn);
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_test.cc 119 bssl::ScopedCBB cbb; local
122 if (!CBB_init(cbb.get(), 0) ||
123 !EC_KEY_marshal_private_key(cbb.get(), key, EC_KEY_get_enc_flags(key)) ||
124 !CBB_finish(cbb.get(), &der, &der_len)) {
  /external/scapy/scapy/
plist.py 416 cbb = c.bbox()
417 c.text(cbb.left(),cbb.top()+1,r"\font\cmssfont=cmss12\cmssfont{Frame %i/%i}" % (i,l),[pyx.text.size.LARGE])
  /external/boringssl/src/crypto/fipsmodule/bn/
bn_test.cc 1179 bssl::ScopedCBB cbb; local
1203 bssl::ScopedCBB cbb; local
    [all...]
  /external/boringssl/
sources.mk 65 src/crypto/bytestring/cbb.c\
eureka.mk 65 src/crypto/bytestring/cbb.c\
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/z8k/
inout.d 39 3e: 3cbb inb rl3,@r11
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
all-opcodes.d 668 292: 3cbb.*
670 294: 3cbb.*
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/epiphany/
allinsn.d     [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.3.Final/
netty-codec-http-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/
netty-codec-http-4.1.6.Final.jar 
  /external/skia/src/jumper/
SkJumper_generated_win.S     [all...]
  /external/skqp/src/jumper/
SkJumper_generated_win.S     [all...]

Completed in 1170 milliseconds

1 23