Statement on glibc/iconv Vulnerability

rnp_op_sign_detached

(PECL rnp >= 0.1.1)

rnp_op_sign_detachedPerform signing operation, return detached signature(s)

Descrição

rnp_op_sign_detached(
    RnpFFI $ffi,
    string $data,
    array $keys_fp,
    array $options = ?
): string|false

Parâmetros

ffi

O objeto FFI retornado por rnp_ffi_create.

data

Data to be signed.

keys_fp

Array with key fingerprints. At least one key must be provided. Keys should be present in ffi.

options

An associative array with options.

Key Data type Descrição
"armor" boolean Enable ASCII-armored output. Disabled by default.
"hash" string Set hash algorithm used during signature calculation.
"creation_time" integer Set signature creation time in seconds since Jan, 1 1970 UTC. By default current time is used.
"expiration_time" integer Set signature expiration time in seconds since the creation time. 0 value is used to mark signature as non-expiring (default value).

Valor Retornado

Detached signature(s) data on success ou false em caso de falha.

add a note

User Contributed Notes

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