| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/quic/crypto/chacha20_poly1305_encrypter.h" | 5 #include "net/quic/crypto/chacha20_poly1305_encrypter.h" |
| 6 | 6 |
| 7 #include <pk11pub.h> | 7 #include <pk11pub.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 | 10 |
| 11 using base::StringPiece; | 11 using base::StringPiece; |
| 12 | 12 |
| 13 namespace net { | 13 namespace net { |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 const size_t kKeySize = 32; | 17 const size_t kKeySize = 32; |
| 18 const size_t kNoncePrefixSize = 0; | 18 const size_t kNoncePrefixSize = 0; |
| 19 | 19 |
| 20 } // namespace | 20 } // namespace |
| 21 | 21 |
| 22 #if defined(USE_NSS) | 22 #if defined(USE_NSS) |
| 23 | 23 |
| 24 // System NSS doesn't support ChaCha20+Poly1305 yet. | 24 // System NSS doesn't support ChaCha20+Poly1305 yet. |
| 25 | 25 |
| 26 ChaCha20Poly1305Encrypter::ChaCha20Poly1305Encrypter() | 26 ChaCha20Poly1305Encrypter::ChaCha20Poly1305Encrypter() |
| 27 : AeadBaseEncrypter(CKM_INVALID_MECHANISM, NULL, kKeySize, | 27 : AeadBaseEncrypter(CKM_INVALID_MECHANISM, nullptr, kKeySize, |
| 28 kAuthTagSize, kNoncePrefixSize) { | 28 kAuthTagSize, kNoncePrefixSize) { |
| 29 NOTIMPLEMENTED(); | 29 NOTIMPLEMENTED(); |
| 30 } | 30 } |
| 31 | 31 |
| 32 ChaCha20Poly1305Encrypter::~ChaCha20Poly1305Encrypter() {} | 32 ChaCha20Poly1305Encrypter::~ChaCha20Poly1305Encrypter() {} |
| 33 | 33 |
| 34 // static | 34 // static |
| 35 bool ChaCha20Poly1305Encrypter::IsSupported() { | 35 bool ChaCha20Poly1305Encrypter::IsSupported() { |
| 36 return false; | 36 return false; |
| 37 } | 37 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 nss_aead_params->ulIvLen = nonce.size(); | 71 nss_aead_params->ulIvLen = nonce.size(); |
| 72 nss_aead_params->pAAD = | 72 nss_aead_params->pAAD = |
| 73 reinterpret_cast<CK_BYTE*>(const_cast<char*>(associated_data.data())); | 73 reinterpret_cast<CK_BYTE*>(const_cast<char*>(associated_data.data())); |
| 74 nss_aead_params->ulAADLen = associated_data.size(); | 74 nss_aead_params->ulAADLen = associated_data.size(); |
| 75 nss_aead_params->ulTagLen = auth_tag_size; | 75 nss_aead_params->ulTagLen = auth_tag_size; |
| 76 } | 76 } |
| 77 | 77 |
| 78 #endif // defined(USE_NSS) | 78 #endif // defined(USE_NSS) |
| 79 | 79 |
| 80 } // namespace net | 80 } // namespace net |
| OLD | NEW |