An open API service indexing awesome lists of open source software.

https://github.com/batmac/zencpipe

encpipe with zig
https://github.com/batmac/zencpipe

Last synced: 12 months ago
JSON representation

encpipe with zig

Awesome Lists containing this project

README

          

# ZencPipe

just trying to learn Zig 😊

implemented:

- [x] `-G, --passgen generate a random password`
- [x] `-e, --encrypt encryption mode`
- [x] `-d, --decrypt decryption mode`
- [x] `-p, --pass use `
- [x] `-P, --passfile read password from `
- [x] `-i, --in read input from `
- [x] `-o, --out write output to `
- [x] `-h, --help print this message`
- [ ] tests : probably more needed

original is [here](https://github.com/jedisct1/encpipe)

## How to build

```bash
# clone submodule
git submodule update --init
# get dependencies
zigmod ci
# test
zig build test
# build release
zig build -Drelease-safe # or -Drelease-fast
```

Note that building without `release-safe` or `release-fast` will give a very slow binary.