13 lines
161 B
Swift
13 lines
161 B
Swift
//
|
|
// Key.swift
|
|
// native_crypto_ios
|
|
//
|
|
// Created by Hugo Pointcheval on 25/05/2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol Key {
|
|
var bytes: Data { get set }
|
|
}
|