cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+6 -3
View File
@@ -1,7 +1,10 @@
# crypto_equal
```cpp
bool crypto_equal(String a, String b)
```
Constant-time byte comparison for secrets such as MACs and tokens.
:example
print(crypto_equal("abc", "abc") ? "same\n" : "different\n");
:see
>noise