Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong function name mentioned in rnp.h #2298

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions include/rnp/rnp.h
Original file line number Diff line number Diff line change
Expand Up @@ -1553,10 +1553,10 @@ RNP_API rnp_result_t rnp_key_get_signature_at(rnp_key_handle_t key,
/**
* @brief Create new direct-key signature over the target, issued by signer. It may be
* customized via the rnp_signature_set_* calls, and finalized via the
* rnp_signature_sign() call.
* rnp_key_signature_sign() call.
*
* @param signer signing key, must be secret, and must exist in the keyring up to the
* rnp_signature_sign() call. Cannot be NULL.
* rnp_key_signature_sign() call. Cannot be NULL.
* @param target target key for which signature should be made. May be NULL, then signature
* over the signer (self-signature) will be made.
*
Expand All @@ -1572,10 +1572,10 @@ RNP_API rnp_result_t rnp_key_direct_signature_create(rnp_key_handle_t sig
* @brief Create new certification signature, issued by the signer. This could be
* self-certification (if uid belongs to the signer key) or certification of the other
* key. This signature could be customized by rnp_signature_set_* calls and finalized
* via the rnp_signature_sign() call.
* via the rnp_key_signature_sign() call.
*
* @param signer signing key, must be secret, and must exist in the keyring up to the
* rnp_signature_sign() call. Cannot be NULL.
* rnp_key_signature_sign() call. Cannot be NULL.
* @param uid user id which should be certified, i.e. bound to the key with signature.
* Cannot be NULL.
* @param type certification type. May be one of the RNP_CERTIFICATION_* values, or NULL
Expand All @@ -1596,10 +1596,10 @@ RNP_API rnp_result_t rnp_key_certification_create(rnp_key_handle_t signer
/**
* @brief Create new key or subkey revocation signature. It may be
* customized via the rnp_signature_set_* calls, and finalized via the
* rnp_signature_sign() call.
* rnp_key_signature_sign() call.
*
* @param signer revoker's key, must be secret, and must exist in the keyring up to the
* rnp_signature_sign() call. Cannot be NULL.
* rnp_key_signature_sign() call. Cannot be NULL.
* @param target target key for which signature should be made. May be NULL, then signer will
* revoke itself.
*
Expand Down
Loading