Skip to content

docs: add Phase 3 GitHub issue IDs to TODO.md #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 21 additions & 15 deletions docs/TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,27 +68,33 @@ This document tracks the implementation progress of GhostPaste. Check off tasks

### Crypto Module (`lib/crypto.ts`)

- [ ] Implement key generation using Web Crypto API
- [ ] Implement AES-GCM encryption function (Workers-compatible)
- [ ] Implement AES-GCM decryption function (Workers-compatible)
- [ ] Implement key export/import utilities
- [ ] Create URL-safe key encoding/decoding (base64url)
- [ ] Add encryption error handling
- [ ] Ensure all crypto operations are Edge Runtime compatible
- [ ] Implement key generation using Web Crypto API - [#36](https://github.com/nullcoder/ghostpaste/issues/36)
- [ ] Implement AES-GCM encryption function (Workers-compatible) - [#36](https://github.com/nullcoder/ghostpaste/issues/36)
- [ ] Implement AES-GCM decryption function (Workers-compatible) - [#36](https://github.com/nullcoder/ghostpaste/issues/36)
- [ ] Implement key export/import utilities - [#36](https://github.com/nullcoder/ghostpaste/issues/36)
- [ ] Create URL-safe key encoding/decoding (base64url) - [#36](https://github.com/nullcoder/ghostpaste/issues/36)
- [ ] Add encryption error handling - [#36](https://github.com/nullcoder/ghostpaste/issues/36)
- [ ] Ensure all crypto operations are Edge Runtime compatible - [#36](https://github.com/nullcoder/ghostpaste/issues/36)

### Binary Format (`lib/binary.ts`)

- [ ] Implement file encoding to binary format
- [ ] Implement binary format decoding
- [ ] Add format validation
- [ ] Create unit tests for binary operations
- [ ] Implement file encoding to binary format - [#37](https://github.com/nullcoder/ghostpaste/issues/37)
- [ ] Implement binary format decoding - [#37](https://github.com/nullcoder/ghostpaste/issues/37)
- [ ] Add format validation - [#37](https://github.com/nullcoder/ghostpaste/issues/37)
- [ ] Create unit tests for binary operations - [#37](https://github.com/nullcoder/ghostpaste/issues/37)

### PIN Authentication (`lib/auth.ts`)

- [ ] Implement PBKDF2 PIN hashing
- [ ] Create PIN validation function
- [ ] Add salt generation utility
- [ ] Create PIN strength validation
- [ ] Implement PBKDF2 PIN hashing - [#38](https://github.com/nullcoder/ghostpaste/issues/38)
- [ ] Create PIN validation function - [#38](https://github.com/nullcoder/ghostpaste/issues/38)
- [ ] Add salt generation utility - [#38](https://github.com/nullcoder/ghostpaste/issues/38)
- [ ] Create PIN strength validation - [#38](https://github.com/nullcoder/ghostpaste/issues/38)

### Integration Testing

- [ ] Create integration tests for encryption workflow - [#39](https://github.com/nullcoder/ghostpaste/issues/39)
- [ ] Add encryption helper utilities - [#40](https://github.com/nullcoder/ghostpaste/issues/40)
- [ ] Document encryption architecture - [#41](https://github.com/nullcoder/ghostpaste/issues/41)

## 🎨 Phase 4: UI Components

Expand Down