Skip to content

Commit

Permalink
add 44 and 87 to speed tool
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemas committed Nov 22, 2024
1 parent 6e3bd1c commit 134d910
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tool/speed.cc
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,9 @@ static bool SpeedDigestSignNID(const std::string &name, int nid,
}

static bool SpeedDigestSign(const std::string &selected) {
return SpeedDigestSignNID("MLDSA65", NID_MLDSA65, selected);
return SpeedDigestSignNID("MLDSA44", NID_MLDSA44, selected) &&
SpeedDigestSignNID("MLDSA65", NID_MLDSA65, selected) &&
SpeedDigestSignNID("MLDSA87", NID_MLDSA87, selected);
}

#endif
Expand Down

0 comments on commit 134d910

Please sign in to comment.