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

Unified Diff: content/child/webcrypto/openssl/rsa_pss_openssl.cc

Issue 1077273002: html_viewer: Move webcrypto to a place where html_viewer can use it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT Created 5 years, 8 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
Index: content/child/webcrypto/openssl/rsa_pss_openssl.cc
diff --git a/content/child/webcrypto/openssl/rsa_pss_openssl.cc b/content/child/webcrypto/openssl/rsa_pss_openssl.cc
deleted file mode 100644
index e74698e3cb028bfa30c60ce87df0604c653e756a..0000000000000000000000000000000000000000
--- a/content/child/webcrypto/openssl/rsa_pss_openssl.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2014 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/child/webcrypto/openssl/rsa_hashed_algorithm_openssl.h"
-#include "content/child/webcrypto/openssl/rsa_sign_openssl.h"
-#include "content/child/webcrypto/status.h"
-#include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
-
-namespace content {
-
-namespace webcrypto {
-
-namespace {
-
-class RsaPssImplementation : public RsaHashedAlgorithm {
- public:
- RsaPssImplementation()
- : RsaHashedAlgorithm(blink::WebCryptoKeyUsageVerify,
- blink::WebCryptoKeyUsageSign) {}
-
- const char* GetJwkAlgorithm(
- const blink::WebCryptoAlgorithmId hash) const override {
- switch (hash) {
- case blink::WebCryptoAlgorithmIdSha1:
- return "PS1";
- case blink::WebCryptoAlgorithmIdSha256:
- return "PS256";
- case blink::WebCryptoAlgorithmIdSha384:
- return "PS384";
- case blink::WebCryptoAlgorithmIdSha512:
- return "PS512";
- default:
- return NULL;
- }
- }
-
- Status Sign(const blink::WebCryptoAlgorithm& algorithm,
- const blink::WebCryptoKey& key,
- const CryptoData& data,
- std::vector<uint8_t>* buffer) const override {
- return RsaSign(key, algorithm.rsaPssParams()->saltLengthBytes(), data,
- buffer);
- }
-
- Status Verify(const blink::WebCryptoAlgorithm& algorithm,
- const blink::WebCryptoKey& key,
- const CryptoData& signature,
- const CryptoData& data,
- bool* signature_match) const override {
- return RsaVerify(key, algorithm.rsaPssParams()->saltLengthBytes(),
- signature, data, signature_match);
- }
-};
-
-} // namespace
-
-AlgorithmImplementation* CreatePlatformRsaPssImplementation() {
- return new RsaPssImplementation;
-}
-
-} // namespace webcrypto
-
-} // namespace content
« no previous file with comments | « content/child/webcrypto/openssl/rsa_oaep_openssl.cc ('k') | content/child/webcrypto/openssl/rsa_sign_openssl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698