blob: a12cd6f9eb2a2d87b3ec500dbd0aec08309683cb [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright (c) 2012 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#ifndef QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTER_H_
6#define QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTER_H_
7
nharperc1bbfe62019-09-27 16:48:40 -07008#include "net/third_party/quiche/src/quic/core/quic_versions.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -05009#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
dmcardle904ef182019-12-13 08:34:33 -080010#include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050011
12namespace quic {
13
14// QuicCrypter is the parent class for QuicEncrypter and QuicDecrypter.
15// Its purpose is to provide an interface for using methods that are common to
16// both classes when operations are being done that apply to both encrypters and
17// decrypters.
18class QUIC_EXPORT_PRIVATE QuicCrypter {
19 public:
20 virtual ~QuicCrypter() {}
21
22 // Sets the symmetric encryption/decryption key. Returns true on success,
23 // false on failure.
24 //
25 // NOTE: The key is the client_write_key or server_write_key derived from
26 // the master secret.
dmcardle904ef182019-12-13 08:34:33 -080027 virtual bool SetKey(quiche::QuicheStringPiece key) = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050028
29 // Sets the fixed initial bytes of the nonce. Returns true on success,
30 // false on failure. This method must only be used with Google QUIC crypters.
31 //
32 // NOTE: The nonce prefix is the client_write_iv or server_write_iv
33 // derived from the master secret. A 64-bit packet number will
34 // be appended to form the nonce.
35 //
36 // <------------ 64 bits ----------->
37 // +---------------------+----------------------------------+
38 // | Fixed prefix | packet number |
39 // +---------------------+----------------------------------+
40 // Nonce format
41 //
42 // The security of the nonce format requires that QUIC never reuse a
43 // packet number, even when retransmitting a lost packet.
dmcardle904ef182019-12-13 08:34:33 -080044 virtual bool SetNoncePrefix(quiche::QuicheStringPiece nonce_prefix) = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050045
46 // Sets |iv| as the initialization vector to use when constructing the nonce.
47 // Returns true on success, false on failure. This method must only be used
48 // with IETF QUIC crypters.
49 //
50 // Google QUIC and IETF QUIC use different nonce constructions. This method
51 // must be used when using IETF QUIC; SetNoncePrefix must be used when using
52 // Google QUIC.
53 //
54 // The nonce is constructed as follows (draft-ietf-quic-tls-14 section 5.2):
55 //
56 // <---------------- max(8, N_MIN) bytes ----------------->
57 // +--------------------------------------------------------+
58 // | packet protection IV |
59 // +--------------------------------------------------------+
60 // XOR
61 // <------------ 64 bits ----------->
62 // +---------------------+----------------------------------+
63 // | zeroes | reconstructed packet number |
64 // +---------------------+----------------------------------+
65 //
66 // The nonce is the packet protection IV (|iv|) XOR'd with the left-padded
67 // reconstructed packet number.
68 //
69 // The security of the nonce format requires that QUIC never reuse a
70 // packet number, even when retransmitting a lost packet.
dmcardle904ef182019-12-13 08:34:33 -080071 virtual bool SetIV(quiche::QuicheStringPiece iv) = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050072
nharperc1bbfe62019-09-27 16:48:40 -070073 // Calls SetNoncePrefix or SetIV depending on whether |version| uses the
74 // Google QUIC crypto or IETF QUIC nonce construction.
75 virtual bool SetNoncePrefixOrIV(const ParsedQuicVersion& version,
dmcardle904ef182019-12-13 08:34:33 -080076 quiche::QuicheStringPiece nonce_prefix_or_iv);
nharperc1bbfe62019-09-27 16:48:40 -070077
QUICHE team2d187972019-03-19 16:23:47 -070078 // Sets the key to use for header protection.
dmcardle904ef182019-12-13 08:34:33 -080079 virtual bool SetHeaderProtectionKey(quiche::QuicheStringPiece key) = 0;
QUICHE team2d187972019-03-19 16:23:47 -070080
nharper965e5922019-09-23 22:33:54 -070081 // GetKeySize, GetIVSize, and GetNoncePrefixSize are used to know how many
82 // bytes of key material needs to be derived from the master secret.
83
QUICHE teama6ef0a62019-03-07 20:34:33 -050084 // Returns the size in bytes of a key for the algorithm.
85 virtual size_t GetKeySize() const = 0;
86 // Returns the size in bytes of an IV to use with the algorithm.
87 virtual size_t GetIVSize() const = 0;
nharper965e5922019-09-23 22:33:54 -070088 // Returns the size in bytes of the fixed initial part of the nonce.
89 virtual size_t GetNoncePrefixSize() const = 0;
QUICHE teama6ef0a62019-03-07 20:34:33 -050090};
91
92} // namespace quic
93
94#endif // QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTER_H_