File tree 2 files changed +19
-4
lines changed
2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,20 @@ mod test {
181
181
fn should_decrypt_test_vectors_aes_ctr_64_hmac_sha256_32 ( ) {
182
182
decrypt_test_vector ( CipherSuiteVariant :: AesCtr128HmacSha256_32 ) ;
183
183
}
184
+
185
+ #[ test]
186
+ // AesCtr128HmacSha256_80 is not available in the test vectors
187
+ #[ ignore]
188
+ fn should_encrypt_test_vectors_aes_ctr_64_hmac_sha256_80 ( ) {
189
+ encrypt_test_vector ( CipherSuiteVariant :: AesCtr128HmacSha256_32 ) ;
190
+ }
191
+
192
+ #[ test]
193
+ // AesCtr128HmacSha256_80 is not available in the test vectors
194
+ #[ ignore]
195
+ fn should_decrypt_test_vectors_aes_ctr_64_hmac_sha256_80 ( ) {
196
+ decrypt_test_vector ( CipherSuiteVariant :: AesCtr128HmacSha256_32 ) ;
197
+ }
184
198
}
185
199
}
186
200
}
Original file line number Diff line number Diff line change @@ -75,10 +75,11 @@ mod test {
75
75
derive_correct_sub_keys ( CipherSuiteVariant :: AesCtr128HmacSha256_32 ) ;
76
76
}
77
77
78
+ #[ test]
78
79
// AesCtr128HmacSha256_80 is not available in the test vectors
79
- // #[test ]
80
- // fn derive_correct_keys_aes_ctr_128_hmac_sha256_80() {
81
- // derive_correct_sub_keys(CipherSuiteVariant::AesCtr128HmacSha256_80);
82
- // }
80
+ # [ ignore ]
81
+ fn derive_correct_keys_aes_ctr_128_hmac_sha256_80 ( ) {
82
+ derive_correct_sub_keys ( CipherSuiteVariant :: AesCtr128HmacSha256_80 ) ;
83
+ }
83
84
}
84
85
}
You can’t perform that action at this time.
0 commit comments