Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
kris
/
xmss-KAT-generator
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
fixed endianess for toByte and base_w
master
Andreas
hace 8 años
padre
c37b9dcfca
commit
2b73688b7c
Se han
modificado 2 ficheros
con
2 adiciones
y
2 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
wots.c
+1
-1
xmss_commons.c
+ 1
- 1
wots.c
Ver fichero
@@ -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
Ver fichero
@@ -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;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar