comparison bignum.h @ 150:82fcf3185616

Cleaning out various dead wood found with -dead_strip bignum.c: mptobytes now resides in dss.c loginrec.c: remove lastlog code since it isn't used. dbutil.c: removed obselete usingsyslog variable channel.h: client channel type only defined for client compile common-algo.c: s/rijndael/aes/
author Matt Johnston <matt@ucc.asn.au>
date Mon, 20 Dec 2004 14:24:57 +0000
parents fe6bca95afa7
children c9483550701b
comparison
equal deleted inserted replaced
149:ed9ca2a9705c 150:82fcf3185616
27 27
28 #include "includes.h" 28 #include "includes.h"
29 29
30 void m_mp_init(mp_int *mp); 30 void m_mp_init(mp_int *mp);
31 void m_mp_init_multi(mp_int *mp, ...); 31 void m_mp_init_multi(mp_int *mp, ...);
32 unsigned char* mptobytes(mp_int *mp, int *len);
33 void bytestomp(mp_int *mp, unsigned char* bytes, unsigned int len); 32 void bytestomp(mp_int *mp, unsigned char* bytes, unsigned int len);
34 void sha1_process_mp(hash_state *hs, mp_int *mp); 33 void sha1_process_mp(hash_state *hs, mp_int *mp);
35 34
36 #endif /* _BIGNUM_H_ */ 35 #endif /* _BIGNUM_H_ */