openssl_get_md_methods
(PHP 5 >= 5.3.0)
openssl_get_md_methods — Gets available digest methods
Описание
array openssl_get_md_methods
([ bool
$aliases
= false
] )Gets a list of available digest methods.
Список параметров
-
aliases
-
Set to
TRUE
if digest aliases should be included within the returned array.
Возвращаемые значения
An array of available digest methods.
Примеры
Пример #1 openssl_get_md_methods() example
Shows how the available digests might look, and also which aliases might be available.
<?php
$digests = openssl_get_md_methods();
$digests_and_aliases = openssl_get_md_methods(true);
$digest_aliases = array_diff($digests_and_aliases, $digests);
print_r($digests);
print_r($digest_aliases);
?>
Результатом выполнения данного примера будет что-то подобное:
Array ( [0] => DSA [1] => DSA-SHA [2] => MD2 [3] => MD4 [4] => MD5 [5] => RIPEMD160 [6] => SHA [7] => SHA1 [8] => SHA224 [9] => SHA256 [10] => SHA384 [11] => SHA512 [12] => dsaEncryption [13] => dsaWithSHA [14] => ecdsa-with-SHA1 [15] => md2 [16] => md4 [17] => md5 [18] => ripemd160 [19] => sha [20] => sha1 [21] => sha224 [22] => sha256 [23] => sha384 [24] => sha512 ) Array ( [2] => DSA-SHA1 [3] => DSA-SHA1-old [4] => DSS1 [9] => RSA-MD2 [10] => RSA-MD4 [11] => RSA-MD5 [12] => RSA-RIPEMD160 [13] => RSA-SHA [14] => RSA-SHA1 [15] => RSA-SHA1-2 [16] => RSA-SHA224 [17] => RSA-SHA256 [18] => RSA-SHA384 [19] => RSA-SHA512 [28] => dsaWithSHA1 [29] => dss1 [32] => md2WithRSAEncryption [34] => md4WithRSAEncryption [36] => md5WithRSAEncryption [37] => ripemd [39] => ripemd160WithRSA [40] => rmd160 [43] => sha1WithRSAEncryption [45] => sha224WithRSAEncryption [47] => sha256WithRSAEncryption [49] => sha384WithRSAEncryption [51] => sha512WithRSAEncryption [52] => shaWithRSAEncryption [53] => ssl2-md5 [54] => ssl3-md5 [55] => ssl3-sha1 )
Смотрите также
- openssl_digest() - Computes a digest
- openssl_get_cipher_methods() - Gets available cipher methods
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Криптографические расширения
- OpenSSL
- openssl_cipher_iv_length
- openssl_csr_export_to_file
- openssl_csr_export
- openssl_csr_get_public_key
- openssl_csr_get_subject
- openssl_csr_new
- openssl_csr_sign
- openssl_decrypt
- openssl_dh_compute_key
- openssl_digest
- openssl_encrypt
- openssl_error_string
- openssl_free_key
- openssl_get_cert_locations
- openssl_get_cipher_methods
- openssl_get_md_methods
- openssl_get_privatekey
- openssl_get_publickey
- openssl_open
- openssl_pbkdf2
- openssl_pkcs12_export_to_file
- openssl_pkcs12_export
- openssl_pkcs12_read
- openssl_pkcs7_decrypt
- openssl_pkcs7_encrypt
- openssl_pkcs7_sign
- openssl_pkcs7_verify
- openssl_pkey_export_to_file
- openssl_pkey_export
- openssl_pkey_free
- openssl_pkey_get_details
- openssl_pkey_get_private
- openssl_pkey_get_public
- openssl_pkey_new
- openssl_private_decrypt
- openssl_private_encrypt
- openssl_public_decrypt
- openssl_public_encrypt
- openssl_random_pseudo_bytes
- openssl_seal
- openssl_sign
- openssl_spki_export_challenge
- openssl_spki_export
- openssl_spki_new
- openssl_spki_verify
- openssl_verify
- openssl_x509_check_private_key
- openssl_x509_checkpurpose
- openssl_x509_export_to_file
- openssl_x509_export
- openssl_x509_fingerprint
- openssl_x509_free
- openssl_x509_parse
- openssl_x509_read
Коментарии
404 Not Found