blob: c6cc3bb86d9ca6555d14f3d1bf3296c1239bb56b [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:261/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef RTC_BASE_OPENSSL_DIGEST_H_
12#define RTC_BASE_OPENSSL_DIGEST_H_
henrike@webrtc.orgf0488722014-05-13 18:00:2613
Sergey Sablin3c119fb2019-02-13 02:30:4514#include <openssl/ossl_typ.h>
Yves Gerey988cc082018-10-23 10:03:0115#include <stddef.h>
Jonas Olssona4d87372019-07-05 17:08:3316
Yves Gerey2e00abc2018-10-05 13:39:2417#include <string>
henrike@webrtc.orgf0488722014-05-13 18:00:2618
Ali Tofigh7fa90572022-03-17 14:47:4919#include "absl/strings/string_view.h"
Steve Anton10542f22019-01-11 17:11:0020#include "rtc_base/message_digest.h"
Henrik Kjellanderec78f1c2017-06-29 05:52:5021
22namespace rtc {
23
24// An implementation of the digest class that uses OpenSSL.
Benjamin Wright61c5cc82018-10-27 00:50:0025class OpenSSLDigest final : public MessageDigest {
Henrik Kjellanderec78f1c2017-06-29 05:52:5026 public:
Artem Titov96e3b992021-07-26 14:03:1427 // Creates an OpenSSLDigest with `algorithm` as the hash algorithm.
Ali Tofigh7fa90572022-03-17 14:47:4928 explicit OpenSSLDigest(absl::string_view algorithm);
Henrik Kjellanderec78f1c2017-06-29 05:52:5029 ~OpenSSLDigest() override;
30 // Returns the digest output size (e.g. 16 bytes for MD5).
31 size_t Size() const override;
Artem Titov96e3b992021-07-26 14:03:1432 // Updates the digest with `len` bytes from `buf`.
Henrik Kjellanderec78f1c2017-06-29 05:52:5033 void Update(const void* buf, size_t len) override;
Artem Titov96e3b992021-07-26 14:03:1434 // Outputs the digest value to `buf` with length `len`.
Henrik Kjellanderec78f1c2017-06-29 05:52:5035 size_t Finish(void* buf, size_t len) override;
36
37 // Helper function to look up a digest's EVP by name.
Ali Tofigh7fa90572022-03-17 14:47:4938 static bool GetDigestEVP(absl::string_view algorithm, const EVP_MD** md);
Henrik Kjellanderec78f1c2017-06-29 05:52:5039 // Helper function to look up a digest's name by EVP.
Yves Gerey665174f2018-06-19 13:03:0540 static bool GetDigestName(const EVP_MD* md, std::string* algorithm);
Henrik Kjellanderec78f1c2017-06-29 05:52:5041 // Helper function to get the length of a digest.
Ali Tofigh7fa90572022-03-17 14:47:4942 static bool GetDigestSize(absl::string_view algorithm, size_t* len);
Henrik Kjellanderec78f1c2017-06-29 05:52:5043
44 private:
Jiawei Oueb0df082018-02-02 22:51:1845 EVP_MD_CTX* ctx_ = nullptr;
Henrik Kjellanderec78f1c2017-06-29 05:52:5046 const EVP_MD* md_;
47};
48
49} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:2650
Steve Anton10542f22019-01-11 17:11:0051#endif // RTC_BASE_OPENSSL_DIGEST_H_