No description
Find a file
MoCipher 267d8f6edd
Some checks failed
CI / build (macos-latest, stable) (push) Has been cancelled
CI / build (ubuntu-latest, stable) (push) Has been cancelled
CI / build (windows-latest, stable) (push) Has been cancelled
Initial CrypteCipher scaffold and features
2026-02-12 00:02:00 +01:00
.github/workflows Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
bindings Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
core Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
docs Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
electron Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
mobile Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
tools/cli Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
.gitignore Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00
README.md Initial CrypteCipher scaffold and features 2026-02-12 00:02:00 +01:00

CrypteCipher

Secure privacy-first multi-currency wallet (scaffold)

Overview

  • Core: Rust library implementing key management, Bitcoin (on-chain + Lightning), Monero (RPC integration), and atomic-swap scaffolding.
  • Bindings: Node/N-API bindings to use core from Electron/Node.js.
  • Mobile: React Native app (TypeScript) that will use platform-native bindings to call the Rust core.
  • Electron: Desktop app skeleton that uses N-API bindings.

Security notes

  • Core crypto and key management is implemented in Rust for memory safety.
  • Do not ship private keys to servers — default is non-custodial.
  • All cryptographic code must be audited before production.

Next steps

  1. Review ARCHITECTURE.md in /docs.
  2. Wire up real libraries and node/native module integration.
  3. Add automated tests and security audit.