Christian Risi ad4fd555f1 V0.6.0 Arroyo Toad
Added the capability to sign and verify P521 Signature
2024-12-06 11:31:07 +00:00

17 lines
367 B
Swift

import Foundation
public protocol MessageP {
var version: UInt8 {get}
var messageType: MessageType {get}
var devType: DeviceType {get}
var RESERVED: UInt8 {get}
var signType: SignType {get}
var timestamp: Date {get}
var devID: UInt128 {get}
var location: Location {get}
var fields: [Field] {get}
func toString() -> String
}