Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rusq/encio
I/O encryption using the unique Machine ID
https://github.com/rusq/encio
aes-256 encryption-decryption file-operations golang-library machine-id machine-identity
Last synced: 27 days ago
JSON representation
I/O encryption using the unique Machine ID
- Host: GitHub
- URL: https://github.com/rusq/encio
- Owner: rusq
- License: mit
- Created: 2022-12-07T06:08:50.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T06:33:28.000Z (about 2 years ago)
- Last Synced: 2024-12-06T08:32:40.230Z (about 1 month ago)
- Topics: aes-256, encryption-decryption, file-operations, golang-library, machine-id, machine-identity
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# encio - machine dependent encryption
Package encio provides input/output functions that write encrypted using
AES-256-CFB data.The encryption key is the machine identifier, unique to the operating
system.This makes file non-transferrable between devices.
Encrypted container structure is the following:
```
|__...__|____________...
0 ^ 16 ^
| +-- encrypted data
+----------- 16 bytes IV
```