X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=serpent%2Fserpent.h;h=a6480efb544d1d0076516ae707f49facd9b3ce1a;hp=84e4a87c265714a2be10509879712076093350a3;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=d32eba56ce10ea6b9eff123b50d9842673b38f2b diff --git a/serpent/serpent.h b/serpent/serpent.h index 84e4a87..a6480ef 100644 --- a/serpent/serpent.h +++ b/serpent/serpent.h @@ -1,7 +1,7 @@ /* serpent.h */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -39,9 +39,9 @@ typedef struct serpent_ctx_st { /* key must be 256bit (32 byte) large! */ -void serpent_init(const void* key, uint16_t keysize_b, serpent_ctx_t* ctx); -void serpent_enc(void* buffer, const serpent_ctx_t* ctx); -void serpent_dec(void* buffer, const serpent_ctx_t* ctx); +void serpent_init(const void *key, uint16_t keysize_b, serpent_ctx_t *ctx); +void serpent_enc(void *buffer, const serpent_ctx_t *ctx); +void serpent_dec(void *buffer, const serpent_ctx_t *ctx); #endif /*SERPENT_H_*/