https://github.com/bigopenworld/secutilsfiles
simple utils to crypt / decrypt files with AES
https://github.com/bigopenworld/secutilsfiles
aes aes-256 files security typescript
Last synced: 6 months ago
JSON representation
simple utils to crypt / decrypt files with AES
- Host: GitHub
- URL: https://github.com/bigopenworld/secutilsfiles
- Owner: bigopenworld
- License: mit
- Created: 2021-08-27T12:04:57.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-31T09:34:56.000Z (almost 5 years ago)
- Last Synced: 2025-10-11T07:27:35.612Z (9 months ago)
- Topics: aes, aes-256, files, security, typescript
- Language: TypeScript
- Size: 39.1 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# secutilsfiles
simple utils to crypt / decrypt files with AES
# Usage
`await secutils.files.CryptFile("./text.text", "./text.text.enc", "one")`
`await secutils.files.DecryptFile("./text.text.enc", "./text.text.dec", "one")`
`await secutils.dir.CryptDir("./dir","./dir.enc", "one")`
`await secutils.dir.DecryptDir("./dir.enc","./dir.dec", "one")`
# Building the module :
## Requirements :
- typescript v3.X or newer