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

Unified Diff: content/renderer/webcrypto_impl_nss.cc

Issue 19757011: WebCrypto: Implement digest() using NSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split out crypto functionality from abstract result class from Blink. Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/webcrypto_impl.cc ('k') | content/renderer/webcrypto_impl_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/webcrypto_impl_nss.cc
diff --git a/content/renderer/webcrypto_impl_nss.cc b/content/renderer/webcrypto_impl_nss.cc
new file mode 100644
index 0000000000000000000000000000000000000000..98ebc75f01e2b6b3b4b21a1b4971b9b431c1cb10
--- /dev/null
+++ b/content/renderer/webcrypto_impl_nss.cc
@@ -0,0 +1,70 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/renderer/webcrypto_impl.h"
+
+#include <sechash.h>
+
+#include "base/logging.h"
+#include "crypto/nss_util.h"
+#include "third_party/WebKit/public/platform/WebArrayBuffer.h"
+#include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h"
+
+namespace content {
+
+bool WebCryptoImpl::digestInternal(
+ const WebKit::WebCryptoAlgorithm& algorithm,
+ const unsigned char* data,
+ size_t data_size,
+ WebKit::WebArrayBuffer* buffer) {
+ HASH_HashType hash_type = HASH_AlgNULL;
+
+ switch (algorithm.id()) {
+ case WebKit::WebCryptoAlgorithmIdSha1:
+ hash_type = HASH_AlgSHA1;
+ break;
+ case WebKit::WebCryptoAlgorithmIdSha224:
+ hash_type = HASH_AlgSHA224;
+ break;
+ case WebKit::WebCryptoAlgorithmIdSha256:
+ hash_type = HASH_AlgSHA256;
+ break;
+ case WebKit::WebCryptoAlgorithmIdSha384:
+ hash_type = HASH_AlgSHA384;
+ break;
+ case WebKit::WebCryptoAlgorithmIdSha512:
+ hash_type = HASH_AlgSHA512;
+ break;
+ default:
+ // Not a digest algorithm.
+ return false;
+ }
+
+ crypto::EnsureNSSInit();
+
+ HASHContext* context = HASH_Create(hash_type);
+ if (!context) {
+ return false;
+ }
+
+ HASH_Begin(context);
+
+ HASH_Update(context, data, data_size);
+
+ size_t hash_result_length = HASH_ResultLenContext(context);
+ DCHECK_LE(hash_result_length, static_cast<size_t>(HASH_LENGTH_MAX));
+
+ *buffer = WebKit::WebArrayBuffer::create(hash_result_length, 1);
+
+ unsigned char* digest = reinterpret_cast<unsigned char*>(buffer->data());
+
+ uint32 result_length = 0;
+ HASH_End(context, digest, &result_length, hash_result_length);
+
+ HASH_Destroy(context);
+
+ return result_length == hash_result_length;
+}
+
+} // namespace content
« no previous file with comments | « content/renderer/webcrypto_impl.cc ('k') | content/renderer/webcrypto_impl_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698