comparison bignum.h @ 910:89555751c489 asm

merge up to 2013.63, improve ASM makefile rules a bit
author Matt Johnston <matt@ucc.asn.au>
date Thu, 27 Feb 2014 21:35:58 +0800
parents 724c3e0c8734
children deed0571cacc
comparison
equal deleted inserted replaced
909:e4b75744acab 910:89555751c489
28 #include "includes.h" 28 #include "includes.h"
29 #include "dbutil.h" 29 #include "dbutil.h"
30 30
31 void m_mp_init(mp_int *mp); 31 void m_mp_init(mp_int *mp);
32 void m_mp_init_multi(mp_int *mp, ...) ATTRIB_SENTINEL; 32 void m_mp_init_multi(mp_int *mp, ...) ATTRIB_SENTINEL;
33 void m_mp_alloc_init_multi(mp_int **mp, ...) ATTRIB_SENTINEL;
33 void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len); 34 void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len);
34 void sha1_process_mp(hash_state *hs, mp_int *mp); 35 void hash_process_mp(const struct ltc_hash_descriptor *hash_desc,
36 hash_state *hs, mp_int *mp);
35 37
36 #endif /* _BIGNUM_H_ */ 38 #endif /* _BIGNUM_H_ */