Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Apua
Kirjaudu sisään
kris
/
xmss-KAT-generator
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
0
Pull-pyynnöt
0
Julkaisut
0
Wiki
Toiminta
Selaa lähdekoodia
fixed endianess for toByte and base_w
master
Andreas
8 vuotta sitten
vanhempi
c37b9dcfca
commit
2b73688b7c
2 muutettua tiedostoa
jossa
2 lisäystä
ja
2 poistoa
Jaettu näkymä
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
wots.c
+1
-1
xmss_commons.c
+ 1
- 1
wots.c
Näytä tiedosto
@@ -71,7 +71,7 @@ static void base_w(int *output, const unsigned char *input, int in_len, const wo
for (consumed = 0; consumed < 8 * in_len; consumed += params->log_w) {
if (bits == 0) {
total = input[in
_len - 1 - in
];
total = input[in];
in++;
bits += 8;
}
+ 1
- 1
xmss_commons.c
Näytä tiedosto
@@ -12,7 +12,7 @@ Public domain.
void to_byte(unsigned char *out, unsigned int in, int bytes)
{
int i;
for (i =
0; i < bytes; i++
) {
for (i =
bytes-1; i >= 0; i--
) {
out[i] = in & 0xff;
in = in >> 8;
}
Kirjoita
Esikatselu
Ladataan…
Peruuta
Tallenna