-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnull-crypto.cpp
47 lines (37 loc) · 1.94 KB
/
null-crypto.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "null-crypto.h"
#include "log.h"
namespace quic {
// Cranks a value to "11", i.e. set it to its maximum
template <typename T>
void crank_to_eleven(T& val) { val = std::numeric_limits<T>::max(); }
NullCrypto::NullCrypto() {
crank_to_eleven(null_ctx.max_encryption);
crank_to_eleven(null_ctx.max_decryption_failure);
null_ctx.aead.max_overhead = 1; // Fails an assertion if 0
null_aead.max_overhead = 1; // FIXME - can this be 0?
}
void NullCrypto::client_initial(Connection& conn) {
ngtcp2_conn_set_initial_crypto_ctx(conn, &null_ctx);
ngtcp2_conn_install_initial_key(conn, &null_aead_ctx, null_iv.data(), &null_cipher_ctx, &null_aead_ctx, null_iv.data(), &null_cipher_ctx, null_iv.size());
ngtcp2_conn_set_retry_aead(conn, &null_aead, &null_aead_ctx);
ngtcp2_conn_set_crypto_ctx(conn, &null_ctx);
}
void NullCrypto::server_initial(Connection& conn) {
Debug("Server initial null crypto setup");
ngtcp2_conn_set_initial_crypto_ctx(conn, &null_ctx);
ngtcp2_conn_install_initial_key(conn, &null_aead_ctx, null_iv.data(), &null_cipher_ctx, &null_aead_ctx, null_iv.data(), &null_cipher_ctx, null_iv.size());
ngtcp2_conn_set_crypto_ctx(conn, &null_ctx);
}
bool NullCrypto::install_tx_handshake_key(Connection& conn) {
return ngtcp2_conn_install_tx_handshake_key(conn, &null_aead_ctx, null_iv.data(), null_iv.size(), &null_cipher_ctx) == 0;
}
bool NullCrypto::install_rx_handshake_key(Connection& conn) {
return ngtcp2_conn_install_rx_handshake_key(conn, &null_aead_ctx, null_iv.data(), null_iv.size(), &null_cipher_ctx) == 0;
}
bool NullCrypto::install_tx_key(Connection& conn) {
return ngtcp2_conn_install_tx_key(conn, null_iv.data(), null_iv.size(), &null_aead_ctx, null_iv.data(), null_iv.size(), &null_cipher_ctx) == 0;
}
bool NullCrypto::install_rx_key(Connection& conn) {
return ngtcp2_conn_install_rx_key(conn, nullptr, 0, &null_aead_ctx, null_iv.data(), null_iv.size(), &null_cipher_ctx) == 0;
}
}