diff options
author | Erwin Nindl <nine@wirdorange.org> | 2007-12-12 14:14:58 +0000 |
---|---|---|
committer | Erwin Nindl <nine@wirdorange.org> | 2007-12-12 14:14:58 +0000 |
commit | a83f590e0e89883e8362bb5c4a760f09856378f9 (patch) | |
tree | fd84c16aadc37ed1011e4cbb5a4d42dc18534085 /mpi.h | |
parent | set iv to fixed length of 16byte in kd (diff) |
changed Mpi::getBuf, now returns u_int8_t *!
Diffstat (limited to 'mpi.h')
-rw-r--r-- | mpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ public: void rShift(u_int8_t n); // LSB on the right side! Mpi mul2exp(u_int32_t e) const; // value * 2^e void clearHighBit(u_int32_t n); - Buffer getBuf(u_int32_t min_len=0) const; + u_int8_t *getBuf(u_int32_t buf_len) const; u_int32_t getLen() const; protected: |