blob: efb32a1ff3f91367f5039c3fa550a61aa8d4dc5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdint.h>
#include <vector>
#include "base/check_op.h"
#include "components/webcrypto/algorithm_implementation.h"
#include "components/webcrypto/algorithms/util.h"
#include "components/webcrypto/crypto_data.h"
#include "components/webcrypto/status.h"
#include "crypto/openssl_util.h"
#include "third_party/boringssl/src/include/openssl/digest.h"
namespace webcrypto {
namespace {
class ShaImplementation : public AlgorithmImplementation {
public:
Status Digest(const blink::WebCryptoAlgorithm& algorithm,
const CryptoData& data,
std::vector<uint8_t>* buffer) const override {
// http://crbug.com/366427: the spec does not define any other failures for
// digest, so none of the subsequent errors are spec compliant.
bssl::ScopedEVP_MD_CTX digest_context;
crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE);
const EVP_MD* digest_algorithm = GetDigest(algorithm.Id());
if (!digest_algorithm)
return Status::ErrorUnsupported();
if (!EVP_DigestInit_ex(digest_context.get(), digest_algorithm, nullptr))
return Status::OperationError();
if (!EVP_DigestUpdate(digest_context.get(), data.bytes(),
data.byte_length()))
return Status::OperationError();
const size_t hash_expected_size = EVP_MD_CTX_size(digest_context.get());
if (hash_expected_size == 0)
return Status::ErrorUnexpected();
DCHECK_LE(hash_expected_size, static_cast<unsigned>(EVP_MAX_MD_SIZE));
buffer->resize(hash_expected_size);
unsigned result_size; // ignored
if (!EVP_DigestFinal_ex(digest_context.get(), buffer->data(),
&result_size) ||
result_size != hash_expected_size)
return Status::OperationError();
return Status::Success();
}
};
} // namespace
std::unique_ptr<AlgorithmImplementation> CreateShaImplementation() {
return std::make_unique<ShaImplementation>();
}
} // namespace webcrypto
|