# Concept

- [How it works?](https://docs.mybucks.online/concept/how-it-works.md): This page explains design principles and technical implementation.
- [Key generation](https://docs.mybucks.online/concept/key-generation.md): The minimal JavaScript code used to generate a private key from Passphrase and PIN inputs is shown below.
- [Architecture](https://docs.mybucks.online/concept/architecture.md): This page explains the software architecture used to implement the wallet.
- [March 2026 Security Update](https://docs.mybucks.online/concept/march-2026-security-update.md): This page outlines the technical shifts from Legacy to Default security modes.
- [Security Consideration](https://docs.mybucks.online/concept/security-consideration.md): This page explains the main motivation for choosing Scrypt and Keccak256 to implement a credential-based, seedless wallet.
- [Brute Force Attack](https://docs.mybucks.online/concept/security-consideration/brute-force-attack.md): This page outlines one of the major threats: Brute Force attacks.
- [Rainbow Tables](https://docs.mybucks.online/concept/security-consideration/rainbow-tables.md): This page outlines the expected size and availability of rainbow tables.
- [Security Deep Dive](https://docs.mybucks.online/concept/security-consideration/security-deep-dive.md): This page addresses technical risks and architectural decisions frequently raised by security researchers and auditors during our community review process.
- [Browser-Level Protection](https://docs.mybucks.online/concept/security-consideration/browser-level-protection.md): This page explains how we utilize browser-level security features, such as a strict Content Security Policy (CSP), to isolate your session and protect your data from external threats.
- [@mybucks.online/core](https://docs.mybucks.online/concept/mybucks.online-core.md): This is an independent NPM package to handle key-generation and transfer-link.


---

# 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.mybucks.online/concept.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.
