# Cryptographic Specifications

#### Core Algorithms

EtheLock relies on industry-standard, audited cryptographic primitives. We do not roll our own crypto.

**Key Derivation Function (KDF)**

* **Algorithm:** Argon2id.
* Purpose: This is a memory-hard function used to hash your PIN. It is specifically designed to resist GPU and ASIC brute-force attacks. Even if an attacker had your card, guessing the PIN would be computationally prohibitive.

**Signing Curve**

* **Algorithm:** secp256k1.
* **Purpose:** The standard elliptic curve used by Ethereum and Bitcoin for generating public addresses and signing transactions.

**Symmetric Encryption**

* **Algorithm:** AES-256-GCM (Galois/Counter Mode).
* **Purpose:** Used to encrypt all data transmitted between the mobile app and the desktop dashboard. GCM provides both confidentiality (they can't read it) and integrity (they can't tamper with it).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ethelock.xyz/4-security-architecture/cryptographic-specifications.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
