1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
use super::private_key::PrivateKey; #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct Identity { pub pubkey_blob: Vec<u8>, pub comment: String, } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct SignRequest { pub pubkey_blob: Vec<u8>, pub data: Vec<u8>, pub flags: u32 } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct AddIdentity { pub privkey: PrivateKey, pub comment: String } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct AddIdentityConstrained { pub identity: AddIdentity, pub constraints: Vec<KeyConstraint> } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct RemoveIdentity { pub pubkey_blob: Vec<u8> } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct SmartcardKey { pub id: String, pub pin: String } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct KeyConstraint { pub constraint_type: u8, pub constraint_data: Vec<u8> } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct AddSmartcardKeyConstrained { pub key: SmartcardKey, pub constraints: Vec<KeyConstraint> } #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub struct Extension { extension_type: String, extension_contents: Vec<u8> } pub type Passphrase = String; pub type SignatureBlob = Vec<u8>; #[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] pub enum Message { Reserved0, Reserved1, Reserved2, Reserved3, Reserved4, Failure, Success, Reserved7, Reserved8, Reserved9, Reserved10, RequestIdentities, IdentitiesAnswer(Vec<Identity>), SignRequest(SignRequest), SignResponse(SignatureBlob), Reserved15, Reserved16, AddIdentity(AddIdentity), RemoveIdentity(RemoveIdentity), RemoveAllIdentities, AddSmartcardKey(SmartcardKey), RemoveSmartcardKey(SmartcardKey), Lock(Passphrase), Unlock(Passphrase), Reserved24, AddIdConstrained(AddIdentityConstrained), AddSmartcardKeyConstrained(AddSmartcardKeyConstrained), Extension(Extension), ExtensionFailure, }