import Foundation

public protocol XyoStorageProvider {
    func write (key : [UInt8], value: [UInt8]) throws
    func read (key : [UInt8]) throws -> [UInt8]?