summaryrefslogtreecommitdiff
path: root/chromium/components/webcrypto/algorithms/rsa_ssa.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/webcrypto/algorithms/rsa_ssa.cc')
-rw-r--r--chromium/components/webcrypto/algorithms/rsa_ssa.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/components/webcrypto/algorithms/rsa_ssa.cc b/chromium/components/webcrypto/algorithms/rsa_ssa.cc
index e9cea331e42..ec9f0ab711d 100644
--- a/chromium/components/webcrypto/algorithms/rsa_ssa.cc
+++ b/chromium/components/webcrypto/algorithms/rsa_ssa.cc
@@ -16,19 +16,19 @@ namespace {
class RsaSsaImplementation : public RsaHashedAlgorithm {
public:
RsaSsaImplementation()
- : RsaHashedAlgorithm(blink::WebCryptoKeyUsageVerify,
- blink::WebCryptoKeyUsageSign) {}
+ : RsaHashedAlgorithm(blink::kWebCryptoKeyUsageVerify,
+ blink::kWebCryptoKeyUsageSign) {}
const char* GetJwkAlgorithm(
const blink::WebCryptoAlgorithmId hash) const override {
switch (hash) {
- case blink::WebCryptoAlgorithmIdSha1:
+ case blink::kWebCryptoAlgorithmIdSha1:
return "RS1";
- case blink::WebCryptoAlgorithmIdSha256:
+ case blink::kWebCryptoAlgorithmIdSha256:
return "RS256";
- case blink::WebCryptoAlgorithmIdSha384:
+ case blink::kWebCryptoAlgorithmIdSha384:
return "RS384";
- case blink::WebCryptoAlgorithmIdSha512:
+ case blink::kWebCryptoAlgorithmIdSha512:
return "RS512";
default:
return NULL;