SPHINCS: make integer promotion explicit

Bu işleme şunda yer alıyor:
Joost Rijneveld 2019-04-16 10:35:08 +02:00
ebeveyn 2a9d793152
işleme db7843c5eb
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: A4FE39CF49CBC553

Dosyayı Görüntüle

@ -68,7 +68,7 @@ static void base_w(unsigned int *output, const size_t out_len,
bits += 8;
}
bits -= SPX_WOTS_LOGW;
output[out] = (total >> bits) & (SPX_WOTS_W - 1);
output[out] = (unsigned int)((total >> bits) & (SPX_WOTS_W - 1));
out++;
}
}