Skip to content

Instantly share code, notes, and snippets.

@vincent-peng
Last active November 26, 2023 14:28
Show Gist options
  • Save vincent-peng/07897b760c9e27573957a4cf7d10b5ee to your computer and use it in GitHub Desktop.
Save vincent-peng/07897b760c9e27573957a4cf7d10b5ee to your computer and use it in GitHub Desktop.
Convert Data to hex string in Swift
// http://stackoverflow.com/a/40089462
extension Data {
func hexEncodedString() -> String {
return map { String(format: "%02hhx", $0) }.joined()
}
}
@yerzhant
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment