| 19 | } |
| 20 | |
| 21 | std::string Hex::EncodeAsString( |
| 22 | const void* data, size_t size, |
| 23 | bool uppercase) |
| 24 | { |
| 25 | std::string str; |
| 26 | EncodeTo(data, size, &str, uppercase); |
| 27 | return str; |
| 28 | } |
| 29 | |
| 30 | } // namespace toft |
nothing calls this directly
no outgoing calls
no test coverage detected