Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: net/quic/crypto/quic_random.cc

Issue 12334063: Land recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more EXPECT_FALSE Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/quic/crypto/quic_random.h ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // 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 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/quic_random.h" 5 #include "net/quic/crypto/quic_random.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "crypto/random.h" 9 #include "crypto/random.h"
10 10
11 namespace net { 11 namespace net {
12 12
13 namespace { 13 namespace {
14 14
15 class DefaultRandom : public QuicRandom { 15 class DefaultRandom : public QuicRandom {
16 public: 16 public:
17 static DefaultRandom* GetInstance(); 17 static DefaultRandom* GetInstance();
18 18
19 // QuicRandom implementation 19 // QuicRandom implementation
20 virtual void RandBytes(void* data, size_t len) OVERRIDE; 20 virtual void RandBytes(void* data, size_t len) OVERRIDE;
21 virtual uint64 RandUint64() OVERRIDE; 21 virtual uint64 RandUint64() OVERRIDE;
22 virtual bool RandBool() OVERRIDE;
22 virtual void Reseed(const void* additional_entropy, 23 virtual void Reseed(const void* additional_entropy,
23 size_t entropy_len) OVERRIDE; 24 size_t entropy_len) OVERRIDE;
24 25
25 private: 26 private:
26 DefaultRandom(); 27 DefaultRandom();
27 virtual ~DefaultRandom() {} 28 virtual ~DefaultRandom() {}
28 29
29 friend struct DefaultSingletonTraits<DefaultRandom>; 30 friend struct DefaultSingletonTraits<DefaultRandom>;
30 DISALLOW_COPY_AND_ASSIGN(DefaultRandom); 31 DISALLOW_COPY_AND_ASSIGN(DefaultRandom);
31 }; 32 };
32 33
33 DefaultRandom* DefaultRandom::GetInstance() { 34 DefaultRandom* DefaultRandom::GetInstance() {
34 return Singleton<DefaultRandom>::get(); 35 return Singleton<DefaultRandom>::get();
35 } 36 }
36 37
37 void DefaultRandom::RandBytes(void* data, size_t len) { 38 void DefaultRandom::RandBytes(void* data, size_t len) {
38 crypto::RandBytes(data, len); 39 crypto::RandBytes(data, len);
39 } 40 }
40 41
41 uint64 DefaultRandom::RandUint64() { 42 uint64 DefaultRandom::RandUint64() {
42 uint64 value; 43 uint64 value;
43 RandBytes(&value, sizeof(value)); 44 RandBytes(&value, sizeof(value));
44 return value; 45 return value;
45 } 46 }
46 47
48 bool DefaultRandom::RandBool() {
49 char value;
50 RandBytes(&value, sizeof(value));
51 return (value & 1) == 1;
52 }
53
47 void DefaultRandom::Reseed(const void* additional_entropy, size_t entropy_len) { 54 void DefaultRandom::Reseed(const void* additional_entropy, size_t entropy_len) {
48 // No such function exists in crypto/random.h. 55 // No such function exists in crypto/random.h.
49 } 56 }
50 57
51 DefaultRandom::DefaultRandom() { 58 DefaultRandom::DefaultRandom() {
52 } 59 }
53 60
54 } // namespace 61 } // namespace
55 62
56 // static 63 // static
57 QuicRandom* QuicRandom::GetInstance() { 64 QuicRandom* QuicRandom::GetInstance() {
58 return DefaultRandom::GetInstance(); 65 return DefaultRandom::GetInstance();
59 } 66 }
60 67
61 } // namespace net 68 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/crypto/quic_random.h ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698