henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 1 | /* |
| 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 Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef RTC_BASE_OPENSSLDIGEST_H_ |
| 12 | #define RTC_BASE_OPENSSLDIGEST_H_ |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 13 | |
Oleh Prypin | 96a0f61 | 2018-10-05 13:13:38 +0000 | [diff] [blame] | 14 | #include <openssl/evp.h> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 15 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 16 | #include "rtc_base/messagedigest.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 17 | |
| 18 | namespace rtc { |
| 19 | |
| 20 | // An implementation of the digest class that uses OpenSSL. |
| 21 | class OpenSSLDigest : public MessageDigest { |
| 22 | public: |
| 23 | // Creates an OpenSSLDigest with |algorithm| as the hash algorithm. |
| 24 | explicit OpenSSLDigest(const std::string& algorithm); |
| 25 | ~OpenSSLDigest() override; |
| 26 | // Returns the digest output size (e.g. 16 bytes for MD5). |
| 27 | size_t Size() const override; |
| 28 | // Updates the digest with |len| bytes from |buf|. |
| 29 | void Update(const void* buf, size_t len) override; |
| 30 | // Outputs the digest value to |buf| with length |len|. |
| 31 | size_t Finish(void* buf, size_t len) override; |
| 32 | |
| 33 | // Helper function to look up a digest's EVP by name. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 34 | static bool GetDigestEVP(const std::string& algorithm, const EVP_MD** md); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 35 | // Helper function to look up a digest's name by EVP. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 36 | static bool GetDigestName(const EVP_MD* md, std::string* algorithm); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 37 | // Helper function to get the length of a digest. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 38 | static bool GetDigestSize(const std::string& algorithm, size_t* len); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 39 | |
| 40 | private: |
Jiawei Ou | eb0df08 | 2018-02-02 14:51:18 -0800 | [diff] [blame] | 41 | EVP_MD_CTX* ctx_ = nullptr; |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 42 | const EVP_MD* md_; |
| 43 | }; |
| 44 | |
| 45 | } // namespace rtc |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 46 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 47 | #endif // RTC_BASE_OPENSSLDIGEST_H_ |