| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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 // Some helpers for quic crypto | 5 // Some helpers for quic crypto |
| 6 | 6 |
| 7 #ifndef NET_QUIC_CORE_CRYPTO_CRYPTO_UTILS_H_ | 7 #ifndef NET_QUIC_CORE_CRYPTO_CRYPTO_UTILS_H_ |
| 8 #define NET_QUIC_CORE_CRYPTO_CRYPTO_UTILS_H_ | 8 #define NET_QUIC_CORE_CRYPTO_CRYPTO_UTILS_H_ |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| 11 #include <stdint.h> | 11 #include <stdint.h> |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/strings/string_piece.h" | 16 #include "base/strings/string_piece.h" |
| 17 #include "net/base/net_export.h" | |
| 18 #include "net/quic/core/crypto/crypto_handshake.h" | 17 #include "net/quic/core/crypto/crypto_handshake.h" |
| 19 #include "net/quic/core/crypto/crypto_handshake_message.h" | 18 #include "net/quic/core/crypto/crypto_handshake_message.h" |
| 20 #include "net/quic/core/crypto/crypto_protocol.h" | 19 #include "net/quic/core/crypto/crypto_protocol.h" |
| 21 #include "net/quic/core/quic_packets.h" | 20 #include "net/quic/core/quic_packets.h" |
| 22 #include "net/quic/core/quic_time.h" | 21 #include "net/quic/core/quic_time.h" |
| 22 #include "net/quic/platform/api/quic_export.h" |
| 23 | 23 |
| 24 namespace net { | 24 namespace net { |
| 25 | 25 |
| 26 class QuicRandom; | 26 class QuicRandom; |
| 27 | 27 |
| 28 class NET_EXPORT_PRIVATE CryptoUtils { | 28 class QUIC_EXPORT_PRIVATE CryptoUtils { |
| 29 public: | 29 public: |
| 30 // Diversification is a utility class that's used to act like a union type. | 30 // Diversification is a utility class that's used to act like a union type. |
| 31 // Values can be created by calling the functions like |NoDiversification|, | 31 // Values can be created by calling the functions like |NoDiversification|, |
| 32 // below. | 32 // below. |
| 33 class Diversification { | 33 class Diversification { |
| 34 public: | 34 public: |
| 35 enum Mode { | 35 enum Mode { |
| 36 NEVER, // Key diversification will never be used. Forward secure | 36 NEVER, // Key diversification will never be used. Forward secure |
| 37 // crypters will always use this mode. | 37 // crypters will always use this mode. |
| 38 | 38 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 static void HashHandshakeMessage(const CryptoHandshakeMessage& message, | 159 static void HashHandshakeMessage(const CryptoHandshakeMessage& message, |
| 160 std::string* output); | 160 std::string* output); |
| 161 | 161 |
| 162 private: | 162 private: |
| 163 DISALLOW_COPY_AND_ASSIGN(CryptoUtils); | 163 DISALLOW_COPY_AND_ASSIGN(CryptoUtils); |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 } // namespace net | 166 } // namespace net |
| 167 | 167 |
| 168 #endif // NET_QUIC_CORE_CRYPTO_CRYPTO_UTILS_H_ | 168 #endif // NET_QUIC_CORE_CRYPTO_CRYPTO_UTILS_H_ |
| OLD | NEW |