QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 1 | // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "net/third_party/quiche/src/quic/core/crypto/chacha_base_decrypter.h" |
| 6 | |
| 7 | #include <cstdint> |
| 8 | |
| 9 | #include "third_party/boringssl/src/include/openssl/chacha.h" |
| 10 | #include "net/third_party/quiche/src/quic/core/quic_data_reader.h" |
| 11 | #include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h" |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 12 | #include "net/third_party/quiche/src/common/platform/api/quiche_arraysize.h" |
QUICHE team | 173c48f | 2019-11-19 16:34:44 -0800 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/common/platform/api/quiche_endian.h" |
dmcardle | 904ef18 | 2019-12-13 08:34:33 -0800 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h" |
QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 15 | |
| 16 | namespace quic { |
| 17 | |
dmcardle | 904ef18 | 2019-12-13 08:34:33 -0800 | [diff] [blame] | 18 | bool ChaChaBaseDecrypter::SetHeaderProtectionKey( |
| 19 | quiche::QuicheStringPiece key) { |
QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 20 | if (key.size() != GetKeySize()) { |
| 21 | QUIC_BUG << "Invalid key size for header protection"; |
| 22 | return false; |
| 23 | } |
| 24 | memcpy(pne_key_, key.data(), key.size()); |
| 25 | return true; |
| 26 | } |
| 27 | |
| 28 | std::string ChaChaBaseDecrypter::GenerateHeaderProtectionMask( |
| 29 | QuicDataReader* sample_reader) { |
dmcardle | 904ef18 | 2019-12-13 08:34:33 -0800 | [diff] [blame] | 30 | quiche::QuicheStringPiece sample; |
QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 31 | if (!sample_reader->ReadStringPiece(&sample, 16)) { |
| 32 | return std::string(); |
| 33 | } |
| 34 | const uint8_t* nonce = reinterpret_cast<const uint8_t*>(sample.data()) + 4; |
| 35 | uint32_t counter; |
QUICHE team | 173c48f | 2019-11-19 16:34:44 -0800 | [diff] [blame] | 36 | QuicDataReader(sample.data(), 4, quiche::HOST_BYTE_ORDER) |
QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 37 | .ReadUInt32(&counter); |
| 38 | const uint8_t zeroes[] = {0, 0, 0, 0, 0}; |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 39 | std::string out(QUICHE_ARRAYSIZE(zeroes), 0); |
QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 40 | CRYPTO_chacha_20(reinterpret_cast<uint8_t*>(const_cast<char*>(out.data())), |
bnc | 4e9283d | 2019-12-17 07:08:57 -0800 | [diff] [blame] | 41 | zeroes, QUICHE_ARRAYSIZE(zeroes), pne_key_, nonce, counter); |
QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 42 | return out; |
| 43 | } |
| 44 | |
| 45 | } // namespace quic |