1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-21 20:52:20 +01:00

Merge branch 'integration' into memory_api

This commit is contained in:
J. Nick Koston
2025-09-21 12:11:12 -06:00
2 changed files with 0 additions and 8 deletions

View File

@@ -78,12 +78,6 @@ void SHA256::calculate() {
#error "SHA256 not supported on this platform"
#endif
std::string SHA256::get_hex_string() {
char buf[65];
this->get_hex(buf);
return std::string(buf);
}
} // namespace esphome::sha256
#endif // Platform check

View File

@@ -33,8 +33,6 @@ class SHA256 : public esphome::HashBase {
void calculate() override;
std::string get_hex_string();
/// Get the size of the hex output (64 for SHA256)
size_t get_hex_size() const override { return 64; }