Removed unused func from md5.hpp

This commit is contained in:
David
2024-04-10 15:02:22 -04:00
parent 42c448201b
commit 6e653bc298
-6
View File
@@ -201,12 +201,6 @@ namespace md5 {
c.append(&bytes[0], bytes.size());
return c.final();
}
static Digest compute(uint8_t *data, size_t dataLength) {
details::Context c;
c.append(data, dataLength);
return c.final();
}
}
#endif