Skip to content

Commit

Permalink
Added 256-bit AES with CBC, CTR, GCM, and Keywrap Modes (#136)
Browse files Browse the repository at this point in the history
AES CBC, CTR, GCM, and Keywrap modes for 256 bit keys.
  • Loading branch information
JonathanHenson authored Apr 12, 2023
1 parent 0ab9396 commit 0e35e6f
Show file tree
Hide file tree
Showing 14 changed files with 4,880 additions and 9 deletions.
3 changes: 2 additions & 1 deletion bin/run_x_platform_fuzz_corpus/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ int main(int argc, char *argv[]) {
}
fprintf(
stdout,
"Corpus verification complete with %d failures out of %d signatures processed\n\n",
"Corpus %d verification complete with %d failures out of %d signatures processed\n\n",
(int)corpus_runs,
(int)signatures_failed,
(int)signatures_processed);

Expand Down
1 change: 1 addition & 0 deletions format-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ do
done

exit $FAIL

2 changes: 1 addition & 1 deletion include/aws/cal/cal.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ enum aws_cal_errors {
AWS_ERROR_CAL_MALFORMED_ASN1_ENCOUNTERED,
AWS_ERROR_CAL_MISMATCHED_DER_TYPE,
AWS_ERROR_CAL_UNSUPPORTED_ALGORITHM,

AWS_ERROR_CAL_BUFFER_TOO_LARGE_FOR_ALGORITHM,
AWS_ERROR_CAL_END_RANGE = AWS_ERROR_ENUM_END_RANGE(AWS_C_CAL_PACKAGE_ID)
};

Expand Down
Loading

0 comments on commit 0e35e6f

Please sign in to comment.