| 49 | } |
| 50 | |
| 51 | uint32_t HashLength(dmLiveUpdateDDF::HashAlgorithm algorithm) |
| 52 | { |
| 53 | const uint32_t bitlen[5] = { 0U, 128U, 160U, 256U, 512U }; |
| 54 | return bitlen[(int) algorithm] / 8U; |
| 55 | } |
| 56 | |
| 57 | void BytesToHexString(const uint8_t* byte_buf, uint32_t byte_buf_len, char* out_buf, uint32_t out_len) |
| 58 | { |
no outgoing calls