このサイトは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行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+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;
}
書き込み
プレビュー
読み込み中…
キャンセル
保存