OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/child/webcrypto/algorithm_registry.h" | 5 #include "content/child/webcrypto/algorithm_registry.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "content/child/webcrypto/algorithm_implementation.h" | 8 #include "content/child/webcrypto/algorithm_implementation.h" |
9 #include "content/child/webcrypto/platform_crypto.h" | 9 #include "content/child/webcrypto/platform_crypto.h" |
10 #include "content/child/webcrypto/status.h" | 10 #include "content/child/webcrypto/status.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
14 namespace webcrypto { | 14 namespace webcrypto { |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
18 // This class is used as a singleton. All methods must be threadsafe. | 18 // This class is used as a singleton. All methods must be threadsafe. |
19 class AlgorithmRegistry { | 19 class AlgorithmRegistry { |
20 public: | 20 public: |
21 AlgorithmRegistry() | 21 AlgorithmRegistry() |
22 : sha_(CreatePlatformShaImplementation()), | 22 : sha_(CreatePlatformShaImplementation()), |
23 aes_gcm_(CreatePlatformAesGcmImplementation()), | 23 aes_gcm_(CreatePlatformAesGcmImplementation()), |
24 aes_cbc_(CreatePlatformAesCbcImplementation()), | 24 aes_cbc_(CreatePlatformAesCbcImplementation()), |
25 aes_ctr_(CreatePlatformAesCtrImplementation()), | 25 aes_ctr_(CreatePlatformAesCtrImplementation()), |
26 aes_kw_(CreatePlatformAesKwImplementation()), | 26 aes_kw_(CreatePlatformAesKwImplementation()), |
27 hmac_(CreatePlatformHmacImplementation()), | 27 hmac_(CreatePlatformHmacImplementation()), |
28 rsa_ssa_(CreatePlatformRsaSsaImplementation()), | 28 rsa_ssa_(CreatePlatformRsaSsaImplementation()), |
29 rsa_oaep_(CreatePlatformRsaOaepImplementation()) { | 29 rsa_oaep_(CreatePlatformRsaOaepImplementation()), |
| 30 rsa_pss_(CreatePlatformRsaPssImplementation()) { |
30 PlatformInit(); | 31 PlatformInit(); |
31 } | 32 } |
32 | 33 |
33 const AlgorithmImplementation* GetAlgorithm( | 34 const AlgorithmImplementation* GetAlgorithm( |
34 blink::WebCryptoAlgorithmId id) const { | 35 blink::WebCryptoAlgorithmId id) const { |
35 switch (id) { | 36 switch (id) { |
36 case blink::WebCryptoAlgorithmIdSha1: | 37 case blink::WebCryptoAlgorithmIdSha1: |
37 case blink::WebCryptoAlgorithmIdSha256: | 38 case blink::WebCryptoAlgorithmIdSha256: |
38 case blink::WebCryptoAlgorithmIdSha384: | 39 case blink::WebCryptoAlgorithmIdSha384: |
39 case blink::WebCryptoAlgorithmIdSha512: | 40 case blink::WebCryptoAlgorithmIdSha512: |
40 return sha_.get(); | 41 return sha_.get(); |
41 case blink::WebCryptoAlgorithmIdAesGcm: | 42 case blink::WebCryptoAlgorithmIdAesGcm: |
42 return aes_gcm_.get(); | 43 return aes_gcm_.get(); |
43 case blink::WebCryptoAlgorithmIdAesCbc: | 44 case blink::WebCryptoAlgorithmIdAesCbc: |
44 return aes_cbc_.get(); | 45 return aes_cbc_.get(); |
45 case blink::WebCryptoAlgorithmIdAesCtr: | 46 case blink::WebCryptoAlgorithmIdAesCtr: |
46 return aes_ctr_.get(); | 47 return aes_ctr_.get(); |
47 case blink::WebCryptoAlgorithmIdAesKw: | 48 case blink::WebCryptoAlgorithmIdAesKw: |
48 return aes_kw_.get(); | 49 return aes_kw_.get(); |
49 case blink::WebCryptoAlgorithmIdHmac: | 50 case blink::WebCryptoAlgorithmIdHmac: |
50 return hmac_.get(); | 51 return hmac_.get(); |
51 case blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5: | 52 case blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5: |
52 return rsa_ssa_.get(); | 53 return rsa_ssa_.get(); |
53 case blink::WebCryptoAlgorithmIdRsaOaep: | 54 case blink::WebCryptoAlgorithmIdRsaOaep: |
54 return rsa_oaep_.get(); | 55 return rsa_oaep_.get(); |
| 56 case blink::WebCryptoAlgorithmIdRsaPss: |
| 57 return rsa_pss_.get(); |
55 default: | 58 default: |
56 return NULL; | 59 return NULL; |
57 } | 60 } |
58 } | 61 } |
59 | 62 |
60 private: | 63 private: |
61 const scoped_ptr<AlgorithmImplementation> sha_; | 64 const scoped_ptr<AlgorithmImplementation> sha_; |
62 const scoped_ptr<AlgorithmImplementation> aes_gcm_; | 65 const scoped_ptr<AlgorithmImplementation> aes_gcm_; |
63 const scoped_ptr<AlgorithmImplementation> aes_cbc_; | 66 const scoped_ptr<AlgorithmImplementation> aes_cbc_; |
64 const scoped_ptr<AlgorithmImplementation> aes_ctr_; | 67 const scoped_ptr<AlgorithmImplementation> aes_ctr_; |
65 const scoped_ptr<AlgorithmImplementation> aes_kw_; | 68 const scoped_ptr<AlgorithmImplementation> aes_kw_; |
66 const scoped_ptr<AlgorithmImplementation> hmac_; | 69 const scoped_ptr<AlgorithmImplementation> hmac_; |
67 const scoped_ptr<AlgorithmImplementation> rsa_ssa_; | 70 const scoped_ptr<AlgorithmImplementation> rsa_ssa_; |
68 const scoped_ptr<AlgorithmImplementation> rsa_oaep_; | 71 const scoped_ptr<AlgorithmImplementation> rsa_oaep_; |
| 72 const scoped_ptr<AlgorithmImplementation> rsa_pss_; |
69 }; | 73 }; |
70 | 74 |
71 } // namespace | 75 } // namespace |
72 | 76 |
73 base::LazyInstance<AlgorithmRegistry>::Leaky g_algorithm_registry = | 77 base::LazyInstance<AlgorithmRegistry>::Leaky g_algorithm_registry = |
74 LAZY_INSTANCE_INITIALIZER; | 78 LAZY_INSTANCE_INITIALIZER; |
75 | 79 |
76 Status GetAlgorithmImplementation(blink::WebCryptoAlgorithmId id, | 80 Status GetAlgorithmImplementation(blink::WebCryptoAlgorithmId id, |
77 const AlgorithmImplementation** impl) { | 81 const AlgorithmImplementation** impl) { |
78 *impl = g_algorithm_registry.Get().GetAlgorithm(id); | 82 *impl = g_algorithm_registry.Get().GetAlgorithm(id); |
79 if (*impl) | 83 if (*impl) |
80 return Status::Success(); | 84 return Status::Success(); |
81 return Status::ErrorUnsupported(); | 85 return Status::ErrorUnsupported(); |
82 } | 86 } |
83 | 87 |
84 } // namespace webcrypto | 88 } // namespace webcrypto |
85 | 89 |
86 } // namespace content | 90 } // namespace content |
OLD | NEW |