Our Solutions

Premium Flutter plugins and mobile applications crafted with passion.

v1.4.4 — Camera Input & 6 Solvers

CubeXpert

Whether you are a complete beginner or an aspiring speedcuber, CubeXpert helps you learn, practice, and improve with interactive 3D guidance, powerful speedcubing tools, and camera input scanning.

📷

Camera Input Scanning

Scan your cube with the camera to detect colors and generate a solution faster than manual entry.

🧩

6 Powerful Solvers

Master the cube with Beginner, CFOP, Roux, ZZ, Petrus, and the optimal Kociemba solver with phase-by-phase guidance.

📚

Learn From Scratch

Comprehensive beginner lessons from zero to your first solve, including notation and interactive 3D demonstrations.

🎯

Algorithm Practice

Targeted training for F2L, OLL, and PLL with smart scrambles and technique improvement drills.

🧊

Interactive 3D Puzzle

Train with a realistic cube experience featuring gesture-based moves, fluid rendering, and instant scrambles.

📈

Pro Tools & Statistics

Elevate your practice with session management, WCA inspection timer, smart orientation, and advanced statistics.

Privacy Focused: No account required • Local data storage
CubeXpert
v10.1.0 — iOS • Android • macOS • Windows

Biometric Signature

Create cryptographic signatures using device biometrics with keys stored in Secure Enclave (iOS/macOS), StrongBox/Keystore (Android), and TPM (Windows).

View on Pub.dev
RSA + EC
Key Algorithms
4
Platforms Supported
ECIES
Hybrid Encryption
100%
Hardware Secured

Bank-Grade Security. Developer-Friendly API.

🔐

Hardware Security

Keys are generated and stored in Secure Enclave (iOS/macOS) and StrongBox/Keystore (Android). Private keys never leave the secure hardware.

✍️

Cryptographic Signatures

Create RSA-2048 or ECDSA (P-256) signatures that your backend can independently verify. True proof of identity.

🔓

ECIES Decryption

Decrypt sensitive data using hybrid ECIES encryption with X9.63 key derivation, SHA-256, and AES-GCM.

👆

Biometric Authentication

Seamless integration with FaceID, TouchID, and Android BiometricPrompt. Native UI on every platform.

🚫

Key Invalidation

Optionally invalidate keys when biometric enrollment changes. Detect if fingerprints or Face ID have been modified.

🔢

Device Credential Fallback

Allow PIN, pattern, or password fallback on Android when biometrics are unavailable.

Multi-Platform Support

🍎

iOS

  • Secure Enclave
  • Face ID & Touch ID
  • RSA & ECDSA signing
  • Keychain storage
🤖

Android

  • StrongBox / Keystore
  • BiometricPrompt API
  • Device credential fallback
  • Custom UI options
💻

macOS

  • Secure Enclave
  • Touch ID support
  • ECDSA P-256 keys
  • Keychain integration
🪟

Windows

  • TPM hardware backing
  • Windows Hello
  • ECDSA P-256 signing
  • PIN fallback support

Simple Workflow

01

Create Keys

Generate hardware-backed key pair with biometric protection.

02

Register Public Key

Send the public key to your backend for future verification.

03

Sign Data

User authenticates, hardware signs the payload.

04

Verify Signature

Backend verifies the signature using the stored public key.

Clean, Intuitive API

Integrate secure biometric signatures in minutes with our well-documented API. Full platform customization when you need it.

  • Type-safe Dart API with null safety
  • Platform-specific configuration options
  • Comprehensive error handling
  • Backend examples in Node.js, Python & Go
create_keys.dart
// Create biometric-protected keys
final result = await BiometricSignature()
  .createKeys(
    enforceBiometric: true,
    promptMessage: "Authenticate to register",
  );

if (result != null) {
  // Send public key to your backend
  await api.registerPublicKey(result.publicKey);
}
sign_data.dart
// Sign a challenge from your server
final signature = await BiometricSignature()
  .createSignature(
    options: SignatureOptions(
      payload: serverChallenge,
      promptMessage: "Confirm transaction",
    ),
  );

// Send signature to backend for verification