mirror of https://github.com/openssl/openssl.git
Made foreign bit field unsigned in evp.h
Fixes #16010 Signed-off-by: Randall S. Becker <rsbecker@nexbridge.com> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16011)
This commit is contained in:
parent
02db7354fe
commit
0588778f5e
|
|
@ -686,7 +686,7 @@ struct evp_pkey_st {
|
|||
#ifndef FIPS_MODULE
|
||||
STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */
|
||||
int save_parameters;
|
||||
int foreign:1; /* the low-level key is using an engine or an app-method */
|
||||
unsigned int foreign:1; /* the low-level key is using an engine or an app-method */
|
||||
CRYPTO_EX_DATA ex_data;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue