|
openssl_sign(PHP 4 >= 4.0.4, PHP 5) openssl_sign — Generate signature Описание
bool openssl_sign
( string $data
, string &$signature
, mixed $priv_key_id
[, int $signature_alg = OPENSSL_ALGO_SHA1
] )
openssl_sign() computes a signature for the specified data by using SHA1 for hashing followed by encryption using the private key associated with priv_key_id. Note that the data itself is not encrypted. Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Список изменений
Примеры
Пример #1 openssl_sign() example
<?php |
|||||