blob: 1427a94fdd3933c4f4daa54e96188fc1e1ac72ec [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef RTC_BASE_OPENSSLDIGEST_H_
12#define RTC_BASE_OPENSSLDIGEST_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000013
Yves Gerey2e00abc2018-10-05 15:39:24 +020014#include <openssl/base.h> // for EVP_MD, EVP_MD_CTX
15#include <string>
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000016
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020017#include "rtc_base/messagedigest.h"
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020018
19namespace rtc {
20
21// An implementation of the digest class that uses OpenSSL.
22class OpenSSLDigest : public MessageDigest {
23 public:
24 // Creates an OpenSSLDigest with |algorithm| as the hash algorithm.
25 explicit OpenSSLDigest(const std::string& algorithm);
26 ~OpenSSLDigest() override;
27 // Returns the digest output size (e.g. 16 bytes for MD5).
28 size_t Size() const override;
29 // Updates the digest with |len| bytes from |buf|.
30 void Update(const void* buf, size_t len) override;
31 // Outputs the digest value to |buf| with length |len|.
32 size_t Finish(void* buf, size_t len) override;
33
34 // Helper function to look up a digest's EVP by name.
Yves Gerey665174f2018-06-19 15:03:05 +020035 static bool GetDigestEVP(const std::string& algorithm, const EVP_MD** md);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020036 // Helper function to look up a digest's name by EVP.
Yves Gerey665174f2018-06-19 15:03:05 +020037 static bool GetDigestName(const EVP_MD* md, std::string* algorithm);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020038 // Helper function to get the length of a digest.
Yves Gerey665174f2018-06-19 15:03:05 +020039 static bool GetDigestSize(const std::string& algorithm, size_t* len);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020040
41 private:
Jiawei Oueb0df082018-02-02 14:51:18 -080042 EVP_MD_CTX* ctx_ = nullptr;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020043 const EVP_MD* md_;
44};
45
46} // namespace rtc
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000047
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020048#endif // RTC_BASE_OPENSSLDIGEST_H_