warning | title | excerpt | docs | extension | repo | extension_star_count | extension_star_count_pretty | extension_download_count | extension_download_count_pretty | image | layout | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DO NOT CHANGE THIS MANUALLY, THIS IS GENERATED BY https://github/duckdb/community-extensions repository, check README there |
crypto |
DuckDB Community Extensions
Cryptographic hash functions and HMAC
|
|
|
|
17 |
17 |
549 |
549 |
/images/community_extensions/social_preview/preview_community_extension_crypto.png |
community_extension_doc |
INSTALL {{ page.extension.name }} FROM community;
LOAD {{ page.extension.name }};
{% if page.docs.hello_world %}
{{ page.docs.hello_world }}```
{% endif %}
{% if page.docs.extended_description %}
### About {{ page.extension.name }}
{{ page.docs.extended_description }}
{% endif %}
### Added Functions
<div class="extension_functions_table"></div>
| function_name | function_type | description | comment | examples |
|---------------|---------------|------------------------------------------------------------------------------------------------------------------|---------|-------------------------------------------------------------------|
| crypto_hash | scalar | Apply a cryptographic hash function specified as the first argument to the data supplied as the second argument. | NULL | [SELECT crypto_hash('md5', 'test');] |
| crypto_hmac | scalar | Calculate a HMAC value | NULL | [SELECT crypto_hmac('sha2-256', 'secret key', 'secret message');] |