| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "modules/crypto/Algorithm.h" | 32 #include "modules/crypto/Algorithm.h" |
| 33 | 33 |
| 34 #include "modules/crypto/AesCbcParams.h" | |
| 35 #include "modules/crypto/AesCtrParams.h" | |
| 36 #include "modules/crypto/AesKeyGenParams.h" | |
| 37 #include "modules/crypto/HmacKeyParams.h" | |
| 38 #include "modules/crypto/HmacParams.h" | |
| 39 #include "modules/crypto/NormalizeAlgorithm.h" | 34 #include "modules/crypto/NormalizeAlgorithm.h" |
| 40 #include "modules/crypto/RsaKeyGenParams.h" | |
| 41 #include "modules/crypto/RsaSsaParams.h" | |
| 42 #include "platform/NotImplemented.h" | |
| 43 #include "wtf/text/WTFString.h" | 35 #include "wtf/text/WTFString.h" |
| 44 | 36 |
| 45 namespace WebCore { | 37 namespace WebCore { |
| 46 | 38 |
| 47 PassRefPtr<Algorithm> Algorithm::create(const blink::WebCryptoAlgorithm& algorit
hm) | 39 PassRefPtr<Algorithm> Algorithm::create(const blink::WebCryptoAlgorithm& algorit
hm) |
| 48 { | 40 { |
| 49 switch (algorithm.paramsType()) { | 41 return adoptRef(new Algorithm(algorithm)); |
| 50 case blink::WebCryptoAlgorithmParamsTypeNone: | |
| 51 return adoptRef(new Algorithm(algorithm)); | |
| 52 case blink::WebCryptoAlgorithmParamsTypeAesCbcParams: | |
| 53 return AesCbcParams::create(algorithm); | |
| 54 case blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams: | |
| 55 return AesKeyGenParams::create(algorithm); | |
| 56 case blink::WebCryptoAlgorithmParamsTypeHmacParams: | |
| 57 return HmacParams::create(algorithm); | |
| 58 case blink::WebCryptoAlgorithmParamsTypeHmacKeyParams: | |
| 59 return HmacKeyParams::create(algorithm); | |
| 60 case blink::WebCryptoAlgorithmParamsTypeRsaSsaParams: | |
| 61 return RsaSsaParams::create(algorithm); | |
| 62 case blink::WebCryptoAlgorithmParamsTypeRsaKeyGenParams: | |
| 63 return RsaKeyGenParams::create(algorithm); | |
| 64 case blink::WebCryptoAlgorithmParamsTypeAesCtrParams: | |
| 65 return AesCtrParams::create(algorithm); | |
| 66 case blink::WebCryptoAlgorithmParamsTypeAesGcmParams: | |
| 67 case blink::WebCryptoAlgorithmParamsTypeRsaOaepParams: | |
| 68 // TODO | |
| 69 notImplemented(); | |
| 70 break; | |
| 71 } | |
| 72 ASSERT_NOT_REACHED(); | |
| 73 return 0; | |
| 74 } | 42 } |
| 75 | 43 |
| 76 Algorithm::Algorithm(const blink::WebCryptoAlgorithm& algorithm) | 44 Algorithm::Algorithm(const blink::WebCryptoAlgorithm& algorithm) |
| 77 : m_algorithm(algorithm) | 45 : m_algorithm(algorithm) |
| 78 { | 46 { |
| 79 ScriptWrappable::init(this); | 47 ScriptWrappable::init(this); |
| 80 } | 48 } |
| 81 | 49 |
| 82 String Algorithm::name() | 50 String Algorithm::name() |
| 83 { | 51 { |
| 84 return algorithmIdToName(m_algorithm.id()); | 52 return algorithmIdToName(m_algorithm.id()); |
| 85 } | 53 } |
| 86 | 54 |
| 87 } // namespace WebCore | 55 } // namespace WebCore |
| OLD | NEW |