This repository was archived by the owner on Mar 5, 2025. It is now read-only.
forked from trussed-dev/trussed
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror.rs
More file actions
68 lines (60 loc) · 1.75 KB
/
error.rs
File metadata and controls
68 lines (60 loc) · 1.75 KB
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
// use core::task::Poll;
// use crate::api::Reply;
// use crate::client::RawClient;
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
#[repr(u32)]
pub enum Error {
// cryptoki errors
HostMemory = 0x0000_0002,
GeneralError = 0x0000_0005,
FunctionFailed = 0x0000_0006,
// supposed to support "stub" function for everything,
// returning this error
FunctionNotSupported = 0x0000_0054,
// unknown, or cannot be used in this token with selected function
MechanismInvalid = 0x0000_0070,
MechanismParamInvalid = 0x0000_0071,
ObjectHandleInvalid = 0x0000_0082,
// our errors
AeadError,
CborError,
EntropyMalfunction,
FilesystemReadFailure,
FilesystemWriteFailure,
ImplementationError,
InternalError,
InvalidSerializedKey,
InvalidSerializationFormat,
MechanismNotAvailable,
NonceOverflow,
NoSuchCertificate,
NoSuchKey,
NotJustLetters,
RequestNotAvailable,
SignDataTooLarge,
WrongKeyKind,
WrongMessageLength,
WrongSignatureLength,
// sw encryption errors
FilesystemEncryptionError,
}
// pub struct FutureResult<'a, 'c> {
// c: &'c mut RawClient<'a>,
// }
// impl<'a, 'c> FutureResult<'a, 'c> {
// pub fn new(client: &'c mut RawClient<'a>) -> Self {
// Self { c: client }
// }
// pub fn poll(&mut self) -> Poll<core::result::Result<Reply, Error>> {
// // pop request in channel
// match self.c.ep.recv.dequeue() {
// Some(reply) => {
// #[cfg(all(test, feature = "verbose-tests"))]
// println!("got a reply");
// Poll::Ready(reply)
// },
// _ => Poll::Pending
// }
// }
// }