Skip to content

Instantly share code, notes, and snippets.

@jimmythai
Created January 15, 2019 23:40
Show Gist options
  • Select an option

  • Save jimmythai/48b077b2c4e8f2b594ba822b5e3a0fda to your computer and use it in GitHub Desktop.

Select an option

Save jimmythai/48b077b2c4e8f2b594ba822b5e3a0fda to your computer and use it in GitHub Desktop.
extension Data {
var hexadecimalString: String {
return self.map { String(format: "%02.2hhx", $0) }.joined()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment