Dutch PHP Conference 2025 - Call For Papers

rnp_key_revoke

(PECL rnp >= 0.1.1)

rnp_key_revokeRevoke a key or subkey by generating and adding revocation signature

Опис

rnp_key_revoke(
    RnpFFI $ffi,
    string $key_fp,
    int $flags,
    array $options = ?
): bool

Note: you need to call rnp_save_keys() to write updated keyring(s) out.

Параметри

ffi

Об'єкт FFI, якого повертає rnp_ffi_create.

key_fp

Key fingerprint.

flags

Currently must be 0.

options

An associative array with options.

Key Data type Опис
"hash" string Set hash algorithm used during signature calculation.
"code" string Code reason for revocation code. Possible values: 'no', 'superseded', 'compromised', 'retired'. If not defined, then value 'no' will be used by default.
"reason" string Textual representation of the reason for revocation.

Значення, що повертаються

Returns true on success або false в разі помилки.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top