| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "content/renderer/webcrypto_impl.h" | 5 #include "content/renderer/webcrypto/webcrypto_impl.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 void WebCryptoImpl::Init() { | 9 void WebCryptoImpl::Init() { |
| 10 } | 10 } |
| 11 | 11 |
| 12 bool WebCryptoImpl::DigestInternal( | 12 bool WebCryptoImpl::DigestInternal( |
| 13 const WebKit::WebCryptoAlgorithm& algorithm, | 13 const WebKit::WebCryptoAlgorithm& algorithm, |
| 14 const unsigned char* data, | 14 const unsigned char* data, |
| 15 unsigned data_size, | 15 unsigned data_size, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 unsigned signature_size, | 50 unsigned signature_size, |
| 51 const unsigned char* data, | 51 const unsigned char* data, |
| 52 unsigned data_size, | 52 unsigned data_size, |
| 53 bool* signature_match) { | 53 bool* signature_match) { |
| 54 // TODO(bryaneyler): Placeholder for OpenSSL implementation. | 54 // TODO(bryaneyler): Placeholder for OpenSSL implementation. |
| 55 // Issue http://crbug.com/267888. | 55 // Issue http://crbug.com/267888. |
| 56 return false; | 56 return false; |
| 57 } | 57 } |
| 58 | 58 |
| 59 } // namespace content | 59 } // namespace content |
| OLD | NEW |