소스 검색

Remove stray zerobytes

master
Joost Rijneveld 7 년 전
부모
커밋
1076b37321
No known key found for this signature in database GPG 키 ID: 307BC77F47D58EE2
2개의 변경된 파일0개의 추가작업 그리고 20개의 파일을 삭제
  1. +0
    -14
      zerobytes.c
  2. +0
    -6
      zerobytes.h

+ 0
- 14
zerobytes.c 파일 보기

@@ -1,14 +0,0 @@
/*
This code was taken from the SPHINCS reference implementation.
Public domain.
*/

#include "zerobytes.h"

unsigned char *zerobytes(unsigned char *r,unsigned long long n)
{
volatile unsigned char *p=r;
while (n--)
*(p++) = 0;
return r;
}

+ 0
- 6
zerobytes.h 파일 보기

@@ -1,6 +0,0 @@
#ifndef ZEROBYTES_H
#define ZEROBYTES_H

unsigned char *zerobytes(unsigned char *r,unsigned long long n);

#endif

불러오는 중...
취소
저장