feat: Implement new encryption algorithms ECDH and XChaCha20-Poly1305 with chunking support

This commit is contained in:
k1ngsterr1
2026-01-15 00:53:32 +05:00
parent a079d5fffa
commit dfc6d3f462
3 changed files with 639 additions and 23 deletions

View File

@@ -85,6 +85,9 @@ dependencies {
// Crypto libraries for key generation
implementation("org.bitcoinj:bitcoinj-core:0.16.2")
implementation("org.bouncycastle:bcprov-jdk15to18:1.77")
// Google Tink for XChaCha20-Poly1305
implementation("com.google.crypto.tink:tink-android:1.10.0")
// Security for encrypted storage
implementation("androidx.security:security-crypto:1.1.0-alpha06")