Ferrite-backup/Ferrite/Extensions/Data.swift
kingbri e2792a0f00 Ferrite: Add code up to alpha 1
Working alpha version of Ferrite

Signed-off-by: kingbri <bdashore3@gmail.com>

part2
2022-07-21 00:01:41 -04:00

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()
}
}