mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
Add the Javascript implementation
This commit is contained in:
parent
ff212957a7
commit
0137cd75af
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
-----------------
|
||||
|
|
|
@ -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 -
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue