Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/damartripamungkas/safe-my-text

๐Ÿ” Encrypt your text before storing it
https://github.com/damartripamungkas/safe-my-text

aes-256 bunjs crypto-wallet-security denojs encryption-decryption nodejs private-key

Last synced: 2 months ago
JSON representation

๐Ÿ” Encrypt your text before storing it

Awesome Lists containing this project

README

        


SAFE-MY-TEXT


GitHub top language


Made by


Repository size


GitHub last commit

### ๐Ÿ“– Description :

This package is made for those who want to encrypt and decrypt using AES-256. The difference between this package and the default crypto-js package is that it provides specialized handling for encryption and decryption. This package can also be used for encryption of private data such as pharse crypto, privatekey crypto and others.

###

### ๐Ÿ’ป Step to install :

```
npm install safe-my-text
```

### โœ๏ธ Example :

see full [here](./test)

```typescript
import { encryptText, decryptText } from "safe-my-text"

const password = `president123`
const encrypt = encryptText(`mypharse wallet crypto`, password)
const decrypt = decryptText(encrypt, password)

console.log({ encrypt, decrypt })
```

### ๐Ÿงพ Pre-Requisistes :

```
- node.js / bun.js / deno.js
- (optional) typescript
- (optional) commonJS
- (optional) ESM
```

### ๐Ÿ“ License :

Licensed under the [MIT License](./LICENSE).