Add the Javascript implementation

This commit is contained in:
Frank Denis 2019-05-09 00:34:20 +02:00
parent ff212957a7
commit 0137cd75af
2 changed files with 4 additions and 2 deletions

View file

@ -57,6 +57,8 @@ a small Rust crate to verify Minisign signatures.
to handle and create Minisign signatures.
* [minisign-py](https://github.com/HacKanCuBa/minisign-py) is a pure Python
port of Minisign.
* [minisign](https://github.com/chm-diederichs/minisign) a Javascript
implementation.
Faults injections
-----------------

View file

@ -28,8 +28,8 @@ b64_to_bin(unsigned char * const bin, const char *b64,
const unsigned char *b64_u = (const unsigned char *) b64;
unsigned char *bin_w = bin;
unsigned char mask = 0U;
unsigned char t0, t1, t2, t3;
uint32_t t;
unsigned char t0 = 0, t1 = 0 , t2 = 0, t3 = 0;
uint32_t t = 0;
size_t i;
if (b64_len % 4U != 0U || (i = b64_len / 4U) <= 0U || bin_maxlen < i * 3U -