Allow building with BoringSSL
This commit is contained in:
parent
b7e27cfd7f
commit
3c527d55f9
|
@ -55,6 +55,15 @@ void ssh_libcrypto_init(void);
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef OPENSSL_IS_BORINGSSL
|
||||||
|
/*
|
||||||
|
* BoringSSL (rightly) got rid of the BN_FLG_CONSTTIME flag, along with
|
||||||
|
* the entire BN_set_flags() interface.
|
||||||
|
* https://boringssl.googlesource.com/boringssl/+/0a211dfe9
|
||||||
|
*/
|
||||||
|
# define BN_set_flags(a, b)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_EVP_CIPHER_CTX_GET_IV
|
#ifndef HAVE_EVP_CIPHER_CTX_GET_IV
|
||||||
# ifdef HAVE_EVP_CIPHER_CTX_GET_UPDATED_IV
|
# ifdef HAVE_EVP_CIPHER_CTX_GET_UPDATED_IV
|
||||||
# define EVP_CIPHER_CTX_get_iv EVP_CIPHER_CTX_get_updated_iv
|
# define EVP_CIPHER_CTX_get_iv EVP_CIPHER_CTX_get_updated_iv
|
||||||
|
|
6
sshkey.c
6
sshkey.c
|
@ -3342,16 +3342,22 @@ translate_libcrypto_error(unsigned long pem_err)
|
||||||
case ERR_LIB_PEM:
|
case ERR_LIB_PEM:
|
||||||
switch (pem_reason) {
|
switch (pem_reason) {
|
||||||
case PEM_R_BAD_PASSWORD_READ:
|
case PEM_R_BAD_PASSWORD_READ:
|
||||||
|
#ifdef PEM_R_PROBLEMS_GETTING_PASSWORD
|
||||||
case PEM_R_PROBLEMS_GETTING_PASSWORD:
|
case PEM_R_PROBLEMS_GETTING_PASSWORD:
|
||||||
|
#endif
|
||||||
|
#ifdef PEM_R_BAD_DECRYPT
|
||||||
case PEM_R_BAD_DECRYPT:
|
case PEM_R_BAD_DECRYPT:
|
||||||
|
#endif
|
||||||
return SSH_ERR_KEY_WRONG_PASSPHRASE;
|
return SSH_ERR_KEY_WRONG_PASSPHRASE;
|
||||||
default:
|
default:
|
||||||
return SSH_ERR_INVALID_FORMAT;
|
return SSH_ERR_INVALID_FORMAT;
|
||||||
}
|
}
|
||||||
case ERR_LIB_EVP:
|
case ERR_LIB_EVP:
|
||||||
switch (pem_reason) {
|
switch (pem_reason) {
|
||||||
|
#ifdef EVP_R_BAD_DECRYPT
|
||||||
case EVP_R_BAD_DECRYPT:
|
case EVP_R_BAD_DECRYPT:
|
||||||
return SSH_ERR_KEY_WRONG_PASSPHRASE;
|
return SSH_ERR_KEY_WRONG_PASSPHRASE;
|
||||||
|
#endif
|
||||||
#ifdef EVP_R_BN_DECODE_ERROR
|
#ifdef EVP_R_BN_DECODE_ERROR
|
||||||
case EVP_R_BN_DECODE_ERROR:
|
case EVP_R_BN_DECODE_ERROR:
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue