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

Unified Diff: components/webcrypto/openssl/rsa_ssa_openssl.cc

Issue 1304063015: [refactor] Rename the webcrypto/openssl and webcrypto/test directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@jwk_refactor
Patch Set: fix filename in gn build Created 5 years, 3 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 | « components/webcrypto/openssl/rsa_sign_openssl.cc ('k') | components/webcrypto/openssl/sha_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webcrypto/openssl/rsa_ssa_openssl.cc
diff --git a/components/webcrypto/openssl/rsa_ssa_openssl.cc b/components/webcrypto/openssl/rsa_ssa_openssl.cc
deleted file mode 100644
index 257a6a9d97e56c8e3201a134dc59443e6fbcaa6b..0000000000000000000000000000000000000000
--- a/components/webcrypto/openssl/rsa_ssa_openssl.cc
+++ /dev/null
@@ -1,57 +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 "components/webcrypto/openssl/rsa_hashed_algorithm_openssl.h"
-#include "components/webcrypto/openssl/rsa_sign_openssl.h"
-#include "components/webcrypto/status.h"
-
-namespace webcrypto {
-
-namespace {
-
-class RsaSsaImplementation : public RsaHashedAlgorithm {
- public:
- RsaSsaImplementation()
- : RsaHashedAlgorithm(blink::WebCryptoKeyUsageVerify,
- blink::WebCryptoKeyUsageSign) {}
-
- const char* GetJwkAlgorithm(
- const blink::WebCryptoAlgorithmId hash) const override {
- switch (hash) {
- case blink::WebCryptoAlgorithmIdSha1:
- return "RS1";
- case blink::WebCryptoAlgorithmIdSha256:
- return "RS256";
- case blink::WebCryptoAlgorithmIdSha384:
- return "RS384";
- case blink::WebCryptoAlgorithmIdSha512:
- return "RS512";
- 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, 0, 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, 0, signature, data, signature_match);
- }
-};
-
-} // namespace
-
-AlgorithmImplementation* CreatePlatformRsaSsaImplementation() {
- return new RsaSsaImplementation;
-}
-
-} // namespace webcrypto
« no previous file with comments | « components/webcrypto/openssl/rsa_sign_openssl.cc ('k') | components/webcrypto/openssl/sha_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698