Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deedeecx330/skyhook
Send and recieve files securely through the IPFS network
https://github.com/deedeecx330/skyhook
aes-256 aes-encryption file file-sharing file-upload files filesystem ipfs ipfs-api ipfs-hash ipfs-network ipfs-node ipfs-protocol python python3 skyhook sqlite sqlite-database sqlite3 sqlite3-database
Last synced: 9 days ago
JSON representation
Send and recieve files securely through the IPFS network
- Host: GitHub
- URL: https://github.com/deedeecx330/skyhook
- Owner: deedeecx330
- License: gpl-3.0
- Created: 2020-07-26T17:01:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T13:12:30.000Z (over 3 years ago)
- Last Synced: 2024-10-29T14:19:12.369Z (17 days ago)
- Topics: aes-256, aes-encryption, file, file-sharing, file-upload, files, filesystem, ipfs, ipfs-api, ipfs-hash, ipfs-network, ipfs-node, ipfs-protocol, python, python3, skyhook, sqlite, sqlite-database, sqlite3, sqlite3-database
- Language: Python
- Homepage:
- Size: 181 KB
- Stars: 31
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Skyhook
Send and recieve files securely through the IPFS network# Overview
Skyhook is a command-line tool that allows the user to securely share files over the IPFS network.
It features:
- Seamless file encryption and decryption using AES-256
- Local history of file names, hashes, keys and dates which can be both imported and exported easily
- Ability to run off both local and remote IPFS nodes# Usage
Simply running Skyhook with no arguments gives the user a list of available commands:```
skyhook clear history - Delete everything from history
skyhook list history - List all entries in history
skyhook search [file name/hash] - Search history for entries matching [file name/hash]
skyhook delete [file name/hash] - Delete entries specified by [file name/hash] from history
skyhook save [file name/hash] - Save history entries specified by [file name/hash] to the current directory to export.pod
skyhook add [name:hash:key] - Manually add an entry to history specified by colon-separated values of [name:hash:key]
skyhook import [path] - Import history from a location specified by [path]
skyhook export history - Export entire history to the current directory to export.pod
skyhook upload [file name] - Upload a file specified by [file name] from the current directory to the IPFS network
skyhook download [hash] - Download a file specified by [hash] from the IPFS network to the current directoryIt is possible to specify multiple values in a form of a comma-separated list for search,delete,save,import,upload,download and add functions.
```# Requirements
The only requirements for running Skyhook are the ipfshttpclient and skyhookfilecrypt modules for Python 3, which can be installed by running:```
pip3 install ipfshttpclient skyhookfilecrypt
```or
```
pip3 install --user ipfshttpclient skyhookfilecrypt
```