Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deedeecx330/skyhook-windows
Send and recieve files securely through the IPFS network
https://github.com/deedeecx330/skyhook-windows
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: 11 days ago
JSON representation
Send and recieve files securely through the IPFS network
- Host: GitHub
- URL: https://github.com/deedeecx330/skyhook-windows
- Owner: deedeecx330
- License: gpl-3.0
- Created: 2021-06-06T13:01:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-06T13:14:34.000Z (over 3 years ago)
- Last Synced: 2024-11-02T19:03:12.562Z (15 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: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- 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.exe install ipfshttpclient skyhookfilecrypt
```or
```
pip3.exe install --user ipfshttpclient skyhookfilecrypt
```