X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=mgf1%2Fmgf1.h;h=007893d048dc0a6a30d79e40a4392c4eddfb3cc4;hp=76c3b8d94aac3bcb5a5123718b428c82a196b868;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=e1212ded3556546a568954bedc887fddcb128183 diff --git a/mgf1/mgf1.h b/mgf1/mgf1.h index 76c3b8d..007893d 100644 --- a/mgf1/mgf1.h +++ b/mgf1/mgf1.h @@ -1,7 +1,7 @@ /* mgf1.h */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2010 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 @@ -24,13 +24,13 @@ #include "hfal-basic.h" typedef struct { - const hfdesc_t* hashfunction; + const hfdesc_t *hashfunction; } mgf1_parameter_t; /* * MGF1 as defined in PKCS #1 v2.1 B.2.1 */ -void mgf1(void* dest, const void* seed, uint16_t seed_len_B, uint16_t out_length_B, const mgf1_parameter_t* p); +void mgf1(void *dest, const void *seed, uint16_t seed_len_B, uint16_t out_length_B, const mgf1_parameter_t *p); #endif /* MGF1_H_ */