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

Unified Diff: public/platform/WebCryptoAlgorithm.h

Issue 284973002: [webcrypto] Remove RSA-ES support (3 of 3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Placate compiler warning on android about uninitialized variable Created 6 years, 7 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 | « Source/platform/exported/WebCryptoKeyAlgorithm.cpp ('k') | public/platform/WebCryptoAlgorithmParams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebCryptoAlgorithm.h
diff --git a/public/platform/WebCryptoAlgorithm.h b/public/platform/WebCryptoAlgorithm.h
index d64fc682173059e0174d0e84d2f9062d300cfcfd..5ba2c7a0d0c20cb499cdade9738e4dd7f1be3208 100644
--- a/public/platform/WebCryptoAlgorithm.h
+++ b/public/platform/WebCryptoAlgorithm.h
@@ -44,7 +44,6 @@ enum WebCryptoAlgorithmId {
WebCryptoAlgorithmIdAesCbc,
WebCryptoAlgorithmIdHmac,
WebCryptoAlgorithmIdRsaSsaPkcs1v1_5,
- WebCryptoAlgorithmIdRsaEsPkcs1v1_5,
WebCryptoAlgorithmIdSha1,
WebCryptoAlgorithmIdSha256,
WebCryptoAlgorithmIdSha384,
@@ -64,7 +63,6 @@ enum WebCryptoAlgorithmParamsType {
WebCryptoAlgorithmParamsTypeAesKeyGenParams,
WebCryptoAlgorithmParamsTypeHmacImportParams,
WebCryptoAlgorithmParamsTypeHmacKeyGenParams,
- WebCryptoAlgorithmParamsTypeRsaKeyGenParams,
WebCryptoAlgorithmParamsTypeRsaHashedKeyGenParams,
WebCryptoAlgorithmParamsTypeRsaHashedImportParams,
WebCryptoAlgorithmParamsTypeAesGcmParams,
@@ -76,7 +74,6 @@ class WebCryptoAesCbcParams;
class WebCryptoAesKeyGenParams;
class WebCryptoHmacImportParams;
class WebCryptoHmacKeyGenParams;
-class WebCryptoRsaKeyGenParams;
class WebCryptoAesGcmParams;
class WebCryptoRsaOaepParams;
class WebCryptoAesCtrParams;
@@ -124,7 +121,6 @@ public:
BLINK_PLATFORM_EXPORT const WebCryptoAesKeyGenParams* aesKeyGenParams() const;
BLINK_PLATFORM_EXPORT const WebCryptoHmacImportParams* hmacImportParams() const;
BLINK_PLATFORM_EXPORT const WebCryptoHmacKeyGenParams* hmacKeyGenParams() const;
- BLINK_PLATFORM_EXPORT const WebCryptoRsaKeyGenParams* rsaKeyGenParams() const;
BLINK_PLATFORM_EXPORT const WebCryptoAesGcmParams* aesGcmParams() const;
BLINK_PLATFORM_EXPORT const WebCryptoRsaOaepParams* rsaOaepParams() const;
BLINK_PLATFORM_EXPORT const WebCryptoAesCtrParams* aesCtrParams() const;
« no previous file with comments | « Source/platform/exported/WebCryptoKeyAlgorithm.cpp ('k') | public/platform/WebCryptoAlgorithmParams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698