diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-05-05 03:58:21 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-05-05 03:58:21 +0000 |
commit | cf585ba1dee7a7e1f2fbc90d2251d99b7da66a7e (patch) | |
tree | 34034ef46643844cbece5ea3c8926b4db0346200 /bignum.h | |
parent | 298a5717bc479f13276982858e84172c3c29146a (diff) |
- refactored random mp_int generation and byte->mp_int code
- added RSA blinding
--HG--
extra : convert_revision : 5d5b4657a24a1c8f53c6fc45d5ec29ddb85fb45a
Diffstat (limited to 'bignum.h')
-rw-r--r-- | bignum.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ void m_mp_init(mp_int *mp); void m_mp_init_multi(mp_int *mp, ...); -void bytestomp(mp_int *mp, unsigned char* bytes, unsigned int len); +void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len); void sha1_process_mp(hash_state *hs, mp_int *mp); #endif /* _BIGNUM_H_ */ |