From 71d9f25557f099304ba915f7a869c2c6d9d3f902 Mon Sep 17 00:00:00 2001 From: Dumitru Date: Sat, 27 Dec 2025 20:41:17 +0100 Subject: [PATCH] Quartz Feature Parity Table on Multiplatform --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 46f7773a0..679c159b1 100644 --- a/README.md +++ b/README.md @@ -369,6 +369,28 @@ When your app goes to the background, you can use NostrClient's `connect` and `d methods to stop all communication to relays. Add the `connect` to your `onResume` and `disconnect` to `onPause` methods. +### Feature Parity Table + +| Feature Category | Feature / Component | Android / JVM Support | iOS Support | Notes | +| :--- | :--- | :---: | :---: | :--- | +| **Cryptography** | Secp256k1 (Schnorr, Keys) | ✅ Full | ❌ No | Core Nostr signing/verification is missing on iOS. | +| | LibSodium (ChaCha20, Poly1305) | ✅ Full | ❌ No | AEAD and stream ciphers are unimplemented. | +| | AES Encryption (CBC & GCM) | ✅ Full | ❌ No | `AESCBC` and `AESGCM` are stubs on iOS. | +| | Hashing (SHA-256, etc.) | ✅ Full | ❌ No | `DigestInstance` is unimplemented. | +| | MAC (HmacSHA256, etc.) | ✅ Full | ❌ No | `MacInstance` is unimplemented. | +| **Data & Serialization** | JSON Mapping (Optimized) | ✅ Full | ❌ No | `OptimizedJsonMapper` is a stub; cannot parse/serialize Events. | +| | GZip Compression | ✅ Full | ❌ No | `GZip` implementation is missing. | +| | BitSet | ✅ Full | ❌ No | `BitSet` utility is unimplemented. | +| | LargeCache | ✅ Full | ❌ No | `LargeCache` methods (get, keys, size, etc.) are stubs. | +| **NIP Support** | NIP-96 (File Storage Info) | ✅ Full | ❌ No | `ServerInfoParser` is unimplemented. | +| | NIP-46 (Remote Signer) | ✅ Full | ⚠️ Partial | Some methods in `NostrSignerRemote` are unimplemented in `commonMain`. | +| | NIP-03 (OTS / Timestamps) | ✅ Full | ❌ No | `BitcoinExplorer` and `RemoteCalendar` have stubs in `commonMain`. | +| **Utilities** | URL Encoding / Decoding | ✅ Full | ❌ No | `UrlEncoder` and `URLs.ios.kt` are unimplemented. | +| | Unicode Normalization | ✅ Full | ❌ No | `UnicodeNormalizer` is a stub. | +| | Platform Logging | ✅ Full | ✅ Full | iOS uses `NSLog`, Android uses standard Log. | +| | Current Time | ✅ Full | ✅ Full | Implemented using `NSDate` on iOS. | + + ## Contributing Issues can be logged on: [https://gitworkshop.dev/repo/amethyst](https://gitworkshop.dev/repo/amethyst)