@@ -5,7 +5,8 @@ use cryptoki::{
5
5
error:: Result ,
6
6
mechanism:: Mechanism ,
7
7
object:: { Attribute , AttributeType , ObjectHandle } ,
8
- session:: Session ,
8
+ session:: { Session , UserType } ,
9
+ types:: AuthPin ,
9
10
} ;
10
11
11
12
pub use cryptoki;
@@ -23,8 +24,17 @@ pub trait SessionLike {
23
24
object : ObjectHandle ,
24
25
attributes : & [ AttributeType ] ,
25
26
) -> Result < Vec < Attribute > > ;
27
+ fn update_attributes ( & self , object : ObjectHandle , template : & [ Attribute ] ) -> Result < ( ) > ;
26
28
fn sign ( & self , mechanism : & Mechanism , key : ObjectHandle , data : & [ u8 ] ) -> Result < Vec < u8 > > ;
27
29
fn generate_random_slice ( & self , random_data : & mut [ u8 ] ) -> Result < ( ) > ;
30
+ fn wrap_key (
31
+ & self ,
32
+ mechanism : & Mechanism ,
33
+ wrapping_key : ObjectHandle ,
34
+ key : ObjectHandle ,
35
+ ) -> Result < Vec < u8 > > ;
36
+ fn login ( & self , user_type : UserType , pin : Option < & AuthPin > ) -> Result < ( ) > ;
37
+ fn logout ( & self ) -> Result < ( ) > ;
28
38
}
29
39
30
40
impl SessionLike for Session {
@@ -41,12 +51,30 @@ impl SessionLike for Session {
41
51
) -> Result < Vec < Attribute > > {
42
52
Session :: get_attributes ( self , object, attributes)
43
53
}
54
+ fn update_attributes ( & self , object : ObjectHandle , template : & [ Attribute ] ) -> Result < ( ) > {
55
+ Session :: update_attributes ( self , object, template)
56
+ }
57
+
44
58
fn sign ( & self , mechanism : & Mechanism , key : ObjectHandle , data : & [ u8 ] ) -> Result < Vec < u8 > > {
45
59
Session :: sign ( self , mechanism, key, data)
46
60
}
47
61
fn generate_random_slice ( & self , random_data : & mut [ u8 ] ) -> Result < ( ) > {
48
62
Session :: generate_random_slice ( self , random_data)
49
63
}
64
+ fn wrap_key (
65
+ & self ,
66
+ mechanism : & Mechanism ,
67
+ wrapping_key : ObjectHandle ,
68
+ key : ObjectHandle ,
69
+ ) -> Result < Vec < u8 > > {
70
+ Session :: wrap_key ( self , mechanism, wrapping_key, key)
71
+ }
72
+ fn login ( & self , user_type : UserType , pin : Option < & AuthPin > ) -> Result < ( ) > {
73
+ Session :: login ( self , user_type, pin)
74
+ }
75
+ fn logout ( & self ) -> Result < ( ) > {
76
+ Session :: logout ( self )
77
+ }
50
78
}
51
79
52
80
impl < ' s > SessionLike for & ' s Session {
@@ -63,12 +91,30 @@ impl<'s> SessionLike for &'s Session {
63
91
) -> Result < Vec < Attribute > > {
64
92
Session :: get_attributes ( self , object, attributes)
65
93
}
94
+ fn update_attributes ( & self , object : ObjectHandle , template : & [ Attribute ] ) -> Result < ( ) > {
95
+ Session :: update_attributes ( self , object, template)
96
+ }
97
+
66
98
fn sign ( & self , mechanism : & Mechanism , key : ObjectHandle , data : & [ u8 ] ) -> Result < Vec < u8 > > {
67
99
Session :: sign ( self , mechanism, key, data)
68
100
}
69
101
fn generate_random_slice ( & self , random_data : & mut [ u8 ] ) -> Result < ( ) > {
70
102
Session :: generate_random_slice ( self , random_data)
71
103
}
104
+ fn wrap_key (
105
+ & self ,
106
+ mechanism : & Mechanism ,
107
+ wrapping_key : ObjectHandle ,
108
+ key : ObjectHandle ,
109
+ ) -> Result < Vec < u8 > > {
110
+ Session :: wrap_key ( self , mechanism, wrapping_key, key)
111
+ }
112
+ fn login ( & self , user_type : UserType , pin : Option < & AuthPin > ) -> Result < ( ) > {
113
+ Session :: login ( self , user_type, pin)
114
+ }
115
+ fn logout ( & self ) -> Result < ( ) > {
116
+ Session :: logout ( self )
117
+ }
72
118
}
73
119
74
120
pub trait CryptokiImport {
0 commit comments