openssl_cipher_key_length
PHP Manual
PHP Manual»Функції OpenSSL»openssl_cipher_key_length

openssl_cipher_key_length

(PHP 8 >= 8.2.0)

openssl_cipher_key_lengthGets the cipher key length

Опис

function openssl_cipher_key_length(string $cipher_algo): int|false

Gets the cipher key length.

Параметри

cipher_algo

The cipher method, see openssl_get_cipher_methods() for a list of potential values.

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

Returns the cipher length on success, або false в разі помилки.

Помилки/виключення

Emits an E_WARNING level error when the cipher algorithm is unknown.

Приклади

Приклад #1 openssl_cipher_key_length() example

<?php
$method = 'AES-128-CBC';

var_dump(openssl_cipher_key_length($method));
?>

Поданий вище приклад виведе щось схоже на:

int(16)
To Top