comparison bignum.h @ 839:33207ed1174b

Merge in ECC
author Matt Johnston <matt@ucc.asn.au>
date Mon, 21 Oct 2013 22:57:21 +0800
parents 724c3e0c8734
children deed0571cacc
comparison
equal deleted inserted replaced
834:e378da7eae5d 839:33207ed1174b
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_ */