diff options
Diffstat (limited to 'drivers/builtin_openssl2/crypto/ecdsa/ecs_locl.h')
-rw-r--r-- | drivers/builtin_openssl2/crypto/ecdsa/ecs_locl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/builtin_openssl2/crypto/ecdsa/ecs_locl.h b/drivers/builtin_openssl2/crypto/ecdsa/ecs_locl.h index 76b2caf1f4..d3a5efc547 100644 --- a/drivers/builtin_openssl2/crypto/ecdsa/ecs_locl.h +++ b/drivers/builtin_openssl2/crypto/ecdsa/ecs_locl.h @@ -79,9 +79,13 @@ struct ecdsa_method { int (*finish) (EC_KEY *eckey); # endif int flags; - char *app_data; + void *app_data; }; +/* The ECDSA_METHOD was allocated and can be freed */ + +# define ECDSA_METHOD_FLAG_ALLOCATED 0x2 + /* * If this flag is set the ECDSA method is FIPS compliant and can be used in * FIPS mode. This is set in the validated module method. If an application |