14 lines
222 B
Swift
14 lines
222 B
Swift
//
|
|
// Data.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 7/4/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Data {
|
|
func hexEncodedString() -> String {
|
|
return map { String(format: "%02hhx", $0) }.joined()
|
|
}
|
|
}
|