本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
kris
/
xmss-KAT-generator
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
fixed endianess for toByte and base_w
master
Andreas
8 年之前
父節點
c37b9dcfca
當前提交
2b73688b7c
共有
2 個檔案被更改
,包括
2 行新增
和
2 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
wots.c
+1
-1
xmss_commons.c
+ 1
- 1
wots.c
查看文件
@@ -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
查看文件
@@ -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;
}
Write
Preview
Loading…
取消
儲存