File tree Expand file tree Collapse file tree 5 files changed +25
-1
lines changed Expand file tree Collapse file tree 5 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 356
356
** Implemented enhancements:**
357
357
358
358
- Add evict\_ control API to context [ \# 135] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/135 )
359
- - Depoly Session [ \# 126] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/126 )
359
+ - Deploy Session [ \# 126] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/126 )
360
360
- No private key analog to ` load\_external\_rsa\_public\_key ` [ \# 123] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/123 )
361
361
- Have two builds with two different TSS lib versions in CI [ \# 110] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/110 )
362
362
- Split between tss-esapi and tss-esapi-sys [ \# 75] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/75 )
Original file line number Diff line number Diff line change @@ -101,6 +101,12 @@ impl PcrData {
101
101
}
102
102
}
103
103
104
+ impl Default for PcrData {
105
+ fn default ( ) -> Self {
106
+ Self :: new ( )
107
+ }
108
+ }
109
+
104
110
impl IntoIterator for PcrData {
105
111
type Item = ( HashingAlgorithm , PcrBank ) ;
106
112
type IntoIter = :: std:: vec:: IntoIter < ( HashingAlgorithm , PcrBank ) > ;
Original file line number Diff line number Diff line change @@ -143,3 +143,9 @@ impl CommandCodeAttributesBuilder {
143
143
self . command_code_attributes . 0 . try_into ( )
144
144
}
145
145
}
146
+
147
+ impl Default for CommandCodeAttributesBuilder {
148
+ fn default ( ) -> Self {
149
+ Self :: new ( )
150
+ }
151
+ }
Original file line number Diff line number Diff line change @@ -125,3 +125,9 @@ impl LocalityAttributesBuilder {
125
125
Ok ( locality_attributes)
126
126
}
127
127
}
128
+
129
+ impl Default for LocalityAttributesBuilder {
130
+ fn default ( ) -> Self {
131
+ Self :: new ( )
132
+ }
133
+ }
Original file line number Diff line number Diff line change @@ -289,6 +289,12 @@ impl PublicBuilder {
289
289
}
290
290
}
291
291
292
+ impl Default for PublicBuilder {
293
+ fn default ( ) -> Self {
294
+ Self :: new ( )
295
+ }
296
+ }
297
+
292
298
/// Enum representing the Public structure.
293
299
///
294
300
/// # Details
You can’t perform that action at this time.
0 commit comments