## Syntax
```mermaid
%%{init: {
'theme': 'base',
'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' },
'themeVariables': {
'fontSize': '11px',
'fontFamily': 'Arial'
}
}}%%
flowchart LR
Start((START)) --> | | SHA384[SHA384]:::quoted
SHA384 --> End((END))
```
## Purpose
The `SHA384` SQL function calculates hash value for parameter according to SHA384 algorithm.
Parameters:
- Value: text or BLOB to calculate SHA384 hash value for.
Returns: Hash value.