]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - base64/base64_dec.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / base64 / base64_dec.h
index 39beff84f6557870dff57947ec17ec6535292127..1cb63d3dec4bb125170953ded0e8772e97e7ade4 100644 (file)
@@ -1,7 +1,7 @@
 /* base64_dec.h */
 /*
  *   This file is part of the AVR-Crypto-Lib.
- *   Copyright (C) 2006, 2007, 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
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-
 #ifndef BASE64_DEC_H_
 #define BASE64_DEC_H_
 
 #include <stdint.h>
 
-int base64_binlength(charstr, uint8_t strict);
-int base64dec(void* dest, char* b64str, uint8_t strict);
+int base64_binlength(char *str, uint8_t strict);
+int base64dec(void *dest, const char *b64str, uint8_t strict);
 
 #endif /*BASE64_DEC_H_*/