Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions | |
| 6 * are met: | |
| 7 * | |
| 8 * 1. Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | |
| 11 * notice, this list of conditions and the following disclaimer in the | |
| 12 * documentation and/or other materials provided with the distribution. | |
| 13 * 3. Neither the name of Google, Inc. ("Google") nor the names of | |
| 14 * its contributors may be used to endorse or promote products derived | |
| 15 * from this software without specific prior written permission. | |
| 16 * | |
| 17 * THIS SOFTWARE IS PROVIDED BY GOOGLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
| 18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
| 19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
| 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
| 21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
| 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 27 */ | |
|
abarth-chromium
2014/04/01 23:46:48
Please use new-style copyright blocks:
http://dev
jww
2014/04/02 01:11:50
Done.
| |
| 28 | |
| 29 #include "config.h" | |
| 30 #include "platform/Crypto.h" | |
| 31 | |
| 32 #include "public/platform/Platform.h" | |
| 33 #include "public/platform/WebArrayBuffer.h" | |
| 34 #include "public/platform/WebCrypto.h" | |
| 35 #include "public/platform/WebCryptoAlgorithm.h" | |
| 36 #include "wtf/Vector.h" | |
| 37 #include "wtf/text/CString.h" | |
| 38 | |
| 39 namespace WebCore { | |
| 40 | |
| 41 static blink::WebCryptoAlgorithmId convertHashAlgorithm(HashAlgorithm algorithm) | |
|
abarth-chromium
2014/04/01 23:46:48
convertHashAlgorithm -> toWebCryptoAlgorithmId
jww
2014/04/02 01:11:50
Done.
| |
| 42 { | |
| 43 switch (algorithm) { | |
| 44 case HashAlgorithmSha1: | |
| 45 return blink::WebCryptoAlgorithmIdSha1; | |
| 46 case HashAlgorithmSha256: | |
| 47 return blink::WebCryptoAlgorithmIdSha256; | |
| 48 case HashAlgorithmSha384: | |
| 49 return blink::WebCryptoAlgorithmIdSha384; | |
| 50 case HashAlgorithmSha512: | |
| 51 return blink::WebCryptoAlgorithmIdSha512; | |
| 52 }; | |
| 53 | |
| 54 ASSERT_NOT_REACHED(); | |
| 55 } | |
| 56 | |
| 57 void computeDigest(HashAlgorithm algorithm, const char* digestable, size_t lengt h, DigestValue& digestResult) | |
| 58 { | |
| 59 blink::WebCryptoAlgorithmId algorithmId = convertHashAlgorithm(algorithm); | |
| 60 blink::WebCrypto* crypto = blink::Platform::current()->crypto(); | |
| 61 blink::WebArrayBuffer result; | |
| 62 | |
| 63 ASSERT(crypto); | |
| 64 | |
| 65 crypto->digestSynchronous(algorithmId, reinterpret_cast<const unsigned char* >(digestable), length, result); | |
| 66 | |
| 67 ASSERT(!result.isNull()); | |
| 68 | |
| 69 digestResult.append(static_cast<uint8_t*>(result.data()), result.byteLength( )); | |
| 70 } | |
| 71 | |
| 72 blink::WebCryptoDigestor* createDigestor(HashAlgorithm algorithm) | |
| 73 { | |
| 74 blink::WebCrypto* crypto = blink::Platform::current()->crypto(); | |
| 75 | |
| 76 ASSERT(crypto); | |
| 77 | |
| 78 return crypto->createDigestor(convertHashAlgorithm(algorithm)); | |
|
abarth-chromium
2014/04/01 23:46:48
I'd just make this function all be one line. This
jww
2014/04/02 01:11:50
Done.
| |
| 79 } | |
| 80 | |
| 81 void finishDigestor(blink::WebCryptoDigestor* digestor, DigestValue& digestResul t) | |
| 82 { | |
| 83 unsigned char* result; | |
| 84 unsigned resultSize; | |
|
abarth-chromium
2014/04/01 23:46:48
Please initialize scalars.
jww
2014/04/02 01:11:50
Done.
| |
| 85 | |
| 86 if (!digestor->finish(result, resultSize)) | |
| 87 return; | |
| 88 | |
| 89 ASSERT(result); | |
| 90 | |
| 91 digestResult.append(static_cast<uint8_t*>(result), resultSize); | |
| 92 } | |
| 93 | |
| 94 } // namespace WebCore | |
| OLD | NEW |