Searched refs:PLAINTEXT (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/ngtcp2/ngtcp2/crypto/wolfssl/ |
H A D | wolfssl.c | 277 static const uint8_t PLAINTEXT[] = "\x00\x00\x00\x00\x00"; in ngtcp2_crypto_hp_mask() local 285 wolfSSL_EVP_CipherUpdate(actx, dest, &len, PLAINTEXT, in ngtcp2_crypto_hp_mask() 286 sizeof(PLAINTEXT) - 1) != WOLFSSL_SUCCESS || in ngtcp2_crypto_hp_mask() 287 wolfSSL_EVP_EncryptFinal_ex(actx, dest + sizeof(PLAINTEXT) - 1, &len) != in ngtcp2_crypto_hp_mask()
|
/third_party/mbedtls/programs/pkey/ |
H A D | dh_server.c | 31 #define PLAINTEXT "==Hello there!==" macro 272 memcpy(buf, PLAINTEXT, 16); in main()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/ |
H A D | openssl.c | 579 static const uint8_t PLAINTEXT[] = "\x00\x00\x00\x00\x00"; in ngtcp2_crypto_hp_mask() local 586 !EVP_EncryptUpdate(actx, dest, &len, PLAINTEXT, sizeof(PLAINTEXT) - 1) || in ngtcp2_crypto_hp_mask() 587 !EVP_EncryptFinal_ex(actx, dest + sizeof(PLAINTEXT) - 1, &len)) { in ngtcp2_crypto_hp_mask()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/ |
H A D | boringssl.c | 370 static const uint8_t PLAINTEXT[] = "\x00\x00\x00\x00\x00"; in ngtcp2_crypto_hp_mask() local 388 CRYPTO_chacha_20(dest, PLAINTEXT, sizeof(PLAINTEXT) - 1, ctx->key, in ngtcp2_crypto_hp_mask()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/picotls/ |
H A D | picotls.c | 343 static const uint8_t PLAINTEXT[] = "\x00\x00\x00\x00\x00"; in ngtcp2_crypto_hp_mask() local 348 ptls_cipher_encrypt(actx, dest, PLAINTEXT, sizeof(PLAINTEXT) - 1); in ngtcp2_crypto_hp_mask()
|
Completed in 6 milliseconds