Fix BN_div/mod_word() usage.

This commit is contained in:
John Preston 2017-05-05 14:49:46 +03:00
parent d0afe83beb
commit 622fbdb64b
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ public:
_failed = true;
}
}
unsigned int setDivWord(unsigned int word) {
BN_ULONG setDivWord(BN_ULONG word) {
Expects(word != 0);
if (failed()) {
return (BN_ULONG)-1;
@ -144,7 +144,7 @@ public:
return false;
}
unsigned int modWord(unsigned int word) const {
BN_ULONG modWord(BN_ULONG word) const {
Expects(word != 0);
if (failed()) {
return (BN_ULONG)-1;