Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wstrm/omemo-utils
Utilities for OMEMO media sharing.
https://github.com/wstrm/omemo-utils
omemo
Last synced: about 2 months ago
JSON representation
Utilities for OMEMO media sharing.
- Host: GitHub
- URL: https://github.com/wstrm/omemo-utils
- Owner: wstrm
- License: mit
- Created: 2020-04-10T20:49:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-07T13:56:22.000Z (about 1 year ago)
- Last Synced: 2024-08-03T16:08:22.304Z (5 months ago)
- Topics: omemo
- Language: C
- Homepage:
- Size: 70.3 KB
- Stars: 6
- Watchers: 4
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-xmpp - omemo-utils - Utilities for OMEMO media sharing. (Tools)
README
# omemo-utils [![builds.sr.ht status](https://builds.sr.ht/~wstrm/omemo-utils.svg)](https://builds.sr.ht/~wstrm/omemo-utils?)
Utilities for OMEMO media sharing.
## Usage
```
ξ omut
Usage: ./omut [-d] [-o FILE] URL
```### Encrypt
Encrypt the file and send the output to a file using shell redirection:
```
ξ omut file:///home/me/file.txt > encrypted.aes
```Encrypt the file and write the output to a file:
```
ξ omut -o encrypted.aes file:///home/me/file.txt
```### Decrypt
Decrypt the data located at the URL and send the output to a file using shell
redirection:```
ξ omut -d aesgcm://example.org/file.aes#abc...def > decrypted.txt
```Decrypt the data located at the URL and write the output to a file:
```
ξ omut -d -o decrypted.txt aesgcm://example.org/file.aes#abc...def
```