summaryrefslogtreecommitdiff
path: root/mpi.h
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-12-12 14:14:58 +0000
committerErwin Nindl <nine@wirdorange.org>2007-12-12 14:14:58 +0000
commita83f590e0e89883e8362bb5c4a760f09856378f9 (patch)
treefd84c16aadc37ed1011e4cbb5a4d42dc18534085 /mpi.h
parentset 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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpi.h b/mpi.h
index 6121d9c..de7aa98 100644
--- a/mpi.h
+++ b/mpi.h
@@ -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: