Skip to content

Commit 7e0bd0c

Browse files
committed
wont work...
1 parent 053b374 commit 7e0bd0c

73 files changed

Lines changed: 1044 additions & 73 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.docusaurus/client-modules.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default [
2-
require("/run/media/cat/QVO/01 - CODE/astrakit-docs/documentation/node_modules/infima/dist/css/default/default.css"),
3-
require("/run/media/cat/QVO/01 - CODE/astrakit-docs/documentation/node_modules/@docusaurus/theme-classic/lib/prism-include-languages"),
4-
require("/run/media/cat/QVO/01 - CODE/astrakit-docs/documentation/node_modules/@docusaurus/theme-classic/lib/nprogress"),
5-
require("/run/media/cat/QVO/01 - CODE/astrakit-docs/documentation/src/css/custom.css"),
2+
require("C:\\Users\\TomBu\\Documents\\code\\documentation\\node_modules\\infima\\dist\\css\\default\\default.css"),
3+
require("C:\\Users\\TomBu\\Documents\\code\\documentation\\node_modules\\@docusaurus\\theme-classic\\lib\\prism-include-languages"),
4+
require("C:\\Users\\TomBu\\Documents\\code\\documentation\\node_modules\\@docusaurus\\theme-classic\\lib\\nprogress"),
5+
require("C:\\Users\\TomBu\\Documents\\code\\documentation\\src\\css\\custom.css"),
66
];

.docusaurus/docusaurus-plugin-content-docs/default/p/docs-175.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

.docusaurus/docusaurus-plugin-content-docs/default/site-docs-user-security-information-md-06f.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "user/security/information",
33
"title": "How does Astrakit's security work?",
4-
"description": "Learn more about private chats and what they even are!",
4+
"description": "Learn about Astrakit's end-to-end RSA and Zero-Knowledge encryption technologies that protect your privacy.",
55
"source": "@site/docs/user/security/information.md",
66
"sourceDirName": "user/security",
77
"slug": "/user/security/information",
@@ -14,7 +14,7 @@
1414
"lastUpdatedBy": "Author",
1515
"lastUpdatedAt": 1539502055000,
1616
"frontMatter": {
17-
"description": "Learn more about private chats and what they even are!"
17+
"description": "Learn about Astrakit's end-to-end RSA and Zero-Knowledge encryption technologies that protect your privacy."
1818
},
1919
"sidebar": "userDocSidebar",
2020
"previous": {

.docusaurus/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

.docusaurus/docusaurus.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default {
2222
"localeConfigs": {}
2323
},
2424
"plugins": [
25-
"/run/media/cat/QVO/01 - CODE/astrakit-docs/documentation/node_modules/docusaurus-lunr-search/src/index.js"
25+
"C:\\Users\\TomBu\\Documents\\code\\documentation\\node_modules\\docusaurus-lunr-search\\src\\index.js"
2626
],
2727
"presets": [
2828
[

.docusaurus/globalData.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@
280280
"docusaurus-lunr-search": {
281281
"default": {
282282
"fileNames": {
283-
"searchDoc": "search-doc-1744442556289.json",
284-
"lunrIndex": "lunr-index-1744442556289.json"
283+
"searchDoc": "search-doc-1747647051429.json",
284+
"lunrIndex": "lunr-index-1747647051429.json"
285285
}
286286
}
287287
}

docs/user/security/information.md

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,60 @@
11
---
2-
description: Learn more about private chats and what they even are!
2+
description: Learn about Astrakit's end-to-end RSA and Zero-Knowledge encryption technologies that protect your privacy.
33
---
44
# How does Astrakit's security work?
5+
6+
Astrakit employs two powerful encryption technologies to keep your data private and secure: End-to-End RSA Encryption and Zero-Knowledge Encryption. Let's break down what these mean for you.
7+
8+
---
9+
10+
## Temporary Message Storage
11+
12+
### How it works
13+
- Messages are only stored on our servers until they're delivered and read
14+
- Once a message is read by the recipient, it's automatically deleted from our servers
15+
- Your conversations exist only on your devices, not in our cloud
16+
17+
### What this means for you
18+
- Your message history isn't permanently stored on our servers
19+
- There's no long-term record of your conversations on Astrakit's infrastructure
20+
- This further reduces the risk of data exposure in the unlikely event of a server breach
21+
22+
---
23+
24+
## End-to-End RSA Encryption
25+
26+
### What is it?
27+
End-to-End RSA encryption (E2E RSA) ensures that only you and the people you're communicating with can read your messages. Not even Astrakit can access your encrypted content.
28+
29+
### How it works
30+
1. **Key generation**: When you set up Astrakit, it creates two mathematical keys - a public key and a private key.
31+
2. **Encryption**: When someone sends you a message, it's locked using your public key.
32+
3. **Decryption**: Only your private key (which never leaves your device) can unlock messages encrypted with your public key.
33+
34+
### What this means for you
35+
- Your messages remain private, even if someone intercepts them
36+
- Nobody can read your messages without your private key
37+
- Even if Astrakit's servers were compromised, your messages stay secure
38+
39+
## Zero-Knowledge Encryption
40+
41+
### What is it?
42+
Zero-Knowledge (ZK) encryption means Astrakit knows nothing about your data. We can store and process your information without actually seeing its contents.
43+
44+
### How it works
45+
1. **Local encryption**: Your data is encrypted on your device before it reaches our servers
46+
2. **Proof without revelation**: ZK protocols let us verify operations on your data without knowing what the data is
47+
3. **Trust through mathematics**: The system mathematically guarantees privacy without requiring you to trust us
48+
49+
### What this means for you
50+
- Astrakit can't access your sensitive information
51+
- We can still provide services without seeing your private data
52+
- You maintain complete control over your information
53+
54+
## Practical Benefits
55+
56+
- **True privacy**: Your personal conversations and data belong only to you
57+
- **Protection from data breaches**: Even if attackers gained access to our servers, your data remains encrypted
58+
- **No backdoors**: The mathematical nature of these systems means there are no "master keys"
59+
60+
For more technical details about our implementation, visit our [Developer Documentation](https://astrakit.cc/security).

node_modules/.bin/acorn

Lines changed: 16 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/ansi-html

Lines changed: 16 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/astring

Lines changed: 16 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)