Skip to content

Commit

Permalink
update note
Browse files Browse the repository at this point in the history
  • Loading branch information
motarekk authored Oct 5, 2023
1 parent ffb61a2 commit a32db61
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion KATs/Ascon-128_KAT.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ function ascon_128_KAT(){
}
}

var note = "";
if(failed > 0){
note = "\n\nnote: you can view the failed tests in the console";
}

var print_encryption_KAT_result = `(encryption):\npassed: ${passed}\nfailed: ${failed}`;
console.log(print_encryption_KAT_result);

Expand Down Expand Up @@ -64,7 +69,7 @@ function ascon_128_KAT(){
}
}

var note = "";
note = "";
if(failed > 0){
note = "\n\nnote: you can view the failed tests in the console";
}
Expand Down

0 comments on commit a32db61

Please sign in to comment.