> For the complete documentation index, see [llms.txt](https://docs.mybucks.online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mybucks.online/concept.md).

# 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): This page shows the minimal JavaScript used in the seedless, disposable wallet framework to generate a private key from Passphrase and PIN inputs.
- [Architecture](https://docs.mybucks.online/concept/architecture.md): This page explains the software architecture used to implement the seedless, disposable wallet framework behind the digital cash envelope product.
- [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 in the seedless, disposable wallet framework.
- [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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.mybucks.online/concept.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
