We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receiving the below error when making in Ubuntu (also fails in Debian). Seems to have started after recent update.
Seems to be related to the recent 'ssl 1.1 compat fixes -- needs review' fix...
key.cpp: In function ‘int ECDSA_SIG_recover_key_GFp(EC_KEY*, ECDSA_SIG*, const unsigned char*, int, int, int)’: key.cpp:75:5: error: ‘ECDSA_SIG_get0’ was not declared in this scope ECDSA_SIG_get0(ecsig, &ecsigR, &ecsigS); ^~~~~~~~~~~~~~ key.cpp:75:5: note: suggested alternative: ‘ECDSA_SIG_new’ ECDSA_SIG_get0(ecsig, &ecsigR, &ecsigS); ^~~~~~~~~~~~~~ ECDSA_SIG_new key.cpp: In member function ‘bool CKey::SignCompact(uint256, std::vector&)’: key.cpp:300:5: error: ‘ECDSA_SIG_get0’ was not declared in this scope ECDSA_SIG_get0(sig, &sigR, &sigS); ^~~~~~~~~~~~~~ key.cpp:300:5: note: suggested alternative: ‘ECDSA_SIG_new’ ECDSA_SIG_get0(sig, &sigR, &sigS); ^~~~~~~~~~~~~~ ECDSA_SIG_new key.cpp: In member function ‘bool CKey::SetCompactSignature(uint256, const std::vector&)’: key.cpp:347:5: error: ‘ECDSA_SIG_get0’ was not declared in this scope ECDSA_SIG_get0(sig, (const BIGNUM**)&sigR, (const BIGNUM**)&sigS); ^~~~~~~~~~~~~~ key.cpp:347:5: note: suggested alternative: ‘ECDSA_SIG_new’ ECDSA_SIG_get0(sig, (const BIGNUM**)&sigR, (const BIGNUM**)&sigS); ^~~~~~~~~~~~~~ ECDSA_SIG_new makefile.unix:147: recipe for target 'obj/key.o' failed make: *** [obj/key.o] Error 1
The text was updated successfully, but these errors were encountered:
What version of OpenSSL do you have installed?
Sorry, something went wrong.
No branches or pull requests
Receiving the below error when making in Ubuntu (also fails in Debian). Seems to have started after recent update.
Seems to be related to the recent 'ssl 1.1 compat fixes -- needs review' fix...
key.cpp: In function ‘int ECDSA_SIG_recover_key_GFp(EC_KEY*, ECDSA_SIG*, const unsigned char*, int, int, int)’:
key.cpp:75:5: error: ‘ECDSA_SIG_get0’ was not declared in this scope
ECDSA_SIG_get0(ecsig, &ecsigR, &ecsigS);
^~~~~~~~~~~~~~
key.cpp:75:5: note: suggested alternative: ‘ECDSA_SIG_new’
ECDSA_SIG_get0(ecsig, &ecsigR, &ecsigS);
^~~~~~~~~~~~~~
ECDSA_SIG_new
key.cpp: In member function ‘bool CKey::SignCompact(uint256, std::vector&)’:
key.cpp:300:5: error: ‘ECDSA_SIG_get0’ was not declared in this scope
ECDSA_SIG_get0(sig, &sigR, &sigS);
^~~~~~~~~~~~~~
key.cpp:300:5: note: suggested alternative: ‘ECDSA_SIG_new’
ECDSA_SIG_get0(sig, &sigR, &sigS);
^~~~~~~~~~~~~~
ECDSA_SIG_new
key.cpp: In member function ‘bool CKey::SetCompactSignature(uint256, const std::vector&)’:
key.cpp:347:5: error: ‘ECDSA_SIG_get0’ was not declared in this scope
ECDSA_SIG_get0(sig, (const BIGNUM**)&sigR, (const BIGNUM**)&sigS);
^~~~~~~~~~~~~~
key.cpp:347:5: note: suggested alternative: ‘ECDSA_SIG_new’
ECDSA_SIG_get0(sig, (const BIGNUM**)&sigR, (const BIGNUM**)&sigS);
^~~~~~~~~~~~~~
ECDSA_SIG_new
makefile.unix:147: recipe for target 'obj/key.o' failed
make: *** [obj/key.o] Error 1
The text was updated successfully, but these errors were encountered: