X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=skein%2Fubi1024_asm.S;fp=skein%2Fubi1024_asm.S;h=070242a0b2338e6c39521443d9861fcd7269bca5;hp=28b64518eb96c6e958732510dcbb54b93b36c5e7;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/skein/ubi1024_asm.S b/skein/ubi1024_asm.S index 28b6451..070242a 100644 --- a/skein/ubi1024_asm.S +++ b/skein/ubi1024_asm.S @@ -27,7 +27,7 @@ /******************************************************************************/ /* -void ubi1024_init(ubi1024_ctx_t* ctx, const void* g, uint8_t type){ +void ubi1024_init(ubi1024_ctx_t *ctx, const void *g, uint8_t type){ memset(ctx->tweak, 0, 15); ctx->tweak[15] = 0x40+type; memcpy(ctx->g, g, UBI1024_BLOCKSIZE_B); @@ -57,7 +57,7 @@ ubi1024_init: /******************************************************************************/ /* -void ubi1024_ctx2hash(void* dest, const ubi1024_ctx_t* ctx){ +void ubi1024_ctx2hash(void *dest, const ubi1024_ctx_t *ctx){ memcpy(dest, ctx->g, UBI1024_BLOCKSIZE_B); } */ @@ -79,7 +79,7 @@ ubi1024_ctx2hash: /******************************************************************************/ /* -void ubi1024_nextBlock(ubi1024_ctx_t* ctx, const void* block){ +void ubi1024_nextBlock(ubi1024_ctx_t *ctx, const void *block){ threefish1024_ctx_t tfctx; ((uint64_t*)(ctx->tweak))[0] += UBI1024_BLOCKSIZE_B; threefish1024_init(ctx->g, ctx->tweak, &tfctx); @@ -162,7 +162,7 @@ exit: /******************************************************************************/ /* -void ubi1024_lastBlock(ubi1024_ctx_t* ctx, const void* block, uint16_t length_b){ +void ubi1024_lastBlock(ubi1024_ctx_t *ctx, const void *block, uint16_t length_b){ threefish1024_ctx_t tfctx; while(length_b>UBI1024_BLOCKSIZE){ ubi1024_nextBlock(ctx, block);