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 #include "net/quic/crypto/crypto_secret_boxer.h"
7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "net/quic/crypto/crypto_protocol.h"
10 #include "net/quic/crypto/quic_decrypter.h"
11 #include "net/quic/crypto/quic_encrypter.h"
12 #include "net/quic/crypto/quic_random.h"
14 using base::StringPiece
;
19 // Defined kKeySize for GetKeySize() and SetKey().
20 static const size_t kKeySize
= 16;
22 // kBoxNonceSize contains the number of bytes of nonce that we use in each box.
23 // TODO(rtenneti): Add support for kBoxNonceSize to be 16 bytes.
26 // 96-bit nonces are on the edge. An attacker who can collect 2^41
27 // source-address tokens has a 1% chance of finding a duplicate.
29 // The "average" DDoS is now 32.4M PPS. That's 2^25 source-address tokens
30 // per second. So one day of that DDoS botnot would reach the 1% mark.
32 // It's not terrible, but it's not a "forget about it" margin.
33 static const size_t kBoxNonceSize
= 12;
36 size_t CryptoSecretBoxer::GetKeySize() { return kKeySize
; }
38 void CryptoSecretBoxer::SetKey(StringPiece key
) {
39 DCHECK_EQ(kKeySize
, key
.size());
40 key_
= key
.as_string();
43 string
CryptoSecretBoxer::Box(QuicRandom
* rand
, StringPiece plaintext
) const {
44 scoped_ptr
<QuicEncrypter
> encrypter(QuicEncrypter::Create(kAESG
));
45 if (!encrypter
->SetKey(key_
)) {
46 DLOG(DFATAL
) << "CryptoSecretBoxer's encrypter->SetKey failed.";
49 size_t ciphertext_size
= encrypter
->GetCiphertextSize(plaintext
.length());
52 const size_t len
= kBoxNonceSize
+ ciphertext_size
;
57 rand
->RandBytes(data
, kBoxNonceSize
);
58 memcpy(data
+ kBoxNonceSize
, plaintext
.data(), plaintext
.size());
60 if (!encrypter
->Encrypt(StringPiece(data
, kBoxNonceSize
), StringPiece(),
61 plaintext
, reinterpret_cast<unsigned char*>(
62 data
+ kBoxNonceSize
))) {
63 DLOG(DFATAL
) << "CryptoSecretBoxer's Encrypt failed.";
70 bool CryptoSecretBoxer::Unbox(StringPiece ciphertext
,
72 StringPiece
* out
) const {
73 if (ciphertext
.size() < kBoxNonceSize
) {
77 char nonce
[kBoxNonceSize
];
78 memcpy(nonce
, ciphertext
.data(), kBoxNonceSize
);
79 ciphertext
.remove_prefix(kBoxNonceSize
);
81 size_t len
= ciphertext
.size();
82 out_storage
->resize(len
);
83 char* data
= const_cast<char*>(out_storage
->data());
85 scoped_ptr
<QuicDecrypter
> decrypter(QuicDecrypter::Create(kAESG
));
86 if (!decrypter
->SetKey(key_
)) {
87 DLOG(DFATAL
) << "CryptoSecretBoxer's decrypter->SetKey failed.";
90 if (!decrypter
->Decrypt(StringPiece(nonce
, kBoxNonceSize
), StringPiece(),
91 ciphertext
, reinterpret_cast<unsigned char*>(data
),