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 356356** Implemented enhancements:**
357357
358358- 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 )
360360- No private key analog to ` load\_external\_rsa\_public\_key ` [ \# 123] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/123 )
361361- Have two builds with two different TSS lib versions in CI [ \# 110] ( https://github.com/parallaxsecond/rust-tss-esapi/issues/110 )
362362- 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 {
101101 }
102102}
103103
104+ impl Default for PcrData {
105+ fn default ( ) -> Self {
106+ Self :: new ( )
107+ }
108+ }
109+
104110impl IntoIterator for PcrData {
105111 type Item = ( HashingAlgorithm , PcrBank ) ;
106112 type IntoIter = :: std:: vec:: IntoIter < ( HashingAlgorithm , PcrBank ) > ;
Original file line number Diff line number Diff line change @@ -143,3 +143,9 @@ impl CommandCodeAttributesBuilder {
143143 self . command_code_attributes . 0 . try_into ( )
144144 }
145145}
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 {
125125 Ok ( locality_attributes)
126126 }
127127}
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 {
289289 }
290290}
291291
292+ impl Default for PublicBuilder {
293+ fn default ( ) -> Self {
294+ Self :: new ( )
295+ }
296+ }
297+
292298/// Enum representing the Public structure.
293299///
294300/// # Details
You can’t perform that action at this time.
0 commit comments