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.
5 #ifndef NET_QUIC_CRYPTO_AEAD_BASE_ENCRYPTER_H_
6 #define NET_QUIC_CRYPTO_AEAD_BASE_ENCRYPTER_H_
8 #include "base/compiler_specific.h"
9 #include "net/quic/crypto/quic_encrypter.h"
11 #if defined(USE_OPENSSL)
12 #include "net/quic/crypto/scoped_evp_aead_ctx.h"
16 typedef struct PK11SymKeyStr PK11SymKey
;
17 typedef SECStatus (*PK11_EncryptFunction
)(
18 PK11SymKey
* symKey
, CK_MECHANISM_TYPE mechanism
, SECItem
* param
,
19 unsigned char* out
, unsigned int* outLen
, unsigned int maxLen
,
20 const unsigned char* data
, unsigned int dataLen
);
25 // AeadBaseEncrypter is the base class of AEAD QuicEncrypter subclasses.
26 class NET_EXPORT_PRIVATE AeadBaseEncrypter
: public QuicEncrypter
{
28 #if defined(USE_OPENSSL)
29 AeadBaseEncrypter(const EVP_AEAD
* aead_alg
,
32 size_t nonce_prefix_size
);
34 AeadBaseEncrypter(CK_MECHANISM_TYPE aead_mechanism
,
35 PK11_EncryptFunction pk11_encrypt
,
38 size_t nonce_prefix_size
);
40 ~AeadBaseEncrypter() override
;
42 // QuicEncrypter implementation
43 bool SetKey(base::StringPiece key
) override
;
44 bool SetNoncePrefix(base::StringPiece nonce_prefix
) override
;
45 bool EncryptPacket(QuicPacketNumber packet_number
,
46 base::StringPiece associated_data
,
47 base::StringPiece plaintext
,
49 size_t* output_length
,
50 size_t max_output_length
) override
;
51 size_t GetKeySize() const override
;
52 size_t GetNoncePrefixSize() const override
;
53 size_t GetMaxPlaintextSize(size_t ciphertext_size
) const override
;
54 size_t GetCiphertextSize(size_t plaintext_size
) const override
;
55 base::StringPiece
GetKey() const override
;
56 base::StringPiece
GetNoncePrefix() const override
;
58 // Necessary so unit tests can explicitly specify a nonce, instead of a
59 // nonce prefix and packet number.
60 bool Encrypt(base::StringPiece nonce
,
61 base::StringPiece associated_data
,
62 base::StringPiece plaintext
,
63 unsigned char* output
);
66 // Make these constants available to the subclasses so that the subclasses
67 // can assert at compile time their key_size_ and nonce_prefix_size_ do not
68 // exceed the maximum.
69 static const size_t kMaxKeySize
= 32;
70 static const size_t kMaxNoncePrefixSize
= 4;
72 #if !defined(USE_OPENSSL)
76 CK_GCM_PARAMS gcm_params
;
77 #if !defined(USE_NSS_CERTS)
78 // USE_NSS_CERTS implies we are using system NSS rather than our copy of
79 // NSS. The system NSS <pkcs11n.h> header doesn't define this type yet.
80 CK_NSS_AEAD_PARAMS nss_aead_params
;
85 virtual void FillAeadParams(base::StringPiece nonce
,
86 base::StringPiece associated_data
,
88 AeadParams
* aead_params
) const = 0;
92 #if defined(USE_OPENSSL)
93 const EVP_AEAD
* const aead_alg_
;
95 const CK_MECHANISM_TYPE aead_mechanism_
;
96 const PK11_EncryptFunction pk11_encrypt_
;
98 const size_t key_size_
;
99 const size_t auth_tag_size_
;
100 const size_t nonce_prefix_size_
;
103 unsigned char key_
[kMaxKeySize
];
105 unsigned char nonce_prefix_
[kMaxNoncePrefixSize
];
107 #if defined(USE_OPENSSL)
108 ScopedEVPAEADCtx ctx_
;
111 DISALLOW_COPY_AND_ASSIGN(AeadBaseEncrypter
);
116 #endif // NET_QUIC_CRYPTO_AEAD_BASE_ENCRYPTER_H_