Skip to content

Commit aba940b

Browse files
committed
chore: rebrand to @azemzemi/cryptobox
1 parent f9b3c77 commit aba940b

9 files changed

Lines changed: 28 additions & 28 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ What actually happened.
3232

3333
## Environment
3434

35-
- **CryptoVault Version**: (e.g., 1.0.0)
35+
- **CryptoBox Version**: (e.g., 1.0.0)
3636
- **Platform**: (Browser / Node.js / Deno / Bun)
3737
- **Node Version**: (if applicable, e.g., 18.0.0)
3838
- **Browser**: (if applicable, e.g., Chrome 120)

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ All notable changes to this project will be documented in this file.
1414
- Cross-platform (Browser, Node.js 18+, Deno, Bun)
1515
- 93% test coverage
1616

17-
[1.0.0]: https://github.com/zemzemi/cryptovault/releases/tag/v1.0.0
17+
[1.0.0]: https://github.com/zemzemi/cryptobox/releases/tag/v1.0.0

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to CryptoVault
1+
# Contributing to CryptoBox
22

3-
Thank you for considering contributing to CryptoVault! 🎉
3+
Thank you for considering contributing to CryptoBox! 🎉
44

55
## Code of Conduct
66

@@ -24,16 +24,16 @@ Use the [Feature Request template](.github/ISSUE_TEMPLATE/feature_request.md) an
2424
### Security Issues
2525

2626
**DO NOT** open public issues. Report privately:
27-
- GitHub Security Advisory: https://github.com/zemzemi/cryptovault/security/advisories/new
27+
- GitHub Security Advisory: https://github.com/zemzemi/cryptobox/security/advisories/new
2828
- Email: adelzemzemi@hotmail.com
2929

3030
See [SECURITY.md](SECURITY.md) for details.
3131

3232
## Development
3333

3434
```bash
35-
git clone https://github.com/zemzemi/cryptovault.git
36-
cd cryptovault
35+
git clone https://github.com/zemzemi/cryptobox.git
36+
cd cryptobox
3737
npm install
3838
npm run build
3939
npm test
@@ -88,8 +88,8 @@ security(crypto): increase PBKDF2 iterations
8888

8989
## Questions?
9090

91-
- [GitHub Discussions](https://github.com/zemzemi/cryptovault/discussions)
92-
- [GitHub Issues](https://github.com/zemzemi/cryptovault/issues)
91+
- [GitHub Discussions](https://github.com/zemzemi/cryptobox/discussions)
92+
- [GitHub Issues](https://github.com/zemzemi/cryptobox/issues)
9393
- Email: adelzemzemi@hotmail.com
9494

9595
Thank you for contributing! 🚀

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# CryptoVault
1+
# CryptoBox
22

33
Secure encryption and storage for JavaScript & TypeScript.
44

5-
[![npm version](https://img.shields.io/npm/v/cryptovault.svg)](https://www.npmjs.com/package/cryptovault)
5+
[![npm version](https://img.shields.io/npm/v/@azemzemi/cryptobox.svg)](https://www.npmjs.com/package/@azemzemi/cryptobox)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
77
[![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue.svg)](https://www.typescriptlang.org/)
8-
[![GitHub](https://img.shields.io/badge/GitHub-zemzemi%2Fcryptovault-blue.svg)](https://github.com/zemzemi/cryptovault)
8+
[![GitHub](https://img.shields.io/badge/GitHub-zemzemi%2Fcryptobox-blue.svg)](https://github.com/zemzemi/cryptobox)
99

1010
Zero dependencies • AES-256-GCM • Type-safe • Cross-platform
1111

12-
## Why CryptoVault?
12+
## Why CryptoBox?
1313

1414
- **🔒 Secure by Default** - Military-grade AES-256-GCM encryption
1515
- **📦 Zero Dependencies** - No supply chain vulnerabilities
@@ -21,13 +21,13 @@ Zero dependencies • AES-256-GCM • Type-safe • Cross-platform
2121
## Install
2222

2323
```bash
24-
npm install cryptovault
24+
npm install @azemzemi/cryptobox
2525
```
2626

2727
## Usage
2828

2929
```typescript
30-
import { createSecureLocalStorage } from 'cryptovault';
30+
import { createSecureLocalStorage } from '@azemzemi/cryptobox';
3131

3232
const storage = createSecureLocalStorage();
3333

@@ -69,7 +69,7 @@ createSecureMemoryStorage() // Universal: in-memory
6969
### Encryption
7070

7171
```typescript
72-
import { AesGcmEncryptor } from 'cryptovault';
72+
import { AesGcmEncryptor } from '@azemzemi/cryptobox';
7373

7474
const encryptor = new AesGcmEncryptor();
7575
const encrypted = await encryptor.encrypt(data, 'password');
@@ -79,7 +79,7 @@ const decrypted = await encryptor.decrypt(encrypted, 'password');
7979
### Custom Storage
8080

8181
```typescript
82-
import { SecureStorage, AesGcmEncryptor, IStorage } from 'cryptovault';
82+
import { SecureStorage, AesGcmEncryptor, IStorage } from '@azemzemi/cryptobox';
8383

8484
class MyStorage implements IStorage {
8585
setItem(key: string, value: string): void { }

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
If you discover a security vulnerability, please report it privately:
66

7-
1. **GitHub Security Advisory** (Preferred): https://github.com/zemzemi/cryptovault/security/advisories/new
7+
1. **GitHub Security Advisory** (Preferred): https://github.com/zemzemi/cryptobox/security/advisories/new
88
2. **Email**: adelzemzemi@hotmail.com
99

1010
**Do not create public issues for security vulnerabilities.**
@@ -66,7 +66,7 @@ If you discover a security vulnerability, please report it privately:
6666
This library is regularly updated to address security concerns. Keep your dependencies up to date:
6767

6868
```bash
69-
npm update cryptovault
69+
npm update @azemzemi/cryptobox
7070
```
7171

7272
## Audit History

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CryptoVault Examples
1+
# CryptoBox Examples
22

33
## Files
44

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "cryptovault",
2+
"name": "@azemzemi/cryptobox",
33
"version": "1.0.0",
44
"type": "module",
55
"description": "Zero-dependency encryption library for JavaScript & TypeScript. Secure localStorage, sessionStorage, or any data with AES-256-GCM encryption. Production-ready with 93% test coverage.",
@@ -61,12 +61,12 @@
6161
"license": "MIT",
6262
"repository": {
6363
"type": "git",
64-
"url": "https://github.com/zemzemi/cryptovault.git"
64+
"url": "https://github.com/zemzemi/cryptobox.git"
6565
},
6666
"bugs": {
67-
"url": "https://github.com/zemzemi/cryptovault/issues"
67+
"url": "https://github.com/zemzemi/cryptobox/issues"
6868
},
69-
"homepage": "https://github.com/zemzemi/cryptovault#readme",
69+
"homepage": "https://github.com/zemzemi/cryptobox#readme",
7070
"engines": {
7171
"node": ">=18.0.0"
7272
},

src/fingerprint/device-fingerprint.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ async function getCanvasFingerprint(): Promise<string> {
1717
ctx.fillStyle = '#f60';
1818
ctx.fillRect(125, 1, 62, 20);
1919
ctx.fillStyle = '#069';
20-
ctx.fillText('CryptoVault 🔒', 2, 15);
20+
ctx.fillText('CryptoBox 🔒', 2, 15);
2121
ctx.fillStyle = 'rgba(102, 204, 0, 0.7)';
22-
ctx.fillText('CryptoVault 🔒', 4, 17);
22+
ctx.fillText('CryptoBox 🔒', 4, 17);
2323

2424
// Get canvas data
2525
const dataUrl = canvas.toDataURL();

0 commit comments

Comments
 (0)