Skip to content

Instantly share code, notes, and snippets.

View iErich's full-sized avatar

Erich Zainzinger iErich

View GitHub Profile
@vincent-peng
vincent-peng / Data+HexEncodedString.swift
Last active November 26, 2023 14:28
Convert Data to hex string in Swift
// http://stackoverflow.com/a/40089462
extension Data {
func hexEncodedString() -> String {
return map { String(format: "%02hhx", $0) }.joined()
}
}