# provider-signature(7) - man - phpman

[PROVIDER-SIGNATURE(7SSL)](https://www.chedong.com/phpMan.php/man/PROVIDER-SIGNATURE/7SSL/markdown)                       OpenSSL                      [PROVIDER-SIGNATURE(7SSL)](https://www.chedong.com/phpMan.php/man/PROVIDER-SIGNATURE/7SSL/markdown)



## NAME
       provider-signature - The signature library <-> provider functions

## SYNOPSIS
        #include <openssl/core_dispatch.h>
        #include <openssl/core_names.h>

        /*
         * None of these are actual functions, but are displayed like this for
         * the function signatures for functions that are offered as function
         * pointers in OSSL_DISPATCH arrays.
         */

        /* Context management */
        void *OSSL_FUNC_signature_newctx(void *provctx, const char *propq);
        void OSSL_FUNC_signature_freectx(void *ctx);
        void *OSSL_FUNC_signature_dupctx(void *ctx);

        /* Signing */
        int OSSL_FUNC_signature_sign_init(void *ctx, void *provkey,
                                          const OSSL_PARAM params[]);
        int OSSL_FUNC_signature_sign(void *ctx, unsigned char *sig, size_t *siglen,
                                     size_t sigsize, const unsigned char *tbs, size_t tbslen);

        /* Verifying */
        int OSSL_FUNC_signature_verify_init(void *ctx, void *provkey,
                                            const OSSL_PARAM params[]);
        int OSSL_FUNC_signature_verify(void *ctx, const unsigned char *sig, size_t siglen,
                                       const unsigned char *tbs, size_t tbslen);

        /* Verify Recover */
        int OSSL_FUNC_signature_verify_recover_init(void *ctx, void *provkey,
                                                    const OSSL_PARAM params[]);
        int OSSL_FUNC_signature_verify_recover(void *ctx, unsigned char *rout,
                                               size_t *routlen, size_t routsize,
                                               const unsigned char *sig, size_t siglen);

        /* Digest Sign */
        int OSSL_FUNC_signature_digest_sign_init(void *ctx, const char *mdname,
                                                 const char *props, void *provkey,
                                                 const OSSL_PARAM params[]);
        int OSSL_FUNC_signature_digest_sign_update(void *ctx, const unsigned char *data,
                                            size_t datalen);
        int OSSL_FUNC_signature_digest_sign_final(void *ctx, unsigned char *sig,
                                                  size_t *siglen, size_t sigsize);
        int OSSL_FUNC_signature_digest_sign(void *ctx,
                                     unsigned char *sigret, size_t *siglen,
                                     size_t sigsize, const unsigned char *tbs,
                                     size_t tbslen);

        /* Digest Verify */
        int OSSL_FUNC_signature_digest_verify_init(void *ctx, const char *mdname,
                                                   const char *props, void *provkey,
                                                   const OSSL_PARAM params[]);
        int OSSL_FUNC_signature_digest_verify_update(void *ctx,
                                                     const unsigned char *data,
                                                     size_t datalen);
        int OSSL_FUNC_signature_digest_verify_final(void *ctx, const unsigned char *sig,
                                             size_t siglen);
        int OSSL_FUNC_signature_digest_verify(void *ctx, const unsigned char *sig,
                                       size_t siglen, const unsigned char *tbs,
                                       size_t tbslen);

        /* Signature parameters */
        int OSSL_FUNC_signature_get_ctx_params(void *ctx, OSSL_PARAM params[]);
        const OSSL_PARAM *OSSL_FUNC_signature_gettable_ctx_params(void *ctx,
                                                                  void *provctx);
        int OSSL_FUNC_signature_set_ctx_params(void *ctx, const OSSL_PARAM params[]);
        const OSSL_PARAM *OSSL_FUNC_signature_settable_ctx_params(void *ctx,
                                                                  void *provctx);
        /* MD parameters */
        int OSSL_FUNC_signature_get_ctx_md_params(void *ctx, OSSL_PARAM params[]);
        const OSSL_PARAM * OSSL_FUNC_signature_gettable_ctx_md_params(void *ctx);
        int OSSL_FUNC_signature_set_ctx_md_params(void *ctx, const OSSL_PARAM params[]);
        const OSSL_PARAM * OSSL_FUNC_signature_settable_ctx_md_params(void *ctx);

## DESCRIPTION
       This documentation is primarily aimed at provider authors. See [**provider**(7)](https://www.chedong.com/phpMan.php/man/provider/7/markdown) for further
       information.

       The signature (OSSL_OP_SIGNATURE) operation enables providers to implement signature
       algorithms and make them available to applications via the API functions **EVP**___**PKEY**___**[sign**(3)](https://www.chedong.com/phpMan.php/man/sign/3/markdown),
       **EVP**___**PKEY**___**[verify**(3)](https://www.chedong.com/phpMan.php/man/verify/3/markdown), and **EVP**___**PKEY**___**verify**___**[recover**(3)](https://www.chedong.com/phpMan.php/man/recover/3/markdown) (as well as other related functions).

       All "functions" mentioned here are passed as function pointers between _libcrypto_ and the
       provider in **OSSL**___**DISPATCH** arrays via **OSSL**___**ALGORITHM** arrays that are returned by the
       provider's **provider**___**query**___**operation()** function (see "Provider Functions" in
       [**provider-base**(7)](https://www.chedong.com/phpMan.php/man/provider-base/7/markdown)).

       All these "functions" have a corresponding function type definition named
       **OSSL**___**FUNC**___**{name}**___**fn**, and a helper function to retrieve the function pointer from an
       **OSSL**___**DISPATCH** element named **OSSL**___**FUNC**___**{name}**.  For example, the "function"
       **OSSL**___**FUNC**___**signature**___**newctx()** has these:

        typedef void *(OSSL_FUNC_signature_newctx_fn)(void *provctx, const char *propq);
        static ossl_inline OSSL_FUNC_signature_newctx_fn
            OSSL_FUNC_signature_newctx(const OSSL_DISPATCH *opf);

       **OSSL**___**DISPATCH** arrays are indexed by numbers that are provided as macros in
       **openssl-core**___**[dispatch.h**(7)](https://www.chedong.com/phpMan.php/man/dispatch.h/7/markdown), as follows:

        OSSL_FUNC_signature_newctx                 OSSL_FUNC_SIGNATURE_NEWCTX
        OSSL_FUNC_signature_freectx                OSSL_FUNC_SIGNATURE_FREECTX
        OSSL_FUNC_signature_dupctx                 OSSL_FUNC_SIGNATURE_DUPCTX

        OSSL_FUNC_signature_sign_init              OSSL_FUNC_SIGNATURE_SIGN_INIT
        OSSL_FUNC_signature_sign                   OSSL_FUNC_SIGNATURE_SIGN

        OSSL_FUNC_signature_verify_init            OSSL_FUNC_SIGNATURE_VERIFY_INIT
        OSSL_FUNC_signature_verify                 OSSL_FUNC_SIGNATURE_VERIFY

        OSSL_FUNC_signature_verify_recover_init    OSSL_FUNC_SIGNATURE_VERIFY_RECOVER_INIT
        OSSL_FUNC_signature_verify_recover         OSSL_FUNC_SIGNATURE_VERIFY_RECOVER

        OSSL_FUNC_signature_digest_sign_init       OSSL_FUNC_SIGNATURE_DIGEST_SIGN_INIT
        OSSL_FUNC_signature_digest_sign_update     OSSL_FUNC_SIGNATURE_DIGEST_SIGN_UPDATE
        OSSL_FUNC_signature_digest_sign_final      OSSL_FUNC_SIGNATURE_DIGEST_SIGN_FINAL
        OSSL_FUNC_signature_digest_sign            OSSL_FUNC_SIGNATURE_DIGEST_SIGN

        OSSL_FUNC_signature_digest_verify_init     OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_INIT
        OSSL_FUNC_signature_digest_verify_update   OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_UPDATE
        OSSL_FUNC_signature_digest_verify_final    OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_FINAL
        OSSL_FUNC_signature_digest_verify          OSSL_FUNC_SIGNATURE_DIGEST_VERIFY

        OSSL_FUNC_signature_get_ctx_params         OSSL_FUNC_SIGNATURE_GET_CTX_PARAMS
        OSSL_FUNC_signature_gettable_ctx_params    OSSL_FUNC_SIGNATURE_GETTABLE_CTX_PARAMS
        OSSL_FUNC_signature_set_ctx_params         OSSL_FUNC_SIGNATURE_SET_CTX_PARAMS
        OSSL_FUNC_signature_settable_ctx_params    OSSL_FUNC_SIGNATURE_SETTABLE_CTX_PARAMS

        OSSL_FUNC_signature_get_ctx_md_params      OSSL_FUNC_SIGNATURE_GET_CTX_MD_PARAMS
        OSSL_FUNC_signature_gettable_ctx_md_params OSSL_FUNC_SIGNATURE_GETTABLE_CTX_MD_PARAMS
        OSSL_FUNC_signature_set_ctx_md_params      OSSL_FUNC_SIGNATURE_SET_CTX_MD_PARAMS
        OSSL_FUNC_signature_settable_ctx_md_params OSSL_FUNC_SIGNATURE_SETTABLE_CTX_MD_PARAMS

       A signature algorithm implementation may not implement all of these functions.  In order to
       be a consistent set of functions we must have at least a set of context functions
       (OSSL_FUNC_signature_newctx and OSSL_FUNC_signature_freectx) as well as a set of "signature"
       functions, i.e. at least one of:

       OSSL_FUNC_signature_sign_init and OSSL_FUNC_signature_sign
       OSSL_FUNC_signature_verify_init and OSSL_FUNC_signature_verify
       OSSL_FUNC_signature_verify_recover_init and OSSL_FUNC_signature_verify_init
       OSSL_FUNC_signature_digest_sign_init, OSSL_FUNC_signature_digest_sign_update and
       OSSL_FUNC_signature_digest_sign_final
       OSSL_FUNC_signature_digest_verify_init, OSSL_FUNC_signature_digest_verify_update and
       OSSL_FUNC_signature_digest_verify_final
       OSSL_FUNC_signature_digest_sign_init and OSSL_FUNC_signature_digest_sign
       OSSL_FUNC_signature_digest_verify_init and OSSL_FUNC_signature_digest_verify

       OSSL_FUNC_signature_set_ctx_params and OSSL_FUNC_signature_settable_ctx_params are optional,
       but if one of them is present then the other one must also be present. The same applies to
       OSSL_FUNC_signature_get_ctx_params and OSSL_FUNC_signature_gettable_ctx_params, as well as
       the "md_params" functions. The OSSL_FUNC_signature_dupctx function is optional.

       A signature algorithm must also implement some mechanism for generating, loading or importing
       keys via the key management (OSSL_OP_KEYMGMT) operation.  See [**provider-keymgmt**(7)](https://www.chedong.com/phpMan.php/man/provider-keymgmt/7/markdown) for further
       details.

### Context Management Functions
       **OSSL**___**FUNC**___**signature**___**newctx()** should create and return a pointer to a provider side structure
       for holding context information during a signature operation.  A pointer to this context will
       be passed back in a number of the other signature operation function calls.  The parameter
       _provctx_ is the provider context generated during provider initialisation (see [**provider**(7)](https://www.chedong.com/phpMan.php/man/provider/7/markdown)).
       The _propq_ parameter is a property query string that may be (optionally) used by the provider
       during any "fetches" that it may perform (if it performs any).

       **OSSL**___**FUNC**___**signature**___**freectx()** is passed a pointer to the provider side signature context in
       the _ctx_ parameter.  This function should free any resources associated with that context.

       **OSSL**___**FUNC**___**signature**___**dupctx()** should duplicate the provider side signature context in the _ctx_
       parameter and return the duplicate copy.

### Signing Functions
       **OSSL**___**FUNC**___**signature**___**sign**___**init()** initialises a context for signing given a provider side
       signature context in the _ctx_ parameter, and a pointer to a provider key object in the _provkey_
       parameter.  The _params_, if not NULL, should be set on the context in a manner similar to
       using **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()**.  The key object should have been previously
       generated, loaded or imported into the provider using the key management (OSSL_OP_KEYMGMT)
       operation (see [**provider-keymgmt**(7)](https://www.chedong.com/phpMan.php/man/provider-keymgmt/7/markdown)>.

       **OSSL**___**FUNC**___**signature**___**sign()** performs the actual signing itself.  A previously initialised
       signature context is passed in the _ctx_ parameter.  The data to be signed is pointed to be the
       _tbs_ parameter which is _tbslen_ bytes long.  Unless _sig_ is NULL, the signature should be
       written to the location pointed to by the _sig_ parameter and it should not exceed _sigsize_
       bytes in length.  The length of the signature should be written to _*siglen_.  If _sig_ is NULL
       then the maximum length of the signature should be written to _*siglen_.

### Verify Functions
       **OSSL**___**FUNC**___**signature**___**verify**___**init()** initialises a context for verifying a signature given a
       provider side signature context in the _ctx_ parameter, and a pointer to a provider key object
       in the _provkey_ parameter.  The _params_, if not NULL, should be set on the context in a manner
       similar to using **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()**.  The key object should have been
       previously generated, loaded or imported into the provider using the key management
       (OSSL_OP_KEYMGMT) operation (see [**provider-keymgmt**(7)](https://www.chedong.com/phpMan.php/man/provider-keymgmt/7/markdown)>.

       **OSSL**___**FUNC**___**signature**___**verify()** performs the actual verification itself.  A previously
       initialised signature context is passed in the _ctx_ parameter.  The data that the signature
       covers is pointed to be the _tbs_ parameter which is _tbslen_ bytes long.  The signature is
       pointed to by the _sig_ parameter which is _siglen_ bytes long.

### Verify Recover Functions
       **OSSL**___**FUNC**___**signature**___**verify**___**recover**___**init()** initialises a context for recovering the signed
       data given a provider side signature context in the _ctx_ parameter, and a pointer to a
       provider key object in the _provkey_ parameter.  The _params_, if not NULL, should be set on the
       context in a manner similar to using **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()**.  The key object
       should have been previously generated, loaded or imported into the provider using the key
       management (OSSL_OP_KEYMGMT) operation (see [**provider-keymgmt**(7)](https://www.chedong.com/phpMan.php/man/provider-keymgmt/7/markdown)>.

       **OSSL**___**FUNC**___**signature**___**verify**___**recover()** performs the actual verify recover itself.  A previously
       initialised signature context is passed in the _ctx_ parameter.  The signature is pointed to by
       the _sig_ parameter which is _siglen_ bytes long.  Unless _rout_ is NULL, the recovered data should
       be written to the location pointed to by _rout_ which should not exceed _routsize_ bytes in
       length.  The length of the recovered data should be written to _*routlen_.  If _rout_ is NULL
       then the maximum size of the output buffer is written to the _routlen_ parameter.

### Digest Sign Functions
       **OSSL**___**FUNC**___**signature**___**digeset**___**sign**___**init()** initialises a context for signing given a provider
       side signature context in the _ctx_ parameter, and a pointer to a provider key object in the
       _provkey_ parameter.  The _params_, if not NULL, should be set on the context in a manner similar
       to using **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()** and **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**md**___**params()**.
       The key object should have been previously generated, loaded or imported into the provider
       using the key management (OSSL_OP_KEYMGMT) operation (see [**provider-keymgmt**(7)](https://www.chedong.com/phpMan.php/man/provider-keymgmt/7/markdown)>.  The name of
       the digest to be used will be in the _mdname_ parameter. There may also be properties to be
       used in fetching the digest in the _props_ parameter, although this may be ignored by
       providers.

       **OSSL**___**FUNC**___**signature**___**digest**___**sign**___**update()** provides data to be signed in the _data_ parameter
       which should be of length _datalen_. A previously initialised signature context is passed in
       the _ctx_ parameter. This function may be called multiple times to cumulatively add data to be
       signed.

       **OSSL**___**FUNC**___**signature**___**digest**___**sign**___**final()** finalises a signature operation previously started
       through **OSSL**___**FUNC**___**signature**___**digest**___**sign**___**init()** and **OSSL**___**FUNC**___**signature**___**digest**___**sign**___**update()**
       calls. Once finalised no more data will be added through
       **OSSL**___**FUNC**___**signature**___**digest**___**sign**___**update()**. A previously initialised signature context is
       passed in the _ctx_ parameter. Unless _sig_ is NULL, the signature should be written to the
       location pointed to by the _sig_ parameter and it should not exceed _sigsize_ bytes in length.
       The length of the signature should be written to _*siglen_. If _sig_ is NULL then the maximum
       length of the signature should be written to _*siglen_.

       **OSSL**___**FUNC**___**signature**___**digest**___**sign()** implements a "one shot" digest sign operation previously
       started through **OSSL**___**FUNC**___**signature**___**digeset**___**sign**___**init()**. A previously initialised signature
       context is passed in the _ctx_ parameter. The data to be signed is in _tbs_ which should be
       _tbslen_ bytes long. Unless _sig_ is NULL, the signature should be written to the location
       pointed to by the _sig_ parameter and it should not exceed _sigsize_ bytes in length. The length
       of the signature should be written to _*siglen_. If _sig_ is NULL then the maximum length of the
       signature should be written to _*siglen_.

### Digest Verify Functions
       **OSSL**___**FUNC**___**signature**___**digeset**___**verify**___**init()** initialises a context for verifying given a
       provider side verification context in the _ctx_ parameter, and a pointer to a provider key
       object in the _provkey_ parameter.  The _params_, if not NULL, should be set on the context in a
       manner similar to **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()** and
       **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**md**___**params()**.  The key object should have been previously
       generated, loaded or imported into the provider using the key management (OSSL_OP_KEYMGMT)
       operation (see [**provider-keymgmt**(7)](https://www.chedong.com/phpMan.php/man/provider-keymgmt/7/markdown)>.  The name of the digest to be used will be in the _mdname_
       parameter. There may also be properties to be used in fetching the digest in the _props_
       parameter, although this may be ignored by providers.

       **OSSL**___**FUNC**___**signature**___**digest**___**verify**___**update()** provides data to be verified in the _data_ parameter
       which should be of length _datalen_. A previously initialised verification context is passed in
       the _ctx_ parameter. This function may be called multiple times to cumulatively add data to be
       verified.

       **OSSL**___**FUNC**___**signature**___**digest**___**verify**___**final()** finalises a verification operation previously
       started through **OSSL**___**FUNC**___**signature**___**digest**___**verify**___**init()** and
       **OSSL**___**FUNC**___**signature**___**digest**___**verify**___**update()** calls. Once finalised no more data will be added
       through **OSSL**___**FUNC**___**signature**___**digest**___**verify**___**update()**. A previously initialised verification
       context is passed in the _ctx_ parameter. The signature to be verified is in _sig_ which is
       _siglen_ bytes long.

       **OSSL**___**FUNC**___**signature**___**digest**___**verify()** implements a "one shot" digest verify operation
       previously started through **OSSL**___**FUNC**___**signature**___**digeset**___**verify**___**init()**. A previously
       initialised verification context is passed in the _ctx_ parameter. The data to be verified is
       in _tbs_ which should be _tbslen_ bytes long. The signature to be verified is in _sig_ which is
       _siglen_ bytes long.

### Signature parameters
       See **OSSL**___**[PARAM**(3)](https://www.chedong.com/phpMan.php/man/PARAM/3/markdown) for further details on the parameters structure used by the
       **OSSL**___**FUNC**___**signature**___**get**___**ctx**___**params()** and **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()** functions.

       **OSSL**___**FUNC**___**signature**___**get**___**ctx**___**params()** gets signature parameters associated with the given
       provider side signature context _ctx_ and stored them in _params_.  Passing NULL for _params_
       should return true.

       **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()** sets the signature parameters associated with the given
       provider side signature context _ctx_ to _params_.  Any parameter settings are additional to any
       that were previously set.  Passing NULL for _params_ should return true.

       Common parameters currently recognised by built-in signature algorithms are as follows.

       "digest" (**OSSL**___**SIGNATURE**___**PARAM**___**DIGEST**) <UTF8 string>
           Get or sets the name of the digest algorithm used for the input to the signature
           functions. It is required in order to calculate the "algorithm-id".

       "properties" (**OSSL**___**SIGNATURE**___**PARAM**___**PROPERTIES**) <UTF8 string>
           Sets the name of the property query associated with the "digest" algorithm.  NULL is used
           if this optional value is not set.

       "digest-size" (**OSSL**___**SIGNATURE**___**PARAM**___**DIGEST**___**SIZE**) <unsigned integer>
           Gets or sets the output size of the digest algorithm used for the input to the signature
           functions.  The length of the "digest-size" parameter should not exceed that of a **size**___**t**.

       "algorithm-id" (**OSSL**___**SIGNATURE**___**PARAM**___**ALGORITHM**___**ID**) <octet string>
           Gets the DER encoded AlgorithmIdentifier that corresponds to the combination of signature
           algorithm and digest algorithm for the signature operation.

       "kat" (**OSSL**___**SIGNATURE**___**PARAM**___**KAT**) <unsigned integer>
           Sets a flag to modify the sign operation to return an error if the initial calculated
           signature is invalid.  In the normal mode of operation - new random values are chosen
           until the signature operation succeeds.  By default it retries until a signature is
           calculated.  Setting the value to 0 causes the sign operation to retry, otherwise the
           sign operation is only tried once and returns whether or not it was successful.  Known
           answer tests can be performed if the random generator is overridden to supply known
           values that either pass or fail.

       **OSSL**___**FUNC**___**signature**___**gettable**___**ctx**___**params()** and **OSSL**___**FUNC**___**signature**___**settable**___**ctx**___**params()** get a
       constant **OSSL**___**PARAM** array that describes the gettable and settable parameters, i.e.
       parameters that can be used with **OSSL**___**FUNC**___**signature**___**get**___**ctx**___**params()** and
       **OSSL**___**FUNC**___**signature**___**set**___**ctx**___**params()** respectively.  See **OSSL**___**[PARAM**(3)](https://www.chedong.com/phpMan.php/man/PARAM/3/markdown) for the use of
       **OSSL**___**PARAM** as parameter descriptor.

### MD parameters
       See **OSSL**___**[PARAM**(3)](https://www.chedong.com/phpMan.php/man/PARAM/3/markdown) for further details on the parameters structure used by the
       **OSSL**___**FUNC**___**signature**___**get**___**md**___**ctx**___**params()** and **OSSL**___**FUNC**___**signature**___**set**___**md**___**ctx**___**params()**
       functions.

       **OSSL**___**FUNC**___**signature**___**get**___**md**___**ctx**___**params()** gets digest parameters associated with the given
       provider side digest signature context _ctx_ and stores them in _params_.  Passing NULL for
       _params_ should return true.

       **OSSL**___**FUNC**___**signature**___**set**___**ms**___**ctx**___**params()** sets the digest parameters associated with the given
       provider side digest signature context _ctx_ to _params_.  Any parameter settings are additional
       to any that were previously set.  Passing NULL for _params_ should return true.

       Parameters currently recognised by built-in signature algorithms are the same as those for
       built-in digest algorithms. See "Digest Parameters" in [**provider-digest**(7)](https://www.chedong.com/phpMan.php/man/provider-digest/7/markdown) for further
       information.

       **OSSL**___**FUNC**___**signature**___**gettable**___**md**___**ctx**___**params()** and **OSSL**___**FUNC**___**signature**___**settable**___**md**___**ctx**___**params()**
       get a constant **OSSL**___**PARAM** array that describes the gettable and settable digest parameters,
       i.e. parameters that can be used with **OSSL**___**FUNC**___**signature**___**get**___**md**___**ctx**___**params()** and
       **OSSL**___**FUNC**___**signature**___**set**___**md**___**ctx**___**params()** respectively. See **OSSL**___**[PARAM**(3)](https://www.chedong.com/phpMan.php/man/PARAM/3/markdown) for the use of
       **OSSL**___**PARAM** as parameter descriptor.

## RETURN VALUES
       **OSSL**___**FUNC**___**signature**___**newctx()** and **OSSL**___**FUNC**___**signature**___**dupctx()** should return the newly created
       provider side signature, or NULL on failure.

       **OSSL**___**FUNC**___**signature**___**gettable**___**ctx**___**params()**, **OSSL**___**FUNC**___**signature**___**settable**___**ctx**___**params()**,
       **OSSL**___**FUNC**___**signature**___**gettable**___**md**___**ctx**___**params()** and
       **OSSL**___**FUNC**___**signature**___**settable**___**md**___**ctx**___**params()**, return the gettable or settable parameters in a
       constant **OSSL**___**PARAM** array.

       All other functions should return 1 for success or 0 on error.

## SEE ALSO
       [**provider**(7)](https://www.chedong.com/phpMan.php/man/provider/7/markdown)

## HISTORY
       The provider SIGNATURE interface was introduced in OpenSSL 3.0.

## COPYRIGHT
       Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.

       Licensed under the Apache License 2.0 (the "License").  You may not use this file except in
       compliance with the License.  You can obtain a copy in the file LICENSE in the source
       distribution or at <<https://www.openssl.org/source/license.html>>.



3.0.2                                        2026-04-07                     [PROVIDER-SIGNATURE(7SSL)](https://www.chedong.com/phpMan.php/man/PROVIDER-SIGNATURE/7SSL/markdown)
