Home
last modified time | relevance | path

Searched refs:DNSCRYPT_QUERY_PK_SIZE (Results 1 – 2 of 2) sorted by relevance

/dports/dns/encrypted-dns-server/encrypted-dns-server-0.9.1/src/
H A Ddnscrypt.rs15 pub const DNSCRYPT_QUERY_PK_SIZE: usize = 32; const
18 DNSCRYPT_QUERY_MAGIC_SIZE + DNSCRYPT_QUERY_PK_SIZE + DNSCRYPT_QUERY_NONCE_SIZE;
52 + DNSCRYPT_QUERY_PK_SIZE
59 [DNSCRYPT_QUERY_MAGIC_SIZE..DNSCRYPT_QUERY_MAGIC_SIZE + DNSCRYPT_QUERY_PK_SIZE];
60 let client_nonce = &wrapped_packet[DNSCRYPT_QUERY_MAGIC_SIZE + DNSCRYPT_QUERY_PK_SIZE
61 ..DNSCRYPT_QUERY_MAGIC_SIZE + DNSCRYPT_QUERY_PK_SIZE + DNSCRYPT_QUERY_NONCE_SIZE];
84 let mut client_pk_ = [0u8; DNSCRYPT_QUERY_PK_SIZE];
H A Ddnscrypt_certs.rs111 pub cache: Option<Arc<Mutex<ClockProCache<[u8; DNSCRYPT_QUERY_PK_SIZE], SharedKey>>>>,