mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-19 23:22:16 +03:00
MD5 Builder: Rework for unqiue_ptr instead of malloc, get only member functions marked as const (#7208)
Co-authored-by: Luiss <luiss@mind.cc>
This commit is contained in:
parent
4f27ce16b3
commit
e1789ddf0c
@ -1,5 +1,6 @@
|
||||
#include <Arduino.h>
|
||||
#include <MD5Builder.h>
|
||||
#include <memory>
|
||||
|
||||
uint8_t hex_char_to_byte(uint8_t c) {
|
||||
return (c >= 'a' && c <= 'f') ? (c - ((uint8_t)'a' - 0xa)) :
|
||||
@ -18,23 +19,25 @@ void MD5Builder::add(const uint8_t * data, const uint16_t len){
|
||||
|
||||
void MD5Builder::addHexString(const char * data){
|
||||
uint16_t i, len = strlen(data);
|
||||
uint8_t * tmp = (uint8_t*)malloc(len/2);
|
||||
if(tmp == NULL) {
|
||||
auto tmp = std::unique_ptr<uint8_t[]>{new(std::nothrow) uint8_t[len / 2]};
|
||||
|
||||
if (!tmp) {
|
||||
return;
|
||||
}
|
||||
|
||||
for(i=0; i<len; i+=2) {
|
||||
uint8_t high = hex_char_to_byte(data[i]);
|
||||
uint8_t low = hex_char_to_byte(data[i+1]);
|
||||
tmp[i/2] = (high & 0x0F) << 4 | (low & 0x0F);
|
||||
}
|
||||
add(tmp, len/2);
|
||||
free(tmp);
|
||||
add(tmp.get(), len/2);
|
||||
}
|
||||
|
||||
bool MD5Builder::addStream(Stream &stream, const size_t maxLen) {
|
||||
const int buf_size = 512;
|
||||
int maxLengthLeft = maxLen;
|
||||
uint8_t * buf = (uint8_t*) malloc(buf_size);
|
||||
|
||||
auto buf = std::unique_ptr<uint8_t[]>{new(std::nothrow) uint8_t[buf_size]};
|
||||
|
||||
if (!buf) {
|
||||
return false;
|
||||
@ -53,14 +56,13 @@ bool MD5Builder::addStream(Stream & stream, const size_t maxLen){
|
||||
}
|
||||
|
||||
// read data and check if we got something
|
||||
int numBytesRead = stream.readBytes(buf, readBytes);
|
||||
int numBytesRead = stream.readBytes(buf.get(), readBytes);
|
||||
if (numBytesRead < 1) {
|
||||
free(buf); // release the buffer
|
||||
return false;
|
||||
}
|
||||
|
||||
// Update MD5 with buffer payload
|
||||
MD5Update(&_ctx, buf, numBytesRead);
|
||||
MD5Update(&_ctx, buf.get(), numBytesRead);
|
||||
|
||||
yield(); // time for network streams
|
||||
|
||||
@ -68,7 +70,7 @@ bool MD5Builder::addStream(Stream & stream, const size_t maxLen){
|
||||
maxLengthLeft -= numBytesRead;
|
||||
bytesAvailable = stream.available();
|
||||
}
|
||||
free(buf);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -76,17 +78,17 @@ void MD5Builder::calculate(void){
|
||||
MD5Final(_buf, &_ctx);
|
||||
}
|
||||
|
||||
void MD5Builder::getBytes(uint8_t * output){
|
||||
void MD5Builder::getBytes(uint8_t * output) const {
|
||||
memcpy(output, _buf, 16);
|
||||
}
|
||||
|
||||
void MD5Builder::getChars(char * output){
|
||||
void MD5Builder::getChars(char * output) const {
|
||||
for (uint8_t i=0; i<16; i++){
|
||||
sprintf(output + (i * 2), "%02x", _buf[i]);
|
||||
}
|
||||
}
|
||||
|
||||
String MD5Builder::toString(void){
|
||||
String MD5Builder::toString(void) const {
|
||||
char out[33];
|
||||
getChars(out);
|
||||
return String(out);
|
||||
|
@ -40,9 +40,9 @@ class MD5Builder {
|
||||
void addHexString(const String& data){ addHexString(data.c_str()); }
|
||||
bool addStream(Stream & stream, const size_t maxLen);
|
||||
void calculate(void);
|
||||
void getBytes(uint8_t * output);
|
||||
void getChars(char * output);
|
||||
String toString(void);
|
||||
void getBytes(uint8_t * output) const;
|
||||
void getChars(char * output) const;
|
||||
String toString(void) const;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user