Legacy CONF method vtable (deprecated; contents will become opaque).
Declared in <openssl/conftypes.h>
struct conf_method_st;
| Name | Description |
|---|---|
create | Allocate a new CONF object for this method (may be NULL). |
destroy | Tear down a CONF object created by create (method-specific cleanup). |
destroy_data | Release configuration data held by conf without destroying the object. |
dump | Dump the configuration contents of conf to bp. |
init | Initialize a CONF object after allocation (may be NULL). |
is_number | Return non-zero if c is a digit in this CONF method's number syntax. |
load | Load configuration from a named file into conf; eline receives error line. |
load_bio | Load configuration syntax from a BIO into conf; eline receives error line. |
name | Short name identifying this CONF_METHOD implementation. |
to_int | Convert digit character c to its integer value for this CONF method. |