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 "content/child/webcrypto/nss/util_nss.h" | 5 #include "content/child/webcrypto/nss/util_nss.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "content/child/webcrypto/crypto_data.h" | 8 #include "content/child/webcrypto/crypto_data.h" |
9 #include "content/child/webcrypto/platform_crypto.h" | 9 #include "content/child/webcrypto/platform_crypto.h" |
10 #include "crypto/nss_util.h" | 10 #include "crypto/nss_util.h" |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 AlgorithmImplementation* CreatePlatformEcdsaImplementation() { | 94 AlgorithmImplementation* CreatePlatformEcdsaImplementation() { |
95 // TODO(eroman): http://crbug.com/399094 | 95 // TODO(eroman): http://crbug.com/399094 |
96 return NULL; | 96 return NULL; |
97 } | 97 } |
98 | 98 |
99 AlgorithmImplementation* CreatePlatformEcdhImplementation() { | 99 AlgorithmImplementation* CreatePlatformEcdhImplementation() { |
100 // TODO(eroman): http://crbug.com/399093 | 100 // TODO(eroman): http://crbug.com/399093 |
101 return NULL; | 101 return NULL; |
102 } | 102 } |
103 | 103 |
104 AlgorithmImplementation* CreatePlatformHkdfImplementation() { | |
105 // HKDF is only being imlemented for boringssl. | |
eroman
2015/01/08 02:39:43
BoringSSL is how it is referred to elsewhere in co
nharper
2015/01/09 18:35:55
Done. That's how it's capitalized in the rest of t
| |
106 return NULL; | |
107 } | |
108 | |
104 } // namespace webcrypto | 109 } // namespace webcrypto |
105 | 110 |
106 } // namespace content | 111 } // namespace content |
OLD | NEW |