2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: hash sha256
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
hash a value using the sha256 hash algorithm
|
|
|
|
|
|
|
|
## Signature
|
|
|
|
|
|
|
|
```> hash sha256 ...rest```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
- `...rest`: optionally sha256 hash data by cell path
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
sha256 encode a string
|
|
|
|
```shell
|
|
|
|
> echo 'abcdefghijklmnopqrstuvwxyz' | hash sha256
|
|
|
|
```
|
|
|
|
|
|
|
|
sha256 encode a file
|
|
|
|
```shell
|
|
|
|
> open ./nu_0_24_1_windows.zip | hash sha256
|
|
|
|
```
|