File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tss-esapi/src/structures/tagged/public Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,17 +134,17 @@ impl PublicEccParametersBuilder {
134
134
/// error is returned
135
135
pub fn build ( self ) -> Result < PublicEccParameters > {
136
136
let ecc_scheme = self . ecc_scheme . ok_or_else ( || {
137
- error ! ( "Scheme is required nad has not been set in the PublicEccParametersBuilder" ) ;
137
+ error ! ( "Scheme is required and has not been set in the PublicEccParametersBuilder" ) ;
138
138
Error :: local_error ( WrapperErrorKind :: ParamsMissing )
139
139
} ) ?;
140
140
141
141
let ecc_curve = self . ecc_curve . ok_or_else ( || {
142
- error ! ( "Curve is required nad has not been set in the PublicEccParametersBuilder" ) ;
142
+ error ! ( "Curve is required and has not been set in the PublicEccParametersBuilder" ) ;
143
143
Error :: local_error ( WrapperErrorKind :: ParamsMissing )
144
144
} ) ?;
145
145
146
146
let key_derivation_function_scheme = self . key_derivation_function_scheme . ok_or_else ( || {
147
- error ! ( "Key derivation function scheme is required nad has not been set in the PublicEccParametersBuilder" ) ;
147
+ error ! ( "Key derivation function scheme is required and has not been set in the PublicEccParametersBuilder" ) ;
148
148
Error :: local_error ( WrapperErrorKind :: ParamsMissing )
149
149
} ) ?;
150
150
You can’t perform that action at this time.
0 commit comments