이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
kris
/
xmss-KAT-generator
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
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;
}
쓰기
미리보기
불러오는 중...
취소
저장