diff --git a/content/docs/crypto/constant_time_tool/Dudect.md b/content/docs/crypto/constant_time_tool/Dudect.md index d8ca03e..45752a1 100644 --- a/content/docs/crypto/constant_time_tool/Dudect.md +++ b/content/docs/crypto/constant_time_tool/Dudect.md @@ -14,7 +14,7 @@ weight: 45 ## Overview -[Dudect](https://github.com/oreparaz/dudect/) is a [statistical constant-time analysis tool]({{}}) that measures the execution time of a specific *code section* for two different *input classes* and aims to find the statical difference between the measurements of the two classes. +[Dudect](https://github.com/oreparaz/dudect/) is a statistical constant-time analysis tool that measures the execution time of a specific *code section* for two different *input classes* and aims to find the statical difference between the measurements of the two classes. If the timing measurements for the two input classes deviate from one another, it would suggest that the code is dependent on the input and, therefore, not constant time. The two most commonly used input classes are: diff --git a/content/docs/crypto/constant_time_tool/timecop.md b/content/docs/crypto/constant_time_tool/timecop.md index a82c015..7a96207 100644 --- a/content/docs/crypto/constant_time_tool/timecop.md +++ b/content/docs/crypto/constant_time_tool/timecop.md @@ -138,7 +138,7 @@ Importantly, Valgrind does not report any other operations performed on the secr ## Example -Below is a simple example of a modular exponentiation operation used in RSA, which we described in the [intro section]({{}}) +Below is a simple example of a modular exponentiation operation used in RSA, which we described in the intro section. ```C 1 │ #include