openssl_digest.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #ifndef RTC_BASE_OPENSSL_DIGEST_H_
  11. #define RTC_BASE_OPENSSL_DIGEST_H_
  12. #include <openssl/ossl_typ.h>
  13. #include <stddef.h>
  14. #include <string>
  15. #include "rtc_base/message_digest.h"
  16. namespace rtc {
  17. // An implementation of the digest class that uses OpenSSL.
  18. class OpenSSLDigest final : public MessageDigest {
  19. public:
  20. // Creates an OpenSSLDigest with |algorithm| as the hash algorithm.
  21. explicit OpenSSLDigest(const std::string& algorithm);
  22. ~OpenSSLDigest() override;
  23. // Returns the digest output size (e.g. 16 bytes for MD5).
  24. size_t Size() const override;
  25. // Updates the digest with |len| bytes from |buf|.
  26. void Update(const void* buf, size_t len) override;
  27. // Outputs the digest value to |buf| with length |len|.
  28. size_t Finish(void* buf, size_t len) override;
  29. // Helper function to look up a digest's EVP by name.
  30. static bool GetDigestEVP(const std::string& algorithm, const EVP_MD** md);
  31. // Helper function to look up a digest's name by EVP.
  32. static bool GetDigestName(const EVP_MD* md, std::string* algorithm);
  33. // Helper function to get the length of a digest.
  34. static bool GetDigestSize(const std::string& algorithm, size_t* len);
  35. private:
  36. EVP_MD_CTX* ctx_ = nullptr;
  37. const EVP_MD* md_;
  38. };
  39. } // namespace rtc
  40. #endif // RTC_BASE_OPENSSL_DIGEST_H_