Hash
SHA-256 and SHA-512 cryptographic hashing.
2 modules
| Module | Description |
|---|---|
| SHA-256 Hash | Calculate SHA-256 cryptographic hash of text |
| SHA-512 Hash | Calculate SHA-512 cryptographic hash of text |
Modules
SHA-256 Hash
hash.sha256
Calculate SHA-256 cryptographic hash of text
Parameters:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | Yes | - | Text to hash |
encoding | string | No | utf-8 | Text to hash |
Output:
| Field | Type | Description |
|---|---|---|
hash | string | Text encoding |
algorithm | string | SHA-256 hash (64 hex characters) |
SHA-512 Hash
hash.sha512
Calculate SHA-512 cryptographic hash of text
Parameters:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | Yes | - | Text to hash |
encoding | string | No | utf-8 | Text to hash |
Output:
| Field | Type | Description |
|---|---|---|
hash | string | Text encoding |
algorithm | string | SHA-512 hash (128 hex characters) |
