Compare commits

..

No commits in common. "main" and "1.0" have entirely different histories.
main ... 1.0

266 changed files with 156 additions and 43798 deletions

4
.gitignore vendored
View File

@ -1,4 +1,2 @@
build.env build.env
./build/* build/*
./build
build

16
LICENSE
View File

@ -1,6 +1,6 @@
Reticulum License MIT License, unless otherwise noted
Copyright (c) 2016-2025 Mark Qvist Copyright (c) 2022 Mark Qvist / unsigned.io
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
@ -9,16 +9,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions: furnished to do so, subject to the following conditions:
- The Software shall not be used in any kind of system which includes amongst The above copyright notice and this permission notice shall be included in all
its functions the ability to purposefully do harm to human beings. copies or substantial portions of the Software.
- The Software shall not be used, directly or indirectly, in the creation of
an artificial intelligence, machine learning or language model training
dataset, including but not limited to any use that contributes to the
training or development of such a model or algorithm.
- The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

View File

@ -12,17 +12,9 @@ website:
cp assets/gfx/* build/gfx/ cp assets/gfx/* build/gfx/
cp -r ../../Reticulum/docs/manual/* build/manual/ cp -r ../../Reticulum/docs/manual/* build/manual/
cp -r ../../Reticulum/docs/Reticulum\ Manual.pdf build/manual/ cp -r ../../Reticulum/docs/Reticulum\ Manual.pdf build/manual/
cp -r ../../Reticulum/docs/Reticulum\ Manual.epub build/manual/
docsfolder:
@mkdir -p ./docs
cp -rv ./build/* ./docs/
touch ./docs/.nojekyll
github: website docsfolder
upload: upload:
. ./build.env; \ . ./build.env; \
rsync -rv -e "ssh -p $${DEPLOY_PORT}" build/ $${DEPLOY_TARGET} --delete; rsync -rv build/ "$$DEPLOY_TARGET" --delete
deploy: clean website upload deploy: clean website upload

View File

@ -1,10 +1,2 @@
# Reticulum Website # Reticulum Website
This is the sources for the Reticulum website currently reachable at [https://reticulum.network/](https://reticulum.network/). This is the sources for the Reticulum website currently reachable at [https://reticulum.network/](https://reticulum.network/).
### Add new translation
Execute the `add_new_translation.sh` script and follow the instructions
```bash
bash add_new_translation.sh
```

View File

@ -1,33 +0,0 @@
#!/bin/bash
set -e
origin_directory="./source/"
destiny_directory="./source/"
echo -e "\n"
# Ask the user for the new translation language
read -r -p "Enter the new translation language [es, en, fr, etc]: " new_language
if [[ -z "$new_language" ]]; then
echo -e "Invalid language code"
exit 1
fi
echo "Duplicating files for $new_language language"
for file in "$origin_directory"/*; do
# Took the original files and duplicate them with the new language
if [[ ! "$file" =~ _ ]]; then
# Parse name and extesion
name=$(basename "$file")
name_without_extension="${name%.*}"
extension="${name##*.}"
new_name="${name_without_extension}_${new_language}.${extension}"
# Duplicate the file
cp "$file" "$destiny_directory/$new_name"
fi
done
echo -e "Done, happy translation!\n"

View File

@ -127,7 +127,7 @@ html {
body { body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
line-height: 1.4; line-height: 1.4;
max-width: 880px; max-width: 800px;
margin: 20px auto; margin: 20px auto;
padding: 0 10px; padding: 0 10px;
word-wrap: break-word; word-wrap: break-word;

149
build.py
View File

@ -1,18 +1,16 @@
import markdown import markdown
import os import os
from constants import PUBLIC_ENTRYPOINTS SOURCES_PATH="./source"
BUILD_PATH="./build"
SOURCES_PATH = "./source" INPUT_ENCODING="utf-8"
BUILD_PATH = "./build" OUTPUT_ENCODING="utf-8"
INPUT_ENCODING = "utf-8"
OUTPUT_ENCODING = "utf-8"
document_start = """ document_start = """
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<link rel="stylesheet" href="css/water.css?v=6"> <link rel="stylesheet" href="css/water.css?v=5">
<meta charset="utf-8"/> <meta charset="utf-8"/>
<title>Reticulum Network</title> <title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -32,14 +30,8 @@ primary_lang = "en"
langs = [ langs = [
{"name": "Deutsch", "ext": "de"}, {"name": "Deutsch", "ext": "de"},
{"name": "English", "ext": "en"}, {"name": "English", "ext": "en"},
{"name": "Español", "ext": "es"},
{"name": "Nederlands", "ext": "nl"},
{"name": "Polski", "ext": "pl"}, {"name": "Polski", "ext": "pl"},
{"name": "Português", "ext": "pt-br"}, {"name": "Português", "ext": "pt-br"},
{"name": "Türkçe", "ext": "tr"},
{"name": "Українська", "ext": "uk"},
{"name": "日本語", "ext": "jp"},
{"name": "简体中文", "ext": "zh-cn"},
] ]
menu_translations = { menu_translations = {
@ -47,64 +39,30 @@ menu_translations = {
"RETICULUM": "Reticulum", "RETICULUM": "Reticulum",
"START": "Start", "START": "Start",
"HARDWARE": "Hardware", "HARDWARE": "Hardware",
"TESTNET": "Connect", "TESTNET": "Testnet",
"MANUAL": "Manual", "MANUAL": "Manual",
"CRYPTO": "Cryptography", "CRYPTO": "Crypto",
"CREDITS": "Credits", "CREDITS": "Credits",
"SOURCE": "Source", "SOURCE": "Source",
"DONATE": "Donate", "DONATE": "Donate",
}, },
"tr": {
"RETICULUM": "Reticulum",
"START": "Başlat",
"HARDWARE": "Donanım",
"TESTNET": "Bağlan",
"MANUAL": "Kılavuz",
"CRYPTO": "Şifreleme",
"CREDITS": "Hakkında",
"SOURCE": "Kaynak",
"DONATE": "Destekle",
},
"nl": {
"RETICULUM": "Reticulum",
"START": "Start",
"HARDWARE": "Hardware",
"TESTNET": "Sluit aan",
"MANUAL": "Handleiding",
"CRYPTO": "Kryptografie",
"CREDITS": "Dankwoord",
"SOURCE": "Broncode",
"DONATE": "Doneren",
},
"jp": {
"RETICULUM": "レチキュラム",
"START": "開始",
"HARDWARE": "ハードウェア",
"TESTNET": "接続する",
"MANUAL": "マニュアル",
"CRYPTO": "暗号",
"CREDITS": "クレジット",
"SOURCE": "ソース",
"DONATE": "寄付",
},
"de": { "de": {
"RETICULUM": "Reticulum", "RETICULUM": "Reticulum",
"START": "Los Geht's", "START": "Los Geht's",
"HARDWARE": "Hardware", "HARDWARE": "Hardware",
"TESTNET": "Verbinden", "TESTNET": "Testnetz",
"MANUAL": "Handbuch", "MANUAL": "Handbuch",
"CRYPTO": "Kryptographie", "CRYPTO": "Krypto",
"CREDITS": "Credits", "CREDITS": "Credits",
"SOURCE": "Quellcode", "SOURCE": "Quellcode",
"DONATE": "Unterstützen", "DONATE": "Unterstützen",
}, },"pl": {
"pl": {
"RETICULUM": "Reticulum", "RETICULUM": "Reticulum",
"START": "Jak Zacząć", "START": "Jak Zacząć",
"HARDWARE": "Hardware", "HARDWARE": "Hardware",
"TESTNET": "Podłączać", "TESTNET": "Testnet",
"MANUAL": "Podręcznik", "MANUAL": "Podręcznik",
"CRYPTO": "Kryptografia", "CRYPTO": "Krypto",
"CREDITS": "Zasługi", "CREDITS": "Zasługi",
"SOURCE": "Kod Źródłowy", "SOURCE": "Kod Źródłowy",
"DONATE": "Darowizna", "DONATE": "Darowizna",
@ -113,49 +71,15 @@ menu_translations = {
"RETICULUM": "Reticulum", "RETICULUM": "Reticulum",
"START": "Começar", "START": "Começar",
"HARDWARE": "Hardware", "HARDWARE": "Hardware",
"TESTNET": "Conectar", "TESTNET": "Rede de Teste",
"MANUAL": "Manual", "MANUAL": "Manual",
"CRYPTO": "Criptografia", "CRYPTO": "Cripto",
"CREDITS": "Créditos", "CREDITS": "Créditos",
"SOURCE": "Código", "SOURCE": "Código",
"DONATE": "Ajude", "DONATE": "Ajude",
}, }
"es": {
"RETICULUM": "Reticulum",
"START": "Empezar",
"HARDWARE": "Hardware",
"TESTNET": "Conectar",
"MANUAL": "Manual",
"CRYPTO": "Criptografía",
"CREDITS": "Creditos",
"SOURCE": "Código fuente",
"DONATE": "Donar",
},
"zh-cn": {
"RETICULUM": "Reticulum",
"START": "开始使用",
"HARDWARE": "硬件要求",
"TESTNET": "连接",
"MANUAL": "阅读手册",
"CRYPTO": "密码学",
"CREDITS": "致谢",
"SOURCE": "源代码",
"DONATE": "支持开发",
},
"uk": {
"RETICULUM": "Reticulum",
"START": "Початок",
"HARDWARE": "Обладнання",
"TESTNET": "Тестова мережа",
"MANUAL": "Довідник",
"CRYPTO": "Крипто",
"CREDITS": "Кредит",
"SOURCE": "Вихідний код",
"DONATE": "Донати",
},
} }
def get_page_lang(page): def get_page_lang(page):
page_lang = primary_lang page_lang = primary_lang
for lang in langs: for lang in langs:
@ -165,12 +89,11 @@ def get_page_lang(page):
page_lang = lang["ext"] page_lang = lang["ext"]
return page_lang return page_lang
def get_languages_md(page): def get_languages_md(page):
page = page.replace(SOURCES_PATH, ".") page = page.replace(SOURCES_PATH, ".")
current_page_lang = get_page_lang(page) current_page_lang = get_page_lang(page)
if current_page_lang != primary_lang: if current_page_lang != primary_lang:
page_base_name = page.replace("_" + current_page_lang + ".md", "") page_base_name = page.replace("_"+current_page_lang+".md", "")
else: else:
page_base_name = page.replace(".md", "") page_base_name = page.replace(".md", "")
@ -179,12 +102,12 @@ def get_languages_md(page):
lang = lang_entry["name"] lang = lang_entry["name"]
lang_ext = lang_entry["ext"] lang_ext = lang_entry["ext"]
if lang_ext != primary_lang: if lang_ext != primary_lang:
lang_ext_str = "_" + lang_ext lang_ext_str = "_"+lang_ext
else: else:
lang_ext_str = "" lang_ext_str = ""
link_target = page_base_name + lang_ext_str + ".html" link_target = page_base_name+lang_ext_str+".html"
link_md = "[" + lang + "](" + link_target + ") | " link_md = "["+lang+"]("+link_target+") | "
lang_list += link_md lang_list += link_md
return langs_md.replace("{LANGS}", lang_list[:-3]) return langs_md.replace("{LANGS}", lang_list[:-3])
@ -193,37 +116,25 @@ def get_languages_md(page):
def get_menu_md(lang): def get_menu_md(lang):
local_menu_md = menu_md local_menu_md = menu_md
for entry in menu_translations[lang]: for entry in menu_translations[lang]:
local_menu_md = local_menu_md.replace( local_menu_md = local_menu_md.replace("{"+entry+"}", menu_translations[lang][entry])
"{" + entry + "}", menu_translations[lang][entry]
)
return local_menu_md return local_menu_md
def scan_pages(base_path): def scan_pages(base_path):
files = [ files = [file for file in os.listdir(base_path) if os.path.isfile(os.path.join(base_path, file)) and file[:1] != "."]
file directories = [file for file in os.listdir(base_path) if os.path.isdir(os.path.join(base_path, file)) and file[:1] != "."]
for file in os.listdir(base_path)
if os.path.isfile(os.path.join(base_path, file)) and file[:1] != "."
]
directories = [
file
for file in os.listdir(base_path)
if os.path.isdir(os.path.join(base_path, file)) and file[:1] != "."
]
page_sources = [] page_sources = []
for file in files: for file in files:
if file.endswith(".md"): if file.endswith(".md"):
page_sources.append(base_path + "/" + file) page_sources.append(base_path+"/"+file)
for directory in directories: for directory in directories:
page_sources.append(scan_pages(base_path + "/" + directory)) page_sources.append(scan_pages(base_path+"/"+directory))
return page_sources return page_sources
source_files = scan_pages(SOURCES_PATH) source_files = scan_pages(SOURCES_PATH)
for mdf in source_files: for mdf in source_files:
@ -231,17 +142,15 @@ for mdf in source_files:
page_lang = get_page_lang(mdf) page_lang = get_page_lang(mdf)
if page_lang != primary_lang: if page_lang != primary_lang:
page_lang_ext = "_" + page_lang page_lang_ext = "_"+page_lang
else: else:
page_lang_ext = "" page_lang_ext = ""
md = f.read().decode(INPUT_ENCODING).replace("{PUBLIC_ENTRYPOINTS}", PUBLIC_ENTRYPOINTS) md = f.read().decode(INPUT_ENCODING)
page_md = "<center>" + get_languages_md(mdf) + "" + get_menu_md(page_lang).replace("{LANG_EXT}", page_lang_ext) + "</center>\n\n" + md page_md = "<center>"+get_languages_md(mdf)+""+get_menu_md(page_lang).replace("{LANG_EXT}", page_lang_ext) + "</center>\n\n" + md
html = markdown.markdown( html = markdown.markdown(page_md, extensions=["markdown.extensions.fenced_code"])
page_md, extensions=["markdown.extensions.fenced_code"]
)
html = document_start + html + document_end html = document_start + html + document_end
of = BUILD_PATH + mdf.replace(SOURCES_PATH, "").replace(".md", ".html") of = BUILD_PATH+mdf.replace(SOURCES_PATH, "").replace(".md", ".html")
with open(of, "wb") as wf: with open(of, "wb") as wf:
wf.write(html.encode(OUTPUT_ENCODING)) wf.write(html.encode(OUTPUT_ENCODING))

View File

@ -1,142 +0,0 @@
PUBLIC_ENTRYPOINTS = """```
# These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
```
"""

View File

View File

@ -1 +0,0 @@
reticulum.network

View File

@ -1,184 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h1>Public Testnet</h1>
<p>If you just want to get started experimenting without building any physical networks, you are welcome to join the Public Reticulum Testnet. The testnet is just that, an informal network for testing and experimenting. It will be up most of the time, and anyone can join, but it also means that there's no guarantees for service availability.</p>
<p><strong>Please note!</strong> For everyday use of Reticulum, such as for messaging and other communications, it is much better to use one or more of the community-provided public entrypoints. Please see the next section for details. </p>
<p>The testnet runs the very latest version of Reticulum (often even a short while before it is publicly released). Sometimes experimental versions of Reticulum might be deployed to nodes on the testnet, which means strange behaviour can occur. If none of that scares you, you can join the testnet via either TCP or I2P.</p>
<p>Just add one of the following interfaces to your Reticulum configuration file:</p>
<pre><code># TCP/IP interface to the Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# TCP/IP interface to the BetweenTheBorders Hub (community-provided)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interface to I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>The testnet also contains a number of <a href="https://github.com/markqvist/nomadnet">Nomad Network</a> nodes, and <a href="https://github.com/markqvist/lxmf">LXMF</a> propagation nodes.</p>
<h1>Community Entrypoints</h1>
<p>A number of publicly available entrypoints to Reticulum networks have been provided by the community. For everyday use, it is recommended to use these instead of the testnet.</p>
<p>You can connect your devices or instances to one or more of these to gain access to any Reticulum networks they are physically connected to.</p>
<p>Ideally, set up a Reticulum Transport Node that your own devices can reach locally, and then connect that transport node to a couple of public entrypoints. This will provide efficient connections and redundancy in case any of them go down.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs.html">Next Topic: Read The Manual</a></p>
</body>
</html>

View File

@ -1,184 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h1>Öffentliches Testnetz</h1>
<p>Wenn Sie einfach nur experimentieren wollen, ohne ein physisches Netzwerk aufzubauen, können Sie sich gerne dem öffentlichen Reticulum Testnet anschließen. Das Testnetz ist genau das: ein informelles Netzwerk zum Testen und Experimentieren. Es wird die meiste Zeit verfügbar sein, und jeder kann mitmachen, aber das bedeutet auch, dass es keine Garantien für die Verfügbarkeit der Dienste gibt.</p>
<p>Auf dem Testnetz läuft die allerneueste Version von Reticulum (oft sogar kurz vor der öffentlichen Freigabe). Manchmal werden experimentelle Versionen von Reticulum auf Knoten im Testnetz eingesetzt, was bedeutet, dass seltsames Verhalten auftreten kann.
Wenn Sie das alles nicht abschreckt, können Sie dem Testnetz über TCP oder I2P beitreten.</p>
<p>Fügen Sie einfach eine der folgenden Schnittstellen in Ihre Reticulum-Konfigurationsdatei ein:</p>
<pre><code># TCP/IP interface to the Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# TCP/IP interface to the BetweenTheBorders Hub (community-provided)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interface to I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>Das Testnetz enthält auch eine Reihe von <a href="https://github.com/markqvist/nomadnet">Nomad Network</a>-Knoten und <a href="https://github.com/markqvist/lxmf">LXMF</a>-Propagationsknoten, Sowie <a href="https://github.com/markqvist/Sideband">Sideband</a> Peers, welche untereinander erreichbar sind.</p>
<h1>Community-Einstiegspunkte</h1>
<p>Die Community hat eine Reihe öffentlich verfügbarer Einstiegspunkte zu Reticulum-Netzwerken bereitgestellt. Für den alltäglichen Gebrauch wird empfohlen, diese anstelle des Testnetzes zu verwenden.</p>
<p>Sie können Ihre Geräte oder Instanzen mit einem oder mehreren dieser Punkte verbinden, um Zugriff auf alle Reticulum-Netzwerke zu erhalten, mit denen sie physisch verbunden sind.</p>
<p>Richten Sie im Idealfall einen Reticulum-Transportknoten ein, den Ihre eigenen Geräte lokal erreichen können, und verbinden Sie diesen Transportknoten dann mit einigen öffentlichen Einstiegspunkten. Dies sorgt für effiziente Verbindungen und Redundanz, falls einer von ihnen ausfällt.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_de.html">Nächstes Thema: Lesen Sie das Handbuch</a></p>
</body>
</html>

View File

@ -1,184 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h1>Testnet pública</h1>
<p>Si sólo quiere empezar a experimentar sin construir ninguna red física, le invitamos a unirse a la red pública de pruebas de Reticulum (Testnet).
La red de pruebas es precisamente eso, una red informal para probar y experimentar. Estará activa la mayor parte del tiempo y cualquiera puede unirse a ella, pero esto también significa que no hay garantías de disponibilidad del servicio.</p>
<p>La red de pruebas ejecuta la ultimísima versión de Reticulum (a menudo incluso un poco antes de su lanzamiento público). A veces pueden desplegarse versiones experimentales de Reticulum en nodos de la red de pruebas, lo que significa que pueden producirse comportamientos extraños. Si nada de esto le asusta, puede unirse a la red de prueba a través de TCP o I2P.</p>
<p>Sólo tiene que añadir una de las siguientes interfaces a su archivo de configuración de Reticulum:</p>
<pre><code># TCP/IP interfaz al Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# TCP/IP interfaz al BetweenTheBorders Hub (proporcionado por la comunidad)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interfaz a I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>La red de pruebas también contiene varios nodos de <a href="https://github.com/markqvist/nomadnet">Nomad Network</a> y nodos de propagación <a href="https://github.com/markqvist/lxmf">LXMF</a>.</p>
<h1>Puntos de entrada de la comunidad</h1>
<p>La comunidad ha proporcionado una serie de puntos de entrada disponibles públicamente a las redes de Reticulum. Para el uso diario, se recomienda utilizar estos en lugar de la red de prueba.</p>
<p>Puede conectar sus dispositivos o instancias a uno o más de estos para obtener acceso a cualquier red de Reticulum a la que estén conectados físicamente.</p>
<p>Lo ideal es configurar un nodo de transporte de Reticulum al que sus propios dispositivos puedan acceder localmente y luego conectar ese nodo de transporte a un par de puntos de entrada públicos. Esto proporcionará conexiones eficientes y redundancia en caso de que alguno de ellos deje de funcionar.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_es.html">Siguiente tema: Leer el manual</a></p>
</body>
</html>

View File

@ -1,183 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h1>パブリックテストネット</h1>
<p>物理的なネットワークを構築せずに実験を始めたい場合は、パブリックレティキュラムテストネットに参加してください。テストネットはまさにそれであり、テストと実験のための非公式なネットワークです。ほとんどの時間稼働しており、誰でも参加できますが、それは同時にサービスの可用性に対する保証がないことも意味します。</p>
<p>テストネットは最新のレティキュラムのバージョンを実行しており公開される前の短い期間でもあることがよくあります、時折実験的なレティキュラムのバージョンがテストネット上のードに展開されることがあり、それにより奇妙な動作が発生する可能性があります。それでも怖くない場合は、TCPまたはI2Pを使用してテストネットに参加できます。</p>
<p>次のいずれかのインターフェースをReticulumの設定ファイルに追加してください</p>
<pre><code># Dublin HubへのTCP/IPインターフェース
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# BetweenTheBorders HubへのTCP/IPインターフェースコミュニティ提供
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# I2P Hub Aへのインターフェース
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>テストネットには<a href="https://github.com/markqvist/nomadnet">Nomad Network</a>ノードおよび<a href="https://github.com/markqvist/lxmf">LXMF</a>伝播ノードも含まれています。</p>
<h1>コミュニティ エントリポイント</h1>
<p>コミュニティによって、Reticulum ネットワークへの公開エントリポイントが多数提供されています。日常的な使用には、テストネットではなくこれらを使用することをお勧めします。</p>
<p>デバイスまたはインスタンスをこれらの 1 つ以上のエントリポイントに接続して、物理的に接続されている Reticulum ネットワークにアクセスできます。</p>
<p>理想的には、自分のデバイスがローカルでアクセスできる Reticulum トランスポート ノードを設定し、そのトランスポート ノードをいくつかのパブリック エントリポイントに接続します。これにより、いずれかのエントリポイントがダウンした場合でも、効率的な接続と冗長性が提供されます。</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_jp.html">次のトピック:マニュアルを読む</a></p>
</body>
</html>

View File

@ -1,183 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h1>Openbaar Testnet</h1>
<p>Als je gewoon wilt beginnen met experimenteren zonder fysieke netwerken te bouwen, ben je van harte welkom om lid te worden van het Public Reticulum Testnet. Het testnet is precies dat: een informeel netwerk voor testen en experimenteren. Het zal het grootste deel van de tijd actief zijn en iedereen kan meedoen, maar het betekent ook dat er geen garanties zijn voor de beschikbaarheid van de service.</p>
<p>Het testnet draait de allernieuwste versie van Reticulum (vaak zelfs kort voordat deze publiekelijk wordt vrijgegeven). Soms kunnen experimentele versies van Reticulum worden ingezet op knooppunten op het testnet, wat betekent dat er vreemd gedrag kan optreden. Als dit u allemaal niet afschrikt, kunt u zich via TCP of I2P bij het testnet aansluiten.</p>
<p>Voeg gewoon een van de volgende interfaces toe aan uw Reticulum-configuratiebestand:</p>
<pre><code># TCP/IP interface to the Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# TCP/IP interface to the BetweenTheBorders Hub (door de gemeenschap geleverd)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interface to I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>Het testnet bevat ook een aantal <a href="https://github.com/markqvist/nomadnet">Nomad Network</a> knooppunten en <a href="https://github.com/markqvist/lxmf">LXMF</a> propagatieknooppunten.</p>
<h1>Community Entrypoints</h1>
<p>De community heeft een aantal openbaar beschikbare entrypoints voor Reticulum-netwerken geleverd. Voor dagelijks gebruik is het raadzaam om deze te gebruiken in plaats van het testnet.</p>
<p>U kunt uw apparaten of instanties verbinden met een of meer van deze om toegang te krijgen tot alle Reticulum-netwerken waarmee ze fysiek verbonden zijn.</p>
<p>Idealiter stelt u een Reticulum Transport Node in die uw eigen apparaten lokaal kunnen bereiken en verbindt u die transport node vervolgens met een aantal openbare entrypoints. Dit zorgt voor efficiënte verbindingen en redundantie in het geval dat een van hen uitvalt.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_nl.html">Volgend onderwerp: lees de handleiding</a></p>
</body>
</html>

View File

@ -1,183 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h1>Publiczny Testnet</h1>
<p>Jeśli chcesz po prostu zacząć eksperymentować bez budowania fizycznych sieci, zachęcam do przyłączenia się do Publicznego Testnetu Reticulum. Testnet to po prostu nieformalna sieć do testowania i eksperymentowania. Będzie działać przez większość czasu i każdy może do niej dołączyć, ale oznacza to również, że nie ma gwarancji dostępności usług.</p>
<p>W sieci testowej działa najnowsza wersja Reticulum (często nawet krótko przed jej publicznym udostępnieniem). Czasami eksperymentalne wersje Reticulum mogą zostać wdrożone do węzłów w sieci testowej, co oznacza, że mogą wystąpić dziwne zachowania. Jeśli Ciebie to nie przeraża, możesz dołączyć do sieci testowej przez TCP lub I2P.</p>
<p>Dodaj jeden z następujących interfejsów do pliku konfiguracyjnego Reticulum:</p>
<pre><code># TCP/IP interface to the Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# TCP/IP interface to the BetweenTheBorders Hub (community-provided)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interface to I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>Testnet zawiera również liczne węzły <a href="https://github.com/markqvist/nomadnet">Nomad Network</a>, i węzły propagacyjne <a href="https://github.com/markqvist/lxmf">LXMF</a>.</p>
<h1>Punkty wejścia społeczności</h1>
<p>Społeczność udostępniła szereg publicznie dostępnych punktów wejścia do sieci Reticulum. Do codziennego użytku zaleca się korzystanie z nich zamiast sieci testowej.</p>
<p>Możesz podłączyć swoje urządzenia lub instancje do jednego lub większej liczby z nich, aby uzyskać dostęp do dowolnej sieci Reticulum, do której są fizycznie podłączone.</p>
<p>W idealnym przypadku skonfiguruj węzeł transportowy Reticulum, do którego Twoje własne urządzenia mogą dotrzeć lokalnie, a następnie podłącz ten węzeł transportowy do kilku publicznych punktów wejścia. Zapewni to wydajne połączenia i redundancję w przypadku awarii któregokolwiek z nich.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_pl.html">Następny Temat: Przeczytaj Podręcznik</a></p>
</body>
</html>

View File

@ -1,184 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h1>Rede de Teste Pública</h1>
<p>Se você quiser experimentar sem criar nenhuma rede física, você é bem-vindo para entrar na Rede de Teste Pública Reticulum. A rede de teste é apenas isso, uma rede informal para teste e experimentação. Estará online na maior parte do tempo e qualquer um pode entrar, mas isso também significa que não há garantia da disponibilidade do serviço.</p>
<p>A rede de teste executa a última versão do Reticulum (muitas vezes antes da versão ser publicamente lançada).
Algumas vezes versões experimentais do Reticulum podem ser utilizada em nós da rede de teste, que pode causar instabilidade. Se nada disso importa para você, você pode entrar na rede de teste via TCP ou I2P.</p>
<p>Adicione uma das seguintes interfaces no arquivo de configuração do seu Reticulum:</p>
<pre><code># Interface TCP/IP para o Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# Interface TCP/IP para o BetweenTheBorders Hub
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interface para o I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>A rede de teste também contém o número de nós da <a href="https://github.com/markqvist/nomadnet">Nomad Network</a> e nós de propagação <a href="https://github.com/markqvist/lxmf">LXMF</a>.</p>
<h1>Pontos de entrada da comunidade</h1>
<p>Vários pontos de entrada disponíveis publicamente para redes Reticulum foram fornecidos pela comunidade. Para uso diário, é recomendado usar estes em vez da testnet.</p>
<p>Você pode conectar seus dispositivos ou instâncias a um ou mais destes para obter acesso a quaisquer redes Reticulum às quais eles estejam fisicamente conectados.</p>
<p>O ideal é configurar um nó de transporte Reticulum que seus próprios dispositivos possam alcançar localmente e, em seguida, conectar esse nó de transporte a alguns pontos de entrada públicos. Isso fornecerá conexões eficientes e redundância caso algum deles fique inativo.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_pt-br.html">Próxima Página: Leia o Manual</a></p>
</body>
</html>

View File

@ -1,183 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h1>Genel Test Ağı</h1>
<p>Eğer fiziksel ağlar oluşturmadan sadece denemelere başlamak istiyorsanız, Genel Reticulum Test Ağı'na katılmaktan hoş geldiniz. Test ağı tam olarak bunun için, test etmek ve denemeler yapmak için gayri resmi bir ağdır. Çoğu zaman aktif olacak ve herkes katılabilir, ancak bu aynı zamanda hizmetin sürekli kullanılabilirliği için garanti olmadığı anlamına gelir.</p>
<p>Test ağı, Reticulum'un en güncel sürümünü çalıştırır (çoğu zaman genel olarak yayınlanmadan kısa bir süre önce). Ara sıra Reticulum'un deneysel sürümleri, test ağındaki düğümlere dağıtılabilir, bu da tuhaf davranışlara neden olabilir. Eğer hiçbiri sizi korkutmuyorsa, test ağına TCP veya I2P aracılığıyla katılabilirsiniz.</p>
<p>Reticulum yapılandırma dosyanıza aşağıdaki arayüzlerden birini ekleyin:</p>
<pre><code># Dublin Hub için TCP/IP arabirimi
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# BetweenTheBorders Hub için TCP/IP arabirimi (topluluk tarafından sağlanmış)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# I2P Hub A için arabirim
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>Test ayrıca bir dizi <a href="https://github.com/markqvist/nomadnet">Nomad Network</a> düğümü ve <a href="https://github.com/markqvist/lxmf">LXMF</a> yayılma düğümü içerir.</p>
<h1>Topluluk Giriş Noktaları</h1>
<p>Topluluk tarafından Reticulum ağlarına bir dizi genel erişime açık giriş noktası sağlanmıştır. Günlük kullanım için, testnet yerine bunları kullanmanız önerilir.</p>
<p>Cihazlarınızı veya örneklerinizi fiziksel olarak bağlı oldukları herhangi bir Reticulum ağına erişim sağlamak için bunlardan birine veya daha fazlasına bağlayabilirsiniz.</p>
<p>İdeal olarak, kendi cihazlarınızın yerel olarak ulaşabileceği bir Reticulum Taşıma Düğümü kurun ve ardından bu taşıma düğümünü birkaç genel giriş noktasına bağlayın. Bu, bunlardan herhangi biri çökerse verimli bağlantılar ve yedeklilik sağlayacaktır.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_tr.html">Sonraki Konu: Kılavuzu Okuyun</a></p>
</body>
</html>

View File

@ -1,184 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h1>Публічний Testnet</h1>
<p>Якщо ви просто хочете почати експериментувати без створення фізичних мереж, ви можете приєднатися до публічного тестнету Reticulum. Тестнет саме такий, неформальна мережа для тестування та експериментів. Він буде доступний більшість часу, і кожен може приєднатися, але це також означає, що немає гарантій щодо доступності сервісу.</p>
<p><strong>Зверніть увагу!</strong> Для повсякденного використання Reticulum, наприклад, для обміну повідомленнями та інших комунікацій, набагато краще використовувати один або кілька з публічних точок входу, наданих спільнотою. Деталі дивіться в наступному розділі.</p>
<p>Тестнет працює на найновішій версії Reticulum (зазвичай навіть до її офіційного випуску). Іноді на тестнеті можуть бути розгорнуті експериментальні версії Reticulum, що може призвести до дивної поведінки. Якщо вас це не лякає, ви можете приєднатися до тестнету через TCP або I2P.</p>
<p>Просто додайте один із наступних інтерфейсів до вашого конфігураційного файлу Reticulum:</p>
<pre><code># TCP/IP interface to the Dublin Hub
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# TCP/IP interface to the BetweenTheBorders Hub (community-provided)
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# Interface to I2P Hub A
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>Тестнет також містить кілька вузлів Nomad Network та вузлів поширення LXMF.
Точки входу спільноти</p>
<p>Спільнота надала кілька публічно доступних точок входу до мереж Reticulum. Для повсякденного використання рекомендується використовувати ці точки замість тестнету.</p>
<p>Ви можете приєднати свої пристрої або інстанси до однієї або кількох таких точок входу, щоб отримати доступ до будь-яких мереж Reticulum, до яких вони фізично підключені.</p>
<p>Ідеально, якщо ви налаштуєте вузол транспорту Reticulum, до якого ваші пристрої зможуть підключатися локально, а потім з’єднаєте цей транспортний вузол з кількома публічними точками входу. Це забезпечить ефективні з’єднання та надійність у випадку, якщо одна з точок входу вийде з ладу.</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs.html">Наступна тема: Читати мануал</a></p>
</body>
</html>

View File

@ -1,184 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./connect_de.html">Deutsch</a> | <a href="./connect.html">English</a> | <a href="./connect_es.html">Español</a> | <a href="./connect_nl.html">Nederlands</a> | <a href="./connect_pl.html">Polski</a> | <a href="./connect_pt-br.html">Português</a> | <a href="./connect_tr.html">Türkçe</a> | <a href="./connect_uk.html">Українська</a> | <a href="./connect_jp.html">日本語</a> | <a href="./connect_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h1>公共测试网络</h1>
<p>如果你只是想立刻上手使用,而不想搭建物理意义上的网络的话,你可以加入公开的 Reticulum 测试网络。这是一个非正式的用于测试与实验的网络。大部分时间它都会在线,所有人都可以加入。同时,“测试”也意味着没有可用性保障。</p>
<p><strong>请注意!</strong>对于 Reticulum 的日常使用,例如消息传递和其他通信,最好使用社区提供的一个或多个公共入口点。请参阅下一节了解详细信息。</p>
<p>测试网络运行的是最新版的 Reticulum甚至会在正式发布之前更新。有时实验版的 Reticulum 会被部署到测试网络的节点之上,这可能会产生奇怪的行为。如果这些都没让你感到害怕,欢迎通过 TCP 或是 I2P 加入测试网络。</p>
<p>你仅需在 Reticulum 的配置文件中加入以下任意一个界面:</p>
<pre><code># Dublin Hub 的 TCP/IP 界面
[[RNS Testnet Dublin]]
type = TCPClientInterface
enabled = yes
target_host = dublin.connect.reticulum.network
target_port = 4965
# BetweenTheBorders Hub (社区提供) 的 TCP/IP 界面
[[RNS Testnet BetweenTheBorders]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.betweentheborders.com
target_port = 4242
# I2P Hub A 界面
[[RNS Testnet I2P Hub A]]
type = I2PInterface
enabled = yes
peers = g3br23bvx3lq5uddcsjii74xgmn6y5q325ovrkq2zw2wbzbqgbuq.b32.i2p
</code></pre>
<p>测试网络中还有几个 <a href="https://github.com/markqvist/nomadnet">Nomad Network</a> 节点和 <a href="https://github.com/markqvist/lxmf">LXMF</a> 传播节点propagation nodes</p>
<h1>社区入口点</h1>
<p>社区提供了许多可公开访问的 Reticulum 网络入口点。对于日常使用,建议使用这些入口点而不是测试网。</p>
<p>您可以将设备或实例连接到其中一个或多个入口点,以访问它们物理连接的任何 Reticulum 网络。</p>
<p>理想情况下,设置一个您自己的设备可以在本地访问的 Reticulum 传输节点,然后将该传输节点连接到几个公共入口点。这将提供有效的连接和冗余,以防其中任何一个出现故障。</p>
<pre><code># These are community-provided public Reticulum entrypoints
# served over TCP, and available over the public Internet.
[[Sydney RNS]]
type = TCPClientInterface
enabled = true
target_host = sydney.reticulum.au
target_port = 4242
[[dismails TCP Interface]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.dismail.de
target_port = 7822
[[interloper node]]
type = TCPClientInterface
interface_enabled = true
target_host = intr.cx
target_port = 4242
[[The Outpost]]
type = TCPClientInterface
interface_enabled = true
target_host = theoutpost.life
target_port = 4242
[[Beleth RNS Hub]]
type = TCPClientInterface
interface_enabled = true
target_host = rns.beleth.net
target_port = 4242
[[Rocket Tech Hub]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.rocket-tech.net
target_port = 443
[[SparkN0de]]
type = TCPClientInterface
interface_enabled = true
target_host = aspark.uber.space
target_port = 44860
[[Tidudanka.com]]
type = TCPClientInterface
enabled = yes
target_host = reticulum.tidudanka.com
target_port = 37500
[[quad4net tcp]]
type = TCPClientInterface
enabled = yes
target_host = rns.quad4.io
target_port = 4242
[[nisa-node]]
type = TCPClientInterface
enabled = yes
target_host = nisa.cat
target_port = 4242
[[acehoss]]
type = TCPClientInterface
enabled = yes
target_host = rns.acehoss.net
target_port = 4242
[[RNS Testnet StoppedCold]]
type = TCPClientInterface
enabled = yes
target_host = rns.stoppedcold.com
target_port = 4242
[[RNS COMSEC-RD]]
type = TCPClientInterface
enabled = yes
target_host = 80.78.23.249
target_port = 4242
[[R-Net TCP]]
type = TCPClientInterface
enabled = yes
target_host = istanbul.reserve.network
target_port = 9034
[[RNS TCP Node Germany 001]]
type = TCPClientInterface
enabled = true
target_host = 202.61.243.41
target_port = 4965
[[RNS TCP Node Germany 002]]
type = TCPClientInterface
enabled = true
target_host = 193.26.158.230
target_port = 4965
[[Quortal TCP Node]]
type = TCPClientInterface
enabled = true
target_host = reticulum.qortal.link
target_port = 4242
[[mobilefabrik TCP]]
type = TCPClientInterface
enabled = true
target_host = phantom.mobilefabrik.com
target_port = 4242
[[g00n.cloud Hub]]
type = TCPClientInterface
enabled = true
target_host = dfw.us.g00n.cloud
target_port = 6969
[[RNS_Transport_US-East]]
type = TCPClientInterface
interface_enabled = true
target_host = 45.77.109.86
target_port = 4965
[[rothbard_RNS_transport_ZA]]
type = TCPClientInterface
enabled = true
target_host = rothbard.lab.networks.deavmi.assigned.network
target_port = 4242
[[rothbard_RNS_transport_ZA_ygg]]
type = TCPClientInterface
enabled = true
target_host = 200:73eb:2e4:14be:aac7:90b3:784b:71a3
target_port = 4242
[[rothbard_RNS_transport_ZA_i2p]]
type = I2PInterface
enabled = true
peers = guuahj7pyb6ksmjv2bqrjg4cs2wou6cor3ivsi6crntqbzsxnbna.b32.i2p
</code></pre>
<p align="right"><a href="docs_zh-cn.html">下一个主题:阅读手册</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h1>Acknowledgements &amp; Credits</h1>
<p>Reticulum can only exist because of the mountain of Open Source work it was built on top of, the contributions of everyone involved, and everyone that has supported the project through the years. To everyone who has helped, thank you so much.</p>
<p>A number of other modules and projects are either part of, or used by Reticulum. Sincere thanks to the authors and contributors of the following projects:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD License</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> by <a href="https://github.com/warner">Brian Warner</a>, <em>MIT License</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> by <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT License</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> by <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT License</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> by <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> by <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> by Chris Liechti, <em>BSD License</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> by <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT License</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> by Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>BSD License</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> by <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT License</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> by <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>The protocol design and reference implementation for Reticulum was carried out between 2014 and 2022 by Mark Qvist.</p>
<p>The <a href="https://github.com/markqvist/reticulum">Python reference implementation of Reticulum</a> and this website is licensed under the <a href="license.html">Reticulum License</a>. Please <a href="donate.html">donate</a> to support the continued development.</p>
<hr />
<p><center>The Reticulum Protocol is the shared property of all people,<br/>I contribute it to the public domain.<br/><br/>Dedicated with hope and belief in the future<br/>freedom and prosperity of all,<br/>on Earth and beyond.<br/><br/>Thank You</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h1>Danksagungen &amp; Credits</h1>
<p>Reticulum kann nur existieren, weil es auf einem Berg von Open-Source-Arbeiten aufbaut, weil alle Beteiligten dazu beigetragen haben und weil alle, die das Projekt über die Jahre hinweg unterstützt haben. Vielen Dank an alle, die geholfen haben.</p>
<p>Eine Reihe anderer Module und Projekte sind entweder Teil von Reticulum oder werden von Reticulum verwendet. Ein herzliches Dankeschön an die Autoren und Mitwirkenden der folgenden Projekte:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD License</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> by <a href="https://github.com/warner">Brian Warner</a>, <em>MIT License</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> by <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT License</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> by <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT License</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> by <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> by <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> by Chris Liechti, <em>BSD License</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> by <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT License</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> by Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>BSD License</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> by <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT License</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> by <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Das Protokolldesign und die Referenzimplementierung für Reticulum wurden zwischen 2014 und 2022 von Mark Qvist durchgeführt.</p>
<p>Die <a href="https://github.com/markqvist/reticulum">Python Referenzimplementierung von Reticulum</a> und diese Website ist lizenziert unter der <a href="license.html">Reticulum License</a>. Bitte <a href="donate_de.html">Spenden</a> sie zur Unterstützung der weiteren Entwicklung.</p>
<hr />
<p><center>Das Reticulum Protokoll ist das gemeinsame Eigentum aller Menschen,<br/>Ich stelle es der Öffentlichkeit zur Verfügung.<br/><br/>Engagiert mit Hoffnung und Glauben an die Zukunft<br/>Freiheit und Wohlstand für alle,<br/>auf der Erde und darüber hinaus.<br/><br/>Dankeschön</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h1>Agradecimientos y créditos</h1>
<p>Reticulum sólo puede existir gracias a la montaña de código abierto sobre la que se construyó, a las contribuciones de todos los implicados y a todos los que han apoyado el proyecto a lo largo de los años. A todos los que han ayudado, muchas gracias.</p>
<p>Otros módulos y proyectos forman parte o son utilizados por Reticulum. Nuestro más sincero agradecimiento a los autores y colaboradores de los siguientes proyectos:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>Licencia BSD</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> por <a href="https://github.com/warner">Brian Warner</a>, <em>Licencia MIT</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> por <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>Licencia MIT</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> por <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>Licencia MIT</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> por <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> por <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> por Chris Liechti, <em>Licencia BSD</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> por <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>Licencia MIT</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> por Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>Licencia BSD</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> por <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>Licencia MIT</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> por <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>El diseño del protocolo y la implementación de referencia para Reticulum se llevaron a cabo entre 2014 y 2024 por Mark Qvist.</p>
<p>La <a href="https://github.com/markqvist/reticulum">referencia de la implementación de Reticulum en Python</a> y este sitio están licenciados bajo la <a href="license_es.html">Licencia Reticulum</a>. Por favor, <a href="donate_es.html">dona</a> para apoyar el desarrollo.</p>
<hr />
<p><center>El Protocolo de Reticulum es propiedad compartida de todas las personas,<br/>Lo contribuyo al dominio público.<br/><br/>Dedicado con esperanza y fe en el futuro<br/>libertad y prosperidad para todos,<br/>en la Tierra y más allá.<br/><br/>Gracias</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h1>謝辞とクレジット</h1>
<p>Reticulumは、その土台となるオープンソースの膨大な作業、関与するすべての人々の貢献、およびこれまでのプロジェクトへのサポートがあるために存在しています。手伝ってくれたすべての方々に心から感謝します。</p>
<p>Reticulumには他にも多くのモジュールやプロジェクトが含まれており、またはそれらを使用しています。以下のプロジェクトの作者と寄与者に心から感謝します</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a><em>BSDライセンス</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> by <a href="https://github.com/warner">Brian Warner</a><em>MITライセンス</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> by <a href="https://github.com/thomdixon">Thom Dixon</a><em>MITライセンス</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> by <a href="https://github.com/orgurar">Or Gur Arie</a><em>MITライセンス</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> by <a href="https://gist.github.com/nickovs">Nicko van Someren</a><em>パブリックドメイン</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> by <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> by Chris Liechti、<em>BSDライセンス</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> by <a href="https://github.com/al45tair">Alastair Houghton</a><em>MITライセンス</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> by Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright、<em>BSDライセンス</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> by <a href="https://github.com/benjaminp">Benjamin Peterson</a><em>MITライセンス</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> by <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Reticulumのプロトコルデザインおよびリファレンス実装は、2014年から2022年までMark Qvistによって実施されました。</p>
<p><a href="https://github.com/markqvist/reticulum">ReticulumのPythonリファレンス実装</a>およびこのウェブサイトは、<a href="license.html">Reticulumライセンス</a>の下でライセンスされています。継続的な開発をサポートするために、<a href="donate_jp.html">寄付</a>をお願いします。</p>
<hr />
<p><center>Reticulumプロトコルはすべての人々の共有財産です。<br/>私はそれをパブリックドメインに寄贈します。<br/><br/>未来の自由と繁栄に対する希望と信念を込めて<br/>地球とその先に<br/>すべての人々へ感謝します。</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h1>Dankbetuigingen en referenties</h1>
<p>Reticulum kan alleen bestaan dankzij de berg Open Source-werk waarop het is gebouwd, de bijdragen van alle betrokkenen en iedereen die het project door de jaren heen heeft gesteund. Iedereen die geholpen heeft, hartelijk dank.</p>
<p>Een aantal andere modules en projecten maken deel uit van of worden gebruikt door Reticulum. Oprechte dank aan de auteurs en medewerkers van de volgende projecten:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD License</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> by <a href="https://github.com/warner">Brian Warner</a>, <em>MIT License</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> by <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT License</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> by <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT License</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> by <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> by <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> by Chris Liechti, <em>BSD License</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> by <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT License</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> by Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>BSD License</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> by <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT License</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> by <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Het protocolontwerp en de referentie-implementatie voor Reticulum werden tussen 2014 en 2022 uitgevoerd door Mark Qvist.</p>
<p>De <a href="https://github.com/markqvist/reticulum">Python-referentie-implementatie van Reticulum</a> en deze website zijn gelicentieerd onder de <a href="license.html">Reticulum License</a>. <a href="donate_nl.html">Doneer</a> om de voortdurende ontwikkeling te ondersteunen.</p>
<hr />
<p><center>Het Reticulum Protocol is het gedeelde eigendom van alle mensen,<br/>Ik draag het bij aan het publieke domein.<br/><br/>Toegewijd met hoop en geloof in de toekomst<br/>vrijheid en welvaart van allemaal,<br/>op aarde en daarbuiten.<br/><br/>Bedankt</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h1>Podziękowania &amp; Zasługi</h1>
<p>Reticulum może istnieć tylko dzięki górze pracy Open Source, na której zostało zbudowane, dzięki wkładowi wszystkich zaangażowanych osób i wszystkich, którzy wspierali projekt przez lata. Wszystkim, którzy pomogli, bardzo dziękuję.</p>
<p>Wiele innych modułów i projektów jest częścią lub jest wykorzystywanych przez Reticulum. Szczere podziękowania dla autorów i współtwórców następujących projektów:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>Licencja BSD</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> przez <a href="https://github.com/warner">Brian Warner</a>, <em>Licencja MIT</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> przez <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>Licencja MIT</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> przez <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>Licencja MIT</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> przez <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Domena Publiczna</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> przez <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> przez Chris Liechti, <em>Licencja BSD</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> przez <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>Licencja MIT</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> przez Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>Licencja BSD</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> przez <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>Licencja MIT</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> przez <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Projekt protokołu i wdrożenie referencyjne dla Reticulum zostało zrealizowane w latach 2014-2022 przez Marka Qvista.</p>
<p><a href="https://github.com/markqvist/reticulum">Implementacja referencji dla języka Python</a> oraz ta strona są opubliowanie na <a href="license.html">Licencji Reticulum</a>. Proszę przekaż <a href="donate_pl.html">darowiznę</a>, żeby wesprzeć dalszy rozwój projektu.</p>
<hr />
<p><center>Protokół Reticulum jest wspólną własnością wszystkich ludzi,<br/>Przekazuję go do domeny publicznej.<br/><br/>Dedykowany z nadzieją i wiarą w przyszłość<br/>wolność i dobrobyt wszystkich,<br/>na Ziemi i poza nią.<br/><br/>Dziękuję</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h1>Reconhecimentos e Créditos</h1>
<p>Reticulum só foi possível graças a montanha de trabalho Código Aberto para o projeto, as contribuições de todos envolvidos e todos que apoiaram o projeto por esses anos. Para todos que ajudaram, muito obrigado.</p>
<p>Uma lista de outros modelos e projetos são parte disso ou utilizado no Reticulum, Agradecimentos sinceros para os autores e contribuidores dos seguinte projetos:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD License</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> por <a href="https://github.com/warner">Brian Warner</a>, <em>MIT License</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> por <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT License</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> por <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT License</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> por <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> por <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> por Chris Liechti, <em>BSD License</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> por <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT License</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> por Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>BSD License</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> por <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT License</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> por <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>O design do protocolo e implementação de referência foram desenvolvidos entre 2014 e 2022 por Mark Qvist.</p>
<p>A <a href="https://github.com/markqvist/reticulum">implementação Python referencial do Reticulum</a> e seu site utilizam a <a href="https://reticulum.network/license.html">licença Reticulum</a>. Por favor considere uma <a href="donate.html">doação</a> para ajudar a continuar o projeto.</p>
<hr />
<p><center>O Protocolo Reticulum é de propriedade de todas as pessoas,<br/>Eu contribuo para o domínio público.<br/><br/>Dedicado com a esperança e crença na liberdade futura e prosperidade para todos,<br/>na Terra e além.<br/><br/>Obrigado</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h1>Teşekkürler &amp; Saygılar</h1>
<p>Reticulum, üzerine inşa edildiği Açık Kaynak çalışmalarının dağının ve yıllar boyunca projeye destek olan herkesin katkıları sayesinde var olabilir. Yardım eden herkese çok teşekkür ederiz.</p>
<p>Reticulum'a ait birçok diğer modül ve proje ya Reticulum'un bir parçasıdır ya da onun tarafından kullanılmaktadır. Aşağıdaki projelerin yazarlarına ve katkıda bulunanlarına içten teşekkürler:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD Lisansı</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> by <a href="https://github.com/warner">Brian Warner</a>, <em>MIT Lisansı</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> by <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT Lisansı</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> by <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT Lisansı</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> by <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Genel Kamu Malı</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> by <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> by Chris Liechti, <em>BSD Lisansı</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> by <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT Lisansı</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> by Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>BSD Lisansı</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> by <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT Lisansı</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> by <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Reticulum'un protokol tasarımı ve referans uygulaması, 2014 ile 2022 yılları arasında Mark Qvist tarafından gerçekleştirildi.</p>
<p><a href="https://github.com/markqvist/reticulum">Reticulum'un Python referans uygulaması</a> ve bu web sitesi <a href="license.html">Reticulum Lisansı</a> altında lisanslanmıştır. Lütfen devam eden geliştirmeyi desteklemek için <a href="donate_tr.html">bağış</a> yapın.</p>
<hr />
<p><center>Reticulum Protokolü, tüm insanların ortak mülkiyetidir,<br/>O toplumsal alana katkıda bulunmak için üretildi.<br/><br/>Gelecekteki özgürlük ve refah<br/>umut ve inancıyla oluşturuldu,<br/>Dünya ve ötesinde.<br/><br/>Hepinize Teşekkür Ederim</center></p>
<hr />
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h1>Подяки та кредити</h1>
<p>Reticulum може існувати тільки завдяки великій кількості відкритого програмного забезпечення, на якому він був побудований, внескам всіх, хто брав участь, і всім, хто підтримував проєкт протягом багатьох років. Усім, хто допомагав, велике спасибі.</p>
<p>Чимало інших модулів та проєктів є частинами або використовуються Reticulum. Щира подяка авторам і контриб'юторам наступних проєктів:</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD License</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> від <a href="https://github.com/warner">Brian Warner</a>, <em>MIT License</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> від <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT License</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> від <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT License</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> від <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> від <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> від Chris Liechti, <em>BSD License</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> від <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT License</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> від Michael Foord, Nicola Larosa, Rob Dennis та Eli Courtwright, <em>BSD License</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> від <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT License</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> від <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Проєктування протоколу та його референс-імплементація для Reticulum здійснювались з 2014 по 2022 рік Маркусом Квістом.</p>
<p><a href="https://github.com/markqvist/reticulum">Python референс-імплементація Reticulum</a> та цей вебсайт ліцензовані за умовами <a href="license.html">Reticulum License</a>. Будь ласка, <a href="donate.html">пожертвуйте</a>, щоб підтримати подальший розвиток.</p>
<hr />
<p><center>Протокол Reticulum є спільною власністю всіх людей,<br/>я віддаю його в публічне надбання.<br/><br/>Присвячую з надією і вірою в майбутнє,<br/>свободу і процвітання всіх,<br/>на Землі й за її межами.<br/><br/>Дякую</center></p>
<hr />
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./credits_de.html">Deutsch</a> | <a href="./credits.html">English</a> | <a href="./credits_es.html">Español</a> | <a href="./credits_nl.html">Nederlands</a> | <a href="./credits_pl.html">Polski</a> | <a href="./credits_pt-br.html">Português</a> | <a href="./credits_tr.html">Türkçe</a> | <a href="./credits_uk.html">Українська</a> | <a href="./credits_jp.html">日本語</a> | <a href="./credits_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h1>致谢与署名</h1>
<p>Reticulum 站在巨人的肩膀上。没有前人移山般的开源工作、多位贡献者的参与以及各位对本项目的支持Reticulum 就不可能存在。非常感谢每一位帮助过这个项目的人。</p>
<p>Reticulum 用到了一系列模块与项目。在这里,对以下项目的作者与贡献者致以诚挚的感谢。</p>
<ul>
<li><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>, <em>BSD License</em></li>
<li><a href="https://github.com/warner/python-pure25519">Pure-25519</a> by <a href="https://github.com/warner">Brian Warner</a>, <em>MIT License</em></li>
<li><a href="https://github.com/thomdixon/pysha2">Pysha2</a> by <a href="https://github.com/thomdixon">Thom Dixon</a>, <em>MIT License</em></li>
<li><a href="https://github.com/orgurar/python-aes">Python-AES</a> by <a href="https://github.com/orgurar">Or Gur Arie</a>, <em>MIT License</em></li>
<li><a href="https://gist.github.com/nickovs/cc3c22d15f239a2640c185035c06f8a3#file-curve25519-py">Curve25519.py</a> by <a href="https://gist.github.com/nickovs">Nicko van Someren</a>, <em>Public Domain</em></li>
<li><a href="https://github.com/l-n-s/i2plib">I2Plib</a> by <a href="https://github.com/l-n-s">Viktor Villainov</a></li>
<li><a href="https://github.com/pyserial/pyserial">PySerial</a> by Chris Liechti, <em>BSD License</em></li>
<li><a href="https://github.com/al45tair/netifaces">Netifaces</a> by <a href="https://github.com/al45tair">Alastair Houghton</a>, <em>MIT License</em></li>
<li><a href="https://github.com/DiffSK/configobj">Configobj</a> by Michael Foord, Nicola Larosa, Rob Dennis &amp; Eli Courtwright, <em>BSD License</em></li>
<li><a href="https://github.com/benjaminp/six">Six</a> by <a href="https://github.com/benjaminp">Benjamin Peterson</a>, <em>MIT License</em></li>
<li><a href="https://github.com/vsergeev/u-msgpack-python">Umsgpack.py</a> by <a href="https://github.com/vsergeev">Ivan A. Sergeev</a></li>
<li><a href="https://www.python.org">Python</a></li>
</ul>
<p>Reticulum 的协议设计与参考实现是由 Mark Qvist 于 2014-2022 进行的。</p>
<p>Reticulum 的 <a href="https://github.com/markqvist/reticulum">Python 参考实现</a> 以及这个网站均为 <a href="license.html">Reticulum 授权</a>。若想支持 Reticulum 的开发,欢迎<a href="donate_zh-cn.html">捐赠</a></p>
<hr />
<p><center>Reticulum 协议是人类的共有财产<br/>我将其贡献至公有领域<br/><br/>带着期许与信念面向未来<br/>看那自由与繁荣之花<br/>开满世间大地<br/><br/>谢谢各位</center></p>
<hr />
<p><br/><br/></p>
</body>
</html>

View File

@ -1,38 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h1>Cryptographic Primitives</h1>
<p>Reticulum uses a simple suite of efficient, strong and well-tested cryptographic primitives, with widely available implementations that can be used both on general-purpose CPUs and on microcontrollers.</p>
<p>One of the primary considerations for choosing this particular set of primitives is that they can be implemented <em>safely</em> with relatively few pitfalls, on practically all current computing platforms.</p>
<p>The primitives listed here <strong>are authoritative</strong>. Anything claiming to be Reticulum, but not using these exact primitives <strong>is not</strong> Reticulum, and possibly an intentionally compromised or weakened clone. The utilised primitives are:</p>
<ul>
<li>Ed25519 for signatures</li>
<li>X22519 for ECDH key exchanges</li>
<li>HKDF for key derivation</li>
<li>AES-128 in CBC mode</li>
<li>AES-256 in CBC mode</li>
<li>HMAC-SHA256 for message authentication</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>In the default installation configuration, the <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> and <code>AES-256-CBC</code> primitives are provided by <a href="https://www.openssl.org/">OpenSSL</a> (via the <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a> package). The hashing functions <code>SHA-256</code> and <code>SHA-512</code> are provided by the standard Python <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. The <code>HKDF</code>, <code>HMAC</code>, <code>Token</code> primitives, and the <code>PKCS7</code> padding function are always provided by the following internal implementations:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum also includes a complete implementation of all necessary primitives in pure Python. If OpenSSL &amp; PyCA are not available on the system when Reticulum is started, Reticulum will instead use the internal pure-python primitives. A trivial consequence of this is performance, with the OpenSSL backend being <em>much</em> faster. The most important consequence however, is the potential loss of security by using primitives that has not seen the same amount of scrutiny, testing and review as those from OpenSSL.</p>
<p>If you want to use the internal pure-python primitives, it is <strong>highly advisable</strong> that you have a good understanding of the risks that this pose, and make an informed decision on whether those risks are acceptable to you.</p>
<p>Reticulum is relatively young software, and should be considered as such. While it has been built with cryptography best-practices very foremost in mind, it <em>has not</em> been externally security audited, and there could very well be privacy or security breaking bugs. If you want to help out, or help sponsor an audit, please do get in touch.</p>
<p align="right"><a href="credits.html">Next Topic: Acknowledgements & Credits</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h1>Kryptographische Primitive</h1>
<p>Reticulum verwendet eine einfache Reihe von effizienten, starken und modernen kryptographischen Primitiven mit weithin verfügbaren Implementierungen, die sowohl auf Allzweck-CPUs als auch auf Mikrocontrollern verwendet werden können. Die notwendigen Primitive sind:</p>
<ul>
<li>Ed25519 für Signaturen</li>
<li>X22519 für ECDH Schlüsselaustausch</li>
<li>HKDF für die Schlüsselableitung</li>
<li>AES-128 im CBC modus</li>
<li>AES-256 im CBC modus</li>
<li>HMAC-SHA256 für die Nachrichtenauthentifizierung</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>In der Standard-Installationskonfiguration werden die Primitive <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> und <code>AES-256-CBC</code> von <a href="https://www.openssl.org/">OpenSSL</a> (mit dem <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a> Packet mitgebracht). Die Hashing-Funktionen <code>SHA-256</code> und <code>SHA-512</code> werden vom Standard-Python bereitgestellt <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. Die <code>HKDF</code>, <code>HMAC</code>, <code>Token</code> Primitive, und die <code>PKCS7</code> Auffüllfunktion werden immer von den folgenden internen Implementierungen bereitgestellt:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum enthält außerdem eine vollständige Implementierung aller erforderlichen Primitive in reinem Python. Wenn OpenSSL und PyCA beim Start von Reticulum nicht auf dem System verfügbar sind, verwendet Reticulum stattdessen die internen reinen Python-Primitive. Eine triviale Folge hiervon ist die Leistung, da das OpenSSL-Backend <em>viel</em> schneller ist. Die wichtigste Konsequenz ist jedoch der potenzielle Verlust an Sicherheit durch die Verwendung von Primitiven, die nicht in gleichem Maße wie die von OpenSSL untersucht, getestet und geprüft wurden.</p>
<p>Wenn Sie die internen reinen Python-Primitive verwenden wollen, ist es <strong>sehr ratsam</strong>, dass Sie die damit verbundenen Risiken gut verstehen und eine fundierte Entscheidung darüber treffen, ob diese Risiken für Sie akzeptabel sind.</p>
<p>Reticulum ist eine relativ junge Software, die als solche betrachtet werden sollte. Obwohl es unter Berücksichtigung der besten Kryptographie-Praktiken entwickelt wurde, ist es <em>nicht</em> extern sicherheitsgeprüft worden, und es könnte sehr wohl Fehler enthalten, die den Datenschutz oder die Sicherheit verletzen. Wenn Sie mithelfen oder ein Audit sponsern wollen, nehmen Sie bitte Kontakt auf.</p>
<p align="right"><a href="credits_de.html">Nächstes Thema: Danksagungen & Credits</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h1>Primitivas Criptográficas</h1>
<p>Reticulum utiliza un conjunto sencillo de primitivas criptográficas eficientes, potentes y modernas, con implementaciones ampliamente disponibles que pueden utilizarse tanto en CPU's de propósito general como en microcontroladores. Las primitivas necesarias son:</p>
<ul>
<li>Ed25519 para firmas</li>
<li>X22519 para cambios de llaves ECDH</li>
<li>HKDF para derivación de llaves</li>
<li>AES-128 en modo CBC</li>
<li>AES-256 en modo CBC</li>
<li>HMAC-SHA256 para autenticación de mensajes</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>En la configuración de la instalación por defecto, las primitivas <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> y <code>AES-256-CBC</code> son proporcionadas por <a href="https://www.openssl.org/">OpenSSL</a> (a través del paquete <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>). Las funciones hash <code>SHA-256</code> y <code>SHA-512</code> las proporciona el paquete estándar de Python <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. Las primitivas <code>HKDF</code>, <code>HMAC</code>, <code>Token</code> y la función de <em>padding</em> <code>PKCS7</code> son siempre proporcionadas por las siguientes implementaciones internas:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum también incluye una implementación completa de todas las primitivas necesarias en Python puro. Si OpenSSL y PyCA no están disponibles en el sistema cuando se inicia Reticulum, éste utilizará en su lugar las primitivas internas de Python puro. Una consecuencia trivial de esto es el rendimiento, ya que el backend de OpenSSL es <em>mucho</em> más rápido. Sin embargo, la consecuencia más importante es la pérdida potencial de seguridad al utilizar primitivas que no han sido sometidas a la misma cantidad de escrutinio, pruebas y revisiones que las de OpenSSL.</p>
<p>Si desea utilizar las primitivas internas de Python puro, es <strong>altamente recomendable</strong> que usted tenga una buena comprensión de los riesgos que esto plantea, y tome una decisión informada sobre si esos riesgos son aceptables para usted.</p>
<p>Reticulum es un software relativamente joven y debe ser considerado como tal. Aunque se ha construido teniendo muy presentes las mejores prácticas criptográficas, <em>no</em> ha sido auditado externamente en materia de seguridad y es muy posible que haya errores que rompan la privacidad o la seguridad. Si queres ayudar o patrocinar una auditoría, ponete en contacto con nosotros.</p>
<p align="right"><a href="credits_es.html">Siguiente tema: Agradecimientos y créditos</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h1>暗号プリミティブ</h1>
<p>Reticulumは、効率的で強力かつ現代的な暗号プリミティブのシンプルなスイートを使用しています。これらは、一般的な用途のCPUおよびマイクロコントローラーの両方で使用できる広く利用可能な実装を備えています。必要なプリミティブには以下が含まれます</p>
<ul>
<li>署名用のEd25519</li>
<li>ECDH鍵交換用のX22519</li>
<li>鍵導出用のHKDF</li>
<li>CBCモードでのAES-128</li>
<li>CBCモードでのAES-256</li>
<li>メッセージ認証用のHMAC-SHA256</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>デフォルトのインストール構成では、<code>X25519</code><code>Ed25519</code><code>AES-128-CBC</code>、および<code>AES-256-CBC</code>のプリミティブは<a href="https://www.openssl.org/">OpenSSL</a><a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>パッケージを介して)によって提供されます。ハッシュ関数<code>SHA-256</code>および<code>SHA-512</code>は、標準のPython <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>によって提供されています。<code>HKDF</code><code>HMAC</code><code>Token</code>プリミティブ、および<code>PKCS7</code>パディング関数は、常に次の内部実装によって提供されます:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulumには、すべての必要なプリミティブの純粋なPythonによる完全な実装も含まれています。Reticulumが開始されるときにシステムにOpenSSLPyCAが利用できない場合、Reticulumは代わりに内部の純粋なPythonプリミティブを使用します。これの取り決めの一因はパフォーマンスであり、OpenSSLバックエンドが非常に速いことです。しかし、最も重要な結果は、OpenSSLと同じくらいの精査、テスト、およびレビューを受けていないプリミティブを使用することによるセキュリティの潜在的な損失です。</p>
<p>内部の純粋なPythonプリミティブを使用したい場合は、このリスクが許容できるかどうかを検討し、よく理解した上で情報を得ることが<strong>強くお勧め</strong>されます。</p>
<p>Reticulumは比較的新しいソフトウェアであり、それに準じて考えるべきです。暗号化のベストプラクティスを非常に重視して構築されていますが、外部からのセキュリティ監査はまだ行われておらず、プライバシーやセキュリティを崩壊させる可能性があります。協力したり、監査をスポンサーしたりしたい場合は、どうぞお知らせください。</p>
<p align="right"><a href="credits_jp.html">次のトピック: 謝辞とクレジット</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h1>Cryptografische primitieven</h1>
<p>Reticulum maakt gebruik van een eenvoudige reeks efficiënte, sterke en moderne cryptografische primitieven, met algemeen beschikbare implementaties die zowel op CPU's voor algemene doeleinden als op microcontrollers kunnen worden gebruikt. De noodzakelijke primitieven zijn:</p>
<ul>
<li>Ed25519 voor handtekeningen</li>
<li>X22519 voor ECDH-sleuteluitwisselingen</li>
<li>HKDF voor sleutelafleiding</li>
<li>AES-128 in CBC-modus</li>
<li>AES-256 in CBC-modus</li>
<li>HMAC-SHA256 voor berichtauthenticatie</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>In de standaard installatieconfiguratie worden de primitieven <code>X25519</code>, <code>Ed25519</code>, <code>AES-256-CBC</code> en <code>AES-128-CBC</code> geleverd door <a href="https://www.openssl.org/">OpenSSL</a> (via het <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a> pakket). De hashfuncties <code>SHA-256</code> and <code>SHA-512</code> worden geleverd door de standaard Python <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. De <code>HKDF</code>, <code>HMAC</code>, <code>Token</code> primitieven en de <code>PKCS7</code> opvullingsfunctie worden altijd geleverd door de volgende interne implementaties:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum bevat ook een volledige implementatie van alle benodigde primitieven in pure Python. Als OpenSSL en PyCA niet beschikbaar zijn op het systeem wanneer Reticulum wordt gestart, zal Reticulum in plaats daarvan de interne pure-python-primitieven gebruiken. Een triviaal gevolg hiervan zijn de prestaties, waarbij de OpenSSL-backend <em>veel</em> sneller is. Het belangrijkste gevolg is echter het potentiële verlies aan veiligheid door het gebruik van primitieven die niet dezelfde hoeveelheid onderzoek, testen en beoordeling hebben ondergaan als die van OpenSSL.</p>
<p>Als u de interne pure Python-primitieven wilt gebruiken, is het <strong>zeer aan te raden</strong> dat u een goed inzicht heeft in de risico's die dit met zich meebrengt, en een weloverwogen beslissing neemt of deze risico's voor u acceptabel zijn.</p>
<p>Reticulum is relatief jonge software en moet als zodanig worden beschouwd. Hoewel het is gebouwd met de best practices op het gebied van cryptografie in het achterhoofd, is er geen externe beveiligingsaudit uitgevoerd en kunnen er bugs in zitten die de privacy of de beveiliging schenden. Als u wilt helpen of een audit wilt sponsoren, neem dan contact met ons op.</p>
<p align="right"><a href="credits_nl.html">Volgend onderwerp: dankbetuigingen en referenties</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h1>Prymitywy kryptograficzne</h1>
<p>Reticulum wykorzystuje prosty zestaw wydajnych, silnych i nowoczesnych prymitywów kryptograficznych, z szeroko dostępnymi implementacjami, które mogą być używane zarówno na procesorach ogólnego przeznaczenia, jak i na mikrokontrolerach. Niezbędne prymitywy to:</p>
<ul>
<li>Ed25519 dla sygnatur</li>
<li>X22519 dla wymiany kluczy ECDH</li>
<li>HKDF dla wyodrębnienia klucza</li>
<li>AES-128 w trybie CBC</li>
<li>AES-256 w trybie CBC</li>
<li>HMAC-SHA256 dla uwierzytelnienia wiadomości</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>W domyślnej konfiguracji instalacji, prymitywy <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> i <code>AES-256-CBC</code> są dostarczone przez <a href="https://www.openssl.org/">OpenSSL</a> (przez pakiet <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>). Funkcja hashu <code>SHA-256</code> i <code>SHA-512</code> są dostarczone przez standard Pythona <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. Prymitywy <code>HKDF</code>, <code>HMAC</code>, <code>Token</code> i funkcja padding <code>PKCS7</code> są zawsze dostarczane przez następujące wewnętrzne implementacje:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum zawiera również kompletną implementację wszystkich niezbędnych prymitywów w czystym Pythonie. Jeśli OpenSSL i PyCA nie są dostępne w systemie podczas uruchamiania Reticulum, Reticulum użyje wewnętrznych prymitywów w czystym Pythonie. Trywialną konsekwencją tego jest wydajność, backend OpenSSL jest <em>znacznie</em> szybszy. Najważniejszą konsekwencją jest jednak potencjalna utrata bezpieczeństwa poprzez użycie prymitywów, które nie zostały poddane takiej samej analizie, testom i przeglądom jak te z OpenSSL.</p>
<p>Jeśli chcesz używać wewnętrznych czystych prymitywów pythona, jest <strong>bardzo wskazane</strong>, abyś dobrze rozumiał ryzyko, jakie to stwarza, i podjął świadomą decyzję, czy to ryzyko jest dla ciebie do przyjęcia.</p>
<p>Reticulum jest stosunkowo młodym oprogramowaniem i powinno być traktowane jako takie. Chociaż zostało zbudowane z myślą o najlepszych praktykach kryptograficznych, <em>nie zostało</em> poddane zewnętrznemu audytowi bezpieczeństwa i bardzo możliwe, że zawiera błędy naruszające prywatność lub bezpieczeństwo. Jeśli chcesz pomóc lub zasponsorować audyt, skontaktuj się ze mną.</p>
<p align="right"><a href="credits_pl.html">Next Topic: Podziękowania & Zasługi</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h1>Primitivos Criptográficos</h1>
<p>Reticulum utiliza uma suíte simples de primitivos criptográficos modernos, fortes e eficientes, com diversas implementações disponíveis que pode ser utilizados tanto em CPUs convencionais como microcontroladores. Os primitivos necessários são:</p>
<ul>
<li>Ed25519 para assinaturas</li>
<li>X22519 para trocas de chave ECDH</li>
<li>HKDF para derivação de chaves</li>
<li>AES-128 em modo CBC</li>
<li>AES-256 em modo CBC</li>
<li>HMAC-SHA256 para autenticação de mensagem</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>Na configuração de instalação padrão, os primitivos <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> e <code>AES-256-CBC</code> são fornecidos pela <a href="https://www.openssl.org/">OpenSSL</a> (pelo pacote <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a> ). As funções de hash <code>SHA-256</code> e <code>SHA-512</code> são fornecidas pela biblioteca Python <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. Os primitivos <code>HKDF</code>, <code>HMAC</code>, <code>Token</code>, e a função de preenchimento <code>PKCS7</code> são sempre fornecidas pelas seguintes implementações internas:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum também incluí a implementação completa de todos os primitivos necessários em Python puro. Se o OpenSSL &amp; PyCA não estão disponíveis no sistema que o Reticulum é iniciado, Reticulum vai utilizar os primitivos internos. A consequência trivial disso é o desempenho, com a biblioteca OpenSSL sendo mais rápida. A consequência mais importante no entanto, é a potencial perda de segurança por utilizar primitivos que não possuem o mesmo nível de suporte, teste e revisão que o OpenSSL.</p>
<p>Se você quer utilizar primitivos internos em Python, é aconselhável que você entenda os riscos envolvidos, e tome uma decisão informada conforme os ricos são aceitáveis para você.</p>
<p>Reticulum é um software relativamente jovem, e deve ser considerado como tal. Enquanto ele é desenvolvido com as melhores práticas de criptografia em mente, ainda não foi auditado externamente, e pode haver bugs para segurança e privacidade. Se você quer ajudar, ou patrocinar uma auditoria, nos informe.</p>
<p align="right"><a href="credits_pt-br.html">Próxima Página: Agradecimentos & Créditos</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h1>Şifreleme Temelleri</h1>
<p>Reticulum, genel amaçlı CPU'lerde ve mikrodenetleyicilerde kullanılabilen yaygın olarak bulunan uygulamalara sahip, etkili, güçlü ve modern bir şifreleme temel paketi kullanır. Gerekli temel öğeler şunlardır:</p>
<ul>
<li>Dijital İmzalar için Ed25519</li>
<li>ECDH anahtar değişimleri için X22519</li>
<li>Anahtar oluşturmak için HKDF</li>
<li>CBC modunda AES-128</li>
<li>CBC modunda AES-256</li>
<li>Mesaj doğrulama için HMAC-SHA256</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>Varsayılan kurulum yapılandırmasında, <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> ve <code>AES-256-CBC</code> temel öğeleri, <a href="https://www.openssl.org/">OpenSSL</a> (aracılığıyla <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a> paketi üzerinden) tarafından sağlanır. Karma fonksiyonları <code>SHA-256</code> ve <code>SHA-512</code>, standart Python <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a> tarafından sağlanır. <code>HKDF</code>, <code>HMAC</code>, <code>Token</code> temel öğeleri ve <code>PKCS7</code> dolgu fonksiyonu her zaman şu içsel uygulamalar tarafından sağlanır:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum ayrıca tüm gerekli temel öğelerin saf Python'da tam bir uygulamasını içerir. Reticulum başlatıldığında sistemde OpenSSL ve PyCA kullanılamıyorsa, Reticulum bunun yerine içsel saf Python temel öğelerini kullanacaktır. Bu durumun basit bir sonucu performanstır, çünkü OpenSSL <em>çok</em> daha hızlıdır. Ancak, en önemli sonuç, OpenSSL'den daha az inceleme, test ve gözden geçirme görmemiş temellerin kullanılmasıyla güvenlik kaybının potansiyelidir.</p>
<p>Eğer içsel saf Python temel öğelerini kullanmak istiyorsanız, bunun getirdiği riskleri iyi anlamanız ve bu risklerin sizin için kabul edilebilir olup olmadığına dair bilinçli bir karar vermeniz <strong>son derece tavsiye edilir</strong>.</p>
<p>Reticulum nispeten genç bir yazılımdır ve buna göre değerlendirilmelidir. Kriptografi en iyi uygulamaları gözetilerek inşa edilmiş olmasına rağmen, dış güvenlik denetimi yapılmamıştır ve gizlilik veya güvenlik ihlali yapabilecek hatalar olabilir. Yardımcı olmak veya maddi açıdan bir güvenlik denetimi yapılmasını desteklemek istiyorsanız, lütfen iletişime geçin.</p>
<p align="right"><a href="credits_tr.html">Sonraki Konu: Teşekkürler ve Saygılar</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h1>Криптографічні примітиви</h1>
<p>Reticulum використовує простий набір ефективних, надійних і сучасних криптографічних примітивів, з широко доступними імплементаціями, які можна використовувати як на загальновживаних процесорах, так і на мікроконтролерах. Необхідні примітиви:</p>
<ul>
<li>Ed25519 для підписів</li>
<li>X22519 для ECDH обміну ключами</li>
<li>HKDF для виведення ключів</li>
<li>AES-128 у режимі CBC</li>
<li>AES-256 у режимі CBC</li>
<li>HMAC-SHA256 для аутентифікації повідомлень</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>У стандартній конфігурації установки примітиви <code>X25519</code>, <code>Ed25519</code>, <code>AES-128-CBC</code> і <code>AES-256-CBC</code> надаються <a href="https://www.openssl.org/">OpenSSL</a> (через пакет <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>). Функції хешування <code>SHA-256</code> і <code>SHA-512</code> надаються стандартною бібліотекою Python <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a>. Примітиви <code>HKDF</code>, <code>HMAC</code>, <code>Token</code>, а також функція паддінгу <code>PKCS7</code> завжди надаються наступними внутрішніми імплементаціями:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum також включає повну імплементацію всіх необхідних примітивів на чистому Python. Якщо OpenSSL і PyCA недоступні на системі під час запуску Reticulum, то замість них будуть використані внутрішні чисто-python примітиви. Легким наслідком цього є продуктивність, причому бекенд OpenSSL працює <em>набагато</em> швидше. Однак найважливіший наслідок полягає в потенційній втраті безпеки через використання примітивів, які не були піддані такій самій перевірці, тестуванню та огляду, як ті, що надаються OpenSSL.</p>
<p>Якщо ви хочете використовувати внутрішні чисто-python примітиви, <strong>вкрай рекомендується</strong> добре розуміти ризики, які вони несуть, і приймати обґрунтоване рішення щодо того, чи є ці ризики для вас прийнятними.</p>
<p>Reticulum — це відносно молода програма, і її слід розглядати саме як таку. Хоча вона була створена з урахуванням найкращих практик криптографії, вона <em>не проходила</em> зовнішнього аудиту безпеки, і цілком ймовірно, що існують помилки, які можуть зламати конфіденційність або безпеку. Якщо ви хочете допомогти або спонсорувати аудит, будь ласка, зв'яжіться з нами.</p>
<p align="right"><a href="credits.html">Наступна тема: Подяки та кредити</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./crypto_de.html">Deutsch</a> | <a href="./crypto.html">English</a> | <a href="./crypto_es.html">Español</a> | <a href="./crypto_nl.html">Nederlands</a> | <a href="./crypto_pl.html">Polski</a> | <a href="./crypto_pt-br.html">Português</a> | <a href="./crypto_tr.html">Türkçe</a> | <a href="./crypto_uk.html">Українська</a> | <a href="./crypto_jp.html">日本語</a> | <a href="./crypto_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h1>密码学原语</h1>
<p>Reticulum 使用了一系列高效、健壮、现代的密码学原语(cryptographic primitives)。它们都有着被广泛使用的现成的实现,且在一般的 CPU 或是微控制器上都可以运行。这些必要的原语是:</p>
<ul>
<li>Ed25519 用于签名</li>
<li>X22519 用于 ECDH 密钥交换</li>
<li>HKDF 用于密钥派生</li>
<li>AES-128 CBC 模式</li>
<li>AES-256 CBC 模式</li>
<li>HMAC-SHA256 用于消息认证</li>
<li>SHA-256</li>
<li>SHA-512</li>
</ul>
<p>在默认安装下,<code>X25519</code><code>Ed25519</code><code>AES-128-CBC</code><code>AES-256-CBC</code> 都由 <a href="https://www.openssl.org/">OpenSSL</a> 提供(通过 <a href="https://github.com/pyca/cryptography">PyCA/cryptography</a>)。散列函数 <code>SHA-256</code><code>SHA-512</code> 由 Python 标准库 <a href="https://docs.python.org/3/library/hashlib.html">hashlib</a> 提供。<code>HKDF</code><code>HMAC</code><code>Token</code> 原语与 <code>PKCS7</code> 填充函数总是由以下内部实现提供:</p>
<ul>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HKDF.py">HKDF.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/HMAC.py">HMAC.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/Token.py">Token.py</a></li>
<li><a href="https://github.com/markqvist/Reticulum/blob/master/RNS/Cryptography/PKCS7.py">PKCS7.py</a></li>
</ul>
<p>Reticulum 还包含了所有所需密码学原语的纯 Python 实现。如果 OpenSSL 和 PyCA 在系统上不可用的话Reticulum 会使用自带的纯 Python 实现。这时最明显的影响是速度——OpenSSL作为后端会<em>快的多</em>。然而最严重的后果可能是使用这些实现带来的安全性问题,毕竟它们没有经受过与 OpenSSL 同级别的安全审查、测试与评估。</p>
<p>如果你想使用自带的纯 Python 实现,我十分建议你先充分了解可能的风险,并仔细思考这些风险是否适用于你。</p>
<p>Reticulum 目前还十分年轻,这一点必须牢记于心。虽说 Reticulum 的开发尽量遵守了密码学的最佳实践,但它<em>还没有</em>受过外部的安全审计,而且很可能会有破坏隐私或是安全性的 Bug。如果你愿意帮忙或是愿意赞助进行安全审计欢迎联系开发者。</p>
<p align="right"><a href="credits_zh-cn.html">下一个主题: 致谢与署名</a></p>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h1>Read The Manual</h1>
<p>You can browse full documentation for Reticulum <a href="manual/index.html">on this site</a> or <a href="https://markqvist.github.io/Reticulum/manual/">on GitHub Pages</a>.</p>
<p>You can also <a href="manual/Reticulum%20Manual.pdf">download the Reticulum manual as a PDF</a> or in <a href="manual/Reticulum%20Manual.epub">EPUB format</a>.</p>
<p align="right"><a href="crypto.html">Next Topic: Cryptographic Primitives</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h1>Lesen Sie das Handbuch</h1>
<p>Die vollständige Dokumentation zu Reticulum finden Sie hier <a href="manual/index.html">Auf dieser Seite</a> oder <a href="https://markqvist.github.io/Reticulum/manual/">auf den GitHub Seiten</a>.</p>
<p>Sie können auch <a href="manual/Reticulum%20Manual.pdf">das Reticulum-Handbuch als PDF</a> oder <a href="manual/Reticulum%20Manual.epub">EPUB</a> herunterladen.</p>
<p align="right"><a href="crypto_de.html">Nächstes Thema: Kryptographische Primitive</a></p>
</body>
</html>

View File

@ -1,18 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h1>Leer el manual</h1>
<p>Puede consultar la documentación completa de Reticulum <a href="manual/index.html">en este sitio</a> o <a href="https://markqvist.github.io/Reticulum/manual/">en GitHub Pages</a>.</p>
<p>También puede <a href="manual/Reticulum%20Manual.pdf">descargar el manual de Reticulum en formato PDF</a> o en <a href="manual/Reticulum%20Manual.epub">formato EPUB</a>.</p>
<p>Por el momento sólo está disponible en Inglés.</p>
<p align="right"><a href="crypto_es.html">Ooootro tema: Primitivas criptográficas</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h1>マニュアルを読む</h1>
<p>Reticulumの完全なドキュメンテーションは、<a href="manual/index.html">このサイト</a>または<a href="https://markqvist.github.io/Reticulum/manual/">GitHub Pages</a>で閲覧できます。</p>
<p><a href="manual/Reticulum%20Manual.pdf">ReticulumマニュアルをPDFでダウンロード</a>するか、<a href="manual/Reticulum%20Manual.epub">EPUB形式</a>で入手することもできます。</p>
<p align="right"><a href="crypto_jp.html">次のトピック: 暗号プリミティブ</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h1>Lees de handleiding</h1>
<p>U kunt door de volledige documentatie voor Reticulum bladeren <a href="manual/index.html">op deze site</a> of <a href="https://markqvist.github.io/Reticulum/manual/">op GitHub Pages</a>.</p>
<p>U kunt ook <a href="manual/Reticulum%20Manual.pdf">de Reticulum-handleiding downloaden als PDF</a> of in <a href="manual/Reticulum%20Manual.epub">EPUB format</a>.</p>
<p align="right"><a href="crypto_nl.html">Volgend onderwerp: cryptografische primitieven</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h1>Przeczytaj Podręcznik</h1>
<p>Możesz sprawdzić pełną dokumentację Reticulum <a href="manual/index.html">na tej stronie</a> lub <a href="https://markqvist.github.io/Reticulum/manual/">na stronach GitHub</a>.</p>
<p>Możesz również <a href="manual/Reticulum%20Manual.pdf">pobrać podręcznik Reticulum jako PDF</a> lub <a href="manual/Reticulum%20Manual.epub">EPUB</a>.</p>
<p align="right"><a href="crypto_pl.html">Następny Temat: Prymitywy Kryptograficzne</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h1>Leia o Manual</h1>
<p>Você navegar por toda documentação do Reticulum <a href="https://reticulum.network/manual/index.html">neste site</a> ou no <a href="https://markqvist.github.io/Reticulum/manual/">GitHub Pages</a>.</p>
<p>Você também pode baixar o <a href="https://reticulum.network/manual/Reticulum%20Manual.pdf">manual do Reticulum como PDF</a> ou <a href="manual/Reticulum%20Manual.epub">EPUB</a>.</p>
<p align="right"><a href="crypto_pt-br.html">Próxima Página: Criptografia</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h1>Kılavuzu Okuyun</h1>
<p>Reticulum için tam belgelendirmeyi bu site üzerinden <a href="manual/index.html">inceleyebilirsiniz</a> veya <a href="https://markqvist.github.io/Reticulum/manual/">GitHub Pages'te</a> bulabilirsiniz.</p>
<p>Ayrıca Reticulum kılavuzunu <a href="manual/Reticulum%20Manual.pdf">PDF olarak indirebilirsiniz</a> veya <a href="manual/Reticulum%20Manual.epub">EPUB formatında</a>.</p>
<p align="right"><a href="crypto_tr.html">Sonraki Konu: Şifreleme Temelleri</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h1>Читайте інструкцію</h1>
<p>Ви можете переглядати повну документацію для Reticulum <a href="manual/index.html">на цьому сайті</a> або <a href="https://markqvist.github.io/Reticulum/manual/">на GitHub Pages</a>.</p>
<p>Ви також можете <a href="manual/Reticulum%20Manual.pdf">завантажити інструкцію Reticulum у форматі PDF</a> або в <a href="manual/Reticulum%20Manual.epub">форматі EPUB</a>.</p>
<p align="right"><a href="crypto.html">Наступна тема: Криптографічні примітиви</a></p>
</body>
</html>

View File

@ -1,17 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./docs_de.html">Deutsch</a> | <a href="./docs.html">English</a> | <a href="./docs_es.html">Español</a> | <a href="./docs_nl.html">Nederlands</a> | <a href="./docs_pl.html">Polski</a> | <a href="./docs_pt-br.html">Português</a> | <a href="./docs_tr.html">Türkçe</a> | <a href="./docs_uk.html">Українська</a> | <a href="./docs_jp.html">日本語</a> | <a href="./docs_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h1>阅读手册</h1>
<p>你可以在<a href="manual/index.html">本站</a>或是<a href="https://markqvist.github.io/Reticulum/manual/">GitHub Pages</a>阅读完整的文档。</p>
<p>此外,你还可以下载<a href="manual/Reticulum%20Manual.pdf">PDF</a>或是<a href="manual/Reticulum%20Manual.epub">EPUB</a>格式的文档以供离线查看。</p>
<p align="right"><a href="crypto_zh-cn.html">下一个主题: 密码学原语</a></p>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h2>Support Reticulum</h2>
<p>You can help support the continued development of open, free and private communications systems by donating via one of the following channels:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h2>Reticulum Entwicklung unterstützen</h2>
<p>Sie können die weitere Entwicklung offener, freier und privater Kommunikationssysteme unterstützen, indem Sie über einen der folgenden Kanäle spenden:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h2>Apoya Reticulum</h2>
<p>Podes contribuir al desarrollo de sistemas de comunicaciones abiertas, libres y privadas haciendo una donación a través de uno de los siguientes canales:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h2>レティクラムのサポート</h2>
<p>あなたは、以下のチャンネルを通じて寄付を行うことで、オープンで無料、かつプライベートな通信システムの継続的な開発をサポートできます:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h2>Ondersteun Reticulum</h2>
<p>U kunt de voortdurende ontwikkeling van open, vrije en particuliere communicatiesystemen helpen ondersteunen door te doneren via een van de volgende kanalen:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h2>Wesprzyj Reticulum</h2>
<p>Możesz wspomóc dalszy rozwój otwartych, wolnych, prywatnych systemów komunikacji przez przekazanie darowizny za pośrednictwem jednego z następujących kanałów:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h2>Ajude o Reticulum</h2>
<p>Você pode ajudar na continuação do desenvolvimento de sistemas de comunicação abertos, livres e privados, doando através de um dos seguintes canais:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h2>Reticulum'u Destekle</h2>
<p>ık, özgür ve özel iletişim sistemlerinin sürekli gelişimine destek olabilirsiniz, aşağıdaki kanallardan biri aracılığıyla bağış yaparak:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h2>Підтримати Reticulum</h2>
<p>Ви можете допомогти підтримати подальший розвиток відкритих, безкоштовних та приватних комунікаційних систем, зробивши донат через один із наступних каналів:</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

View File

@ -1,28 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./donate_de.html">Deutsch</a> | <a href="./donate.html">English</a> | <a href="./donate_es.html">Español</a> | <a href="./donate_nl.html">Nederlands</a> | <a href="./donate_pl.html">Polski</a> | <a href="./donate_pt-br.html">Português</a> | <a href="./donate_tr.html">Türkçe</a> | <a href="./donate_uk.html">Українська</a> | <a href="./donate_jp.html">日本語</a> | <a href="./donate_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h2>支持 Reticulum</h2>
<p>你可以通过以下途径来支持这一开放、自由、私密的通信系统的开发。</p>
<ul>
<li>Monero<br/>
<code>84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w</code>
<br/><br/></li>
<li>Ethereum<br/>
<code>0xFDabC71AC4c0C78C95aDDDe3B4FA19d6273c5E73</code>
<br/><br/></li>
<li>Bitcoin<br/>
<code>35G9uWVzrpJJibzUwpNUQGQNFzLirhrYAH</code>
<br/><br/></li>
<li>Ko-Fi<br/>
<a href="https://ko-fi.com/markqvist"><code>https://ko-fi.com/markqvist</code></a></li>
</ul>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h1>Supported Hardware</h1>
<p>Reticulum can be used over practically any medium that can support at least a half-duplex channel with 500 bits per second throughput, and an MTU of 500 bytes. Data radios, modems, LoRa radios, serial lines, AX.25 TNCs, amateur radio digital modes, WiFi and Ethernet devices, free-space optical links, and similar systems are all examples of the types of physical devices Reticulum can use. The supported interface types include:</p>
<ul>
<li>Any ethernet device</li>
<li>Almost all WiFi-based hardware</li>
<li>LoRa using <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>Packet Radio TNCs (with or without AX.25)</li>
<li>KISS-compatible hardware and software modems</li>
<li>Any device with a serial port</li>
<li>TCP over IP networks</li>
<li>UDP over IP networks</li>
<li>External programs via stdio or pipes</li>
<li>Custom hardware via stdio or pipes</li>
</ul>
<p>For a more detailed info, and a full list of supported interface types, please read the <a href="manual/hardware.html">Communications Hardware</a> and <a href="manual/interfaces.html">Supported Interfaces</a> chapters of the manual.</p>
<p>Reticulum can also be encapsulated over existing IP networks, so there's nothing stopping you from using it over wired ethernet, your local WiFi network or the Internet, where it'll work just as well. In fact, one of the strengths of Reticulum is how easily it allows you to connect different mediums into a self-configuring, resilient and encrypted mesh, using any available mixture of available infrastructure.</p>
<p>As an example, it's possible to set up a Raspberry Pi connected to both a LoRa radio, a packet radio TNC and a WiFi network. Once the interfaces are configured, Reticulum will take care of the rest, and any device on the WiFi network can communicate with nodes on the LoRa and packet radio sides of the network, and vice versa.</p>
<p align="right"><a href="connect.html">Next Topic: Public Testnet</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h1>Unterstützte Hardware</h1>
<p>Reticulum kann über praktisch jedes Medium verwendet werden, das mindestens einen Halbduplex-Kanal mit einem Durchsatz von 500 Bit pro Sekunde und einer MTU von 500 Byte unterstützt. Datenfunkgeräte, Modems, LoRa-Funkgeräte, serielle Leitungen, AX.25-TNCs, digitale Amateurfunkmodi, WiFi- und Ethernet-Geräte, optische Verbindungen im freien Raum und ähnliche Systeme sind Beispiele für physische Geräte, die Reticulum verwenden kann. Zu den unterstützten Schnittstellentypen gehören:</p>
<ul>
<li>Jedes Ethernet-Gerät</li>
<li>Fast alle WiFi-basierte Hardware</li>
<li>LoRa mit <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>Packet Radio TNCs (mit oder ohne AX.25)</li>
<li>KISS-kompatible Hardware- und Software-Modems</li>
<li>Jedes Gerät mit einer seriellen Schnittstelle</li>
<li>TCP über IP Netzwerke</li>
<li>UDP über IP Netzwerke</li>
<li>Externe Programme über stdio oder Pipes</li>
<li>Kundenspezifische Hardware über stdio oder Pipes</li>
</ul>
<p>Ausführlichere Informationen und eine vollständige Liste der unterstützten Schnittstellentypen finden Sie in den Kapiteln <a href="manual/hardware.html">Kommunikationshardware</a> und <a href="manual/interfaces.html">Unterstützte Schnittstellen</a> des Handbuchs.</p>
<p>Reticulum kann auch über bestehende IP-Netzwerke gekapselt werden, so dass dem Einsatz über ein kabelgebundenes Ethernet, Ihr lokales WiFi-Netzwerk oder das Internet nichts im Wege steht, wo es genauso gut funktioniert. Eine der Stärken von Reticulum besteht darin, dass Sie verschiedene Medien ganz einfach zu einem selbstkonfigurierenden, robusten und verschlüsselten Mesh verbinden können, wobei jede verfügbare Infrastruktur genutzt werden kann.</p>
<p>So ist es beispielsweise möglich, einen Raspberry Pi sowohl mit einem LoRa-Funkgerät als auch mit einem Paketfunk-TNC und einem WiFi-Netzwerk zu verbinden. Sobald die Schnittstellen konfiguriert sind, kümmert sich Reticulum um den Rest, und jedes Gerät im WiFi-Netzwerk kann mit Knoten auf der LoRa- und Paketfunkseite des Netzwerks kommunizieren und umgekehrt.</p>
<p align="right"><a href="connect_de.html">Nächstes Thema: Öffentliches Testnetz</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h1>Hardware soportado</h1>
<p>Reticulum puede utilizarse en prácticamente cualquier medio que admita al menos un canal semidúplex con un rendimiento de 500 bits por segundo y una MTU de 500 bytes. Radios de datos, módems, radios LoRa, líneas seriales, TNC AX.25, modos digitales de radio-aficionados, dispositivos WiFi y Ethernet, enlaces ópticos de espacio libre y sistemas similares son ejemplos de los tipos de dispositivos físicos que puede utilizar Reticulum. Los tipos de interfaz admitidos incluyen:</p>
<ul>
<li>Cualquier dispositivo Ethernet</li>
<li>Casi todo el hardware basado en WiFi</li>
<li>LoRa utilizando <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>TNCs de Radio en paquetes (con o sin AX.25)</li>
<li>Módems de hardware y software compatibles con KISS</li>
<li>Cualquier dispositivo con puerto serial</li>
<li>TCP sobre redes IP</li>
<li>UDP sobre redes IP</li>
<li>Programas externos a través de stdio o pipes</li>
<li>Hardware personalizado a través de stdio o pipes</li>
</ul>
<p>Para obtener información más detallada y una lista completa de los tipos de interfaz compatibles, lea los capítulos <a href="manual/hardware.html">Hardware de comunicaciones</a> e <a href="manual/interfaces.html">Interfaces compatibles</a> del manual.</p>
<p>Reticulum también puede encapsularse sobre redes IP existentes, por lo que nada le impide utilizarlo a través de Ethernet por cable, su red WiFi local o Internet, donde funcionará igual de bien. De hecho, uno de los puntos fuertes de Reticulum es la facilidad con la que permite conectar diferentes medios en una malla autoconfigurable, resistente y encriptada, utilizando cualquier mezcla de infraestructura disponible.</p>
<p>Como ejemplo, se puede setear una Raspberry Pi conectada a un dispositivo LoRa, una radio en paquetes TNC y una red WiFi. Cuando las interfaces estén configuradas, Reticulum se hace cargo del resto, y cualquier dispositivo en la red se va a poder comunicar con nodos que estén en LoRa y/o radio en paquetes de la red y viceversa.</p>
<p align="right"><a href="connect_es.html">Siguiente tema: Testnet publica</a></p>
</body>
</html>

View File

@ -1,30 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h1>サポートされているハードウェア</h1>
<p>Reticulumは、少なくともハーフデュプレックスチャネルとして500ビット/秒のスループット、および500バイトのMTUをサポートできるほぼすべてのメディアで使用できます。データラジオ、モデム、LoRaラジオ、シリアルライン、AX.25 TNC、アマチュアラジオデジタルモード、WiFiおよびEthernetデバイス、フリースペース光通信リンクなど、これらはReticulumが使用できる物理デバイスの例です。サポートされるインターフェースのタイプは以下の通りです。</p>
<ul>
<li>任意のEthernetデバイス</li>
<li>ほぼすべてのWiFiベースのハードウェア</li>
<li><a href="https://unsigned.io/rnode/">RNode</a> を使用したLoRa</li>
<li>パケットラジオTNCAX.25ありまたはなし)</li>
<li>KISS互換のハードウェアおよびソフトウェアモデム</li>
<li>シリアルポートを持つ任意のデバイス</li>
<li>IPネットワーク上のTCP</li>
<li>IPネットワーク上のUDP</li>
<li>stdioまたはパイプを介した外部プログラム</li>
<li>stdioまたはパイプを介したカスタムハードウェア</li>
</ul>
<p>詳細な情報やサポートされているインターフェースタイプの完全なリストについては、<a href="manual/hardware.html">Communications Hardware</a> および <a href="manual/interfaces.html">Supported Interfaces</a> マニュアルの章を参照してください。</p>
<p>Reticulumは既存のIPネットワーク上にカプセル化されるため、有線Ethernet、ローカルWiFiネットワーク、またはインターネットを介しても利用できます。実際、Reticulumの強みの一つは、さまざまな媒体を容易に自己設定、強固で暗号化されたメッシュに接続できるようにすることです。利用可能な基盤の組み合わせを使用して、ラズベリーパイをLoRaラジオ、パケットラジオTNC、およびWiFiネットワークに接続することができます。インターフェースが構成されると、Reticulumが残りの作業を処理し、WiFiネットワーク上の任意のデバイスがネットワークのLoRaおよびパケットラジオ側のードと双方向に通信できます。</p>
<p align="right"><a href="connect_jp.html">次のトピック: パブリックテストネット</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h1>Ondersteunde hardware</h1>
<p>Reticulum kan worden gebruikt via vrijwel elk medium dat ten minste een half-duplex kanaal met een doorvoersnelheid van 500 bits per seconde en een MTU van 500 bytes kan ondersteunen. Dataradio's, modems, LoRa-radio's, seriële lijnen, AX.25 TNC's, digitale amateurradiomodi, WiFi- en Ethernet-apparaten, optische verbindingen in de vrije ruimte en soortgelijke systemen zijn allemaal voorbeelden van de soorten fysieke apparaten die Reticulum kan gebruiken. De ondersteunde interfacetypen zijn onder meer:</p>
<ul>
<li>Elke ethernetinterface</li>
<li>Bijna alle op WiFi gebaseerde hardware</li>
<li>LoRa met behulp van <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>Packet Radio TNC's (met of zonder AX.25)</li>
<li>KISS-compatibele hardware- en softwaremodems</li>
<li>Elk apparaat met een seriële poort</li>
<li>TCP over IP-netwerken</li>
<li>UDP via IP-netwerken</li>
<li>Externe programma's via stdio of pipelines</li>
<li>Aangepaste hardware via stdio of pijpen</li>
</ul>
<p>Voor meer gedetailleerde informatie en een volledige lijst met ondersteunde interfacetypen kunt u de hoofdstukken <a href="manual/hardware.html">Communicatiehardware</a> en <a href="manual/interfaces.html">Ondersteunde interfaces</a> van de handleiding lezen.</p>
<p>Reticulum kan ook worden ingekapseld over bestaande IP-netwerken, dus niets houdt u tegen om het te gebruiken via bedraad ethernet, uw lokale WiFi-netwerk of internet, waar het net zo goed zal werken. Een van de sterke punten van Reticulum is in feite hoe gemakkelijk u verschillende media kunt verbinden tot een zelfconfigurerend, veerkrachtig en gecodeerd netwerk, met behulp van elke beschikbare mix van beschikbare infrastructuur.</p>
<p>Het is bijvoorbeeld mogelijk om een Raspberry Pi op te zetten die is aangesloten op zowel een LoRa-radio, een packet-radio-TNC als een WiFi-netwerk. Zodra de interfaces zijn geconfigureerd, zorgt Reticulum voor de rest, en elk apparaat op het WiFi-netwerk kan communiceren met knooppunten aan de LoRa- en pakketradiozijde van het netwerk, en vice versa.</p>
<p align="right"><a href="connect_nl.html">Volgend onderwerp: openbaar testnet</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h1>Wspierany Hardware</h1>
<p>Reticulum może być używane praktycznie przez każde medium, które wspiera przynajmniej kanał półdupleksowy z przepustowością 500 bitów na sekundę, i MTU 500 bitów. Data radio, modemy, radia LoRa, porty szeregowe, AX.25 TNC, tryby cyfrowe radia amatorskiego, WiFi i urządzenia Ethernet, bezprzewodowe łącza optyczne (FSO), i podobne systemy są przykładem rodzajów fizycznych urządzeń, które Reticulum może używać. Wspierane rodzaje interfejsów zawierają:</p>
<ul>
<li>Każde urządzenie ethernet</li>
<li>Prawie wszystkie urządzenia z WiFi</li>
<li>LoRa używające <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>Packet Radio TNC (z lub bez AX.25)</li>
<li>Hardware kompatybilny z KISS i modemy programowe</li>
<li>Każde urządzenie z portem szeregowym</li>
<li>TCP przez sieci IP</li>
<li>UDP przez sieci IP</li>
<li>Zewnętrzne programy przez stdio lub pipes</li>
<li>Niestandardowy hardware przez stdio lub pipes</li>
</ul>
<p>Bardziej szczegółowe informacje i pełną listę wspieranych rodzajów interfejsów można znaleźć w rozdziałach poświęconych <a href="manual/hardware.html">sprzętowi komunikacyjnemu</a> i <a href="manual/interfaces.html">wspieranych interfejsów</a>.</p>
<p>Reticulum może być również umieszczone w istniejących sieciach IP, więc nic nie stoi na przeszkodzie, by używać go w przewodowej sieci ethernet, lokalnej sieci WiFi lub w Internecie, gdzie będzie działał równie dobrze. W rzeczywistości, jedną z mocnych stron Reticulum jest to, jak łatwo pozwala połączyć różne media w samokonfigurującą się, odporną i szyfrowaną sieć, wykorzystując dowolną mieszankę dostępnej infrastruktury.</p>
<p>Przykładowo, możliwe jest skonfigurowanie Raspberry Pi podłączonego zarówno do radia LoRa, TNC packet radio, jak i sieci WiFi. Po skonfigurowaniu interfejsów, Reticulum zajmie się resztą, a każde urządzenie w sieci WiFi może komunikować się z węzłami po stronie sieci LoRa i packet radio, i odwrotnie.</p>
<p align="right"><a href="connect_pl.html">Następny Temat: Publiczny Testnet</a></p>
</body>
</html>

View File

@ -1,30 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h1>Hardware Compátivel</h1>
<p>Reticulum pode ser usado sobre praticamente qualquer dispositivo que suporte pelo menos um canal half-duplex com 500 bits por segundo de taxa de transferência, um MTU de 500 bytes. Rádios de dados, roteadores, rádios LoRa, linhas seriais, AX.25 TNCs, modos de rádio digital amador, Wi-Fi, Bluetooth, links ópticos de espaço-livre e sistemas similares são todos exemplos dos tipos de dispositivos físicos que o Reticulum pode utilizar. Os tipos de interface suportados incluem:</p>
<ul>
<li>Qualquer dispositivo Ethernet</li>
<li>Praticamente todo hardware com Wi-Fi</li>
<li>LoRa utilizando <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>Hardware/roteadores de software com filosofia KISS</li>
<li>Qualquer dispositivo com uma porta serial</li>
<li>TCP sobre redes IP</li>
<li>UDP sobre redes IP</li>
<li>Programas externos via stdio ou pipes</li>
<li>Hardware personalizado via stdio ou pipes</li>
</ul>
<p>Para informações detalhadas e uma lista completa de todos os tipos de interfaces suportadas, leia o <a href="https://reticulum.network/manual/hardware.html">Hardware de Comunicações</a> e o capítulo de <a href="https://reticulum.network/manual/interfaces.html">Interfaces Suportadas</a> do manual.</p>
<p>Reticulum pode ser utilizado sobre redes IP, nada lhe impede de utilizar via cabo Ethernet, sua rede local de Wi-Fi ou a Internet, onde ele funciona corretamente. Na verdade, um dos pontos fortes do Reticulum é como ele facilmente permite que você se conecte a diferentes dispositivos com mesh auto-configurável, resiliente e criptografada, utilizando apenas a infraestrutura disponível.</p>
<p>Como um exemplo, é possível utilizar um Raspberry Pi conectado em ambos, uma rádio LoRa, um rádio amador TNC e uma rede Wi-Fi. Uma vez que as interfaces estejam configuradas, Reticulum cuida do resto, e qualquer dispositivo na rede Wi-Fi pode se comunicar com nós do rádio LoRa e rádio amador, e vice-versa.</p>
<p align="right"><a href="connect_pt-br.html">Próxima Página: Rede de Teste Pública</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h1>Desteklenen Donanım</h1>
<p>Reticulum, en az yarı dubleks bir kanalı ve saniyede 500 bit iletim hızını destekleyebilen neredeyse her ortamda kullanılabilir ve MTU değeri 500 byte olan bir ortamda çalışabilir. Veri radyoları, modemler, LoRa radyoları, seri hatlar, AX.25 TNC'ler, amatör telsiz dijital modları, WiFi ve Ethernet cihazları, serbest uzay optik bağlantılar ve benzeri sistemler, Reticulum'un kullanabileceği fiziksel cihaz türlerine örnek olarak verilebilir. Desteklenen arayüz türleri şunları içerir:</p>
<ul>
<li>Herhangi bir Ethernet cihazı</li>
<li>Neredeyse tüm WiFi tabanlı donanımlar</li>
<li><a href="https://unsigned.io/rnode/">RNode</a> kullanılarak LoRa</li>
<li>Paket Radyo TNC'leri (AX.25 ile veya olmadan)</li>
<li>KISS uyumlu donanım ve yazılım modemleri</li>
<li>Bir dizi seri porta sahip herhangi bir cihaz</li>
<li>IP ağları üzerinden TCP</li>
<li>IP ağları üzerinden UDP</li>
<li>stdio veya borular aracılığıyla harici programlar</li>
<li>stdio veya borular aracılığıyla özel donanım</li>
</ul>
<p>Daha fazla bilgi ve desteklenen arayüz türlerinin tam listesi için lütfen <a href="manual/hardware.html">İletişim Donanımı</a> ve <a href="manual/interfaces.html">Desteklenen Arayüzler</a> bölümlerini okuyun.</p>
<p>Reticulum ayrıca mevcut IP ağları üzerinde de kapsülleyebilir, bu nedenle onu kablolu Ethernet, yerel WiFi ağınız veya İnternet üzerinden kullanmanıza engel bir şey yok, burada da aynı şekilde çalışacaktır. Aslında, Reticulum'un güçlü yanlarından biri, farklı ortamları kolayca birbirine bağlama yeteneğidir; bu, mevcut altyapının herhangi bir karışımını kullanarak özelleştirilebilir, dayanıklı ve şifreli bir mesh ağı oluşturmanıza izin verir.</p>
<p>Örneğin, bir Raspberry Pi'nin hem bir LoRa radyosuna, bir paket radyo TNC'sine ve bir WiFi ağına bağlı olduğu bir yapı kurmak mümkündür. Arayüzler yapılandırıldığında, Reticulum gerisini halledecek ve WiFi ağındaki herhangi bir cihaz, ağın LoRa ve paket radyo taraflarındaki düğümlerle iletişim kurabilir, ve tam tersi.</p>
<p align="right"><a href="connect_tr.html">Sonraki Konu: Genel Test Ağı</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h1>Підтримуване обладнання</h1>
<p>Reticulum можна використовувати практично через будь-який медіум, який підтримує хоча б напівдуплексний канал з пропускною здатністю 500 біт на секунду і MTU 500 байт. Прикладом фізичних пристроїв, через які можна використовувати Reticulum, є радіостанції даних, модеми, LoRa радіостанції, серійні лінії, TNC AX.25, цифрові режими аматорського радіо, WiFi та Ethernet пристрої, оптичні лінії вільного простору та подібні системи. Підтримувані типи інтерфейсів включають:</p>
<ul>
<li>Будь-який Ethernet пристрій</li>
<li>Майже все обладнання на базі WiFi</li>
<li>LoRa з використанням <a href="https://unsigned.io/rnode/">RNode</a></li>
<li>TNC для пакетного радіо (з або без AX.25)</li>
<li>Апаратура та програмні модеми сумісні з KISS</li>
<li>Будь-який пристрій з серійним портом</li>
<li>TCP через IP мережі</li>
<li>UDP через IP мережі</li>
<li>Зовнішні програми через stdio або канали</li>
<li>Користувацьке обладнання через stdio або канали</li>
</ul>
<p>Для більш детальної інформації та повного списку підтримуваних типів інтерфейсів, будь ласка, ознайомтесь з розділами <a href="manual/hardware.html">Комунікаційне обладнання</a> та <a href="manual/interfaces.html">Підтримувані інтерфейси</a> у посібнику.</p>
<p>Reticulum також може бути інкапсульований через існуючі IP мережі, тому немає жодних обмежень у використанні його через дротовий Ethernet, вашу локальну WiFi мережу або Інтернет, де він працюватиме так само добре. Насправді, однією з переваг Reticulum є те, як легко він дозволяє підключати різні медіуми до самоконфігурованої, стійкої та зашифрованої мережі, використовуючи будь-яку доступну суміш доступної інфраструктури.</p>
<p>Наприклад, можна налаштувати Raspberry Pi, підключений до радіо LoRa, TNC для пакетного радіо та WiFi мережі. Після налаштування інтерфейсів, Reticulum подбає про решту, і будь-який пристрій у WiFi мережі зможе спілкуватися з вузлами в мережі LoRa і пакетного радіо, і навпаки.</p>
<p align="right"><a href="connect.html">Наступна тема: Публічний тестнет</a></p>
</body>
</html>

View File

@ -1,31 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./hardware_de.html">Deutsch</a> | <a href="./hardware.html">English</a> | <a href="./hardware_es.html">Español</a> | <a href="./hardware_nl.html">Nederlands</a> | <a href="./hardware_pl.html">Polski</a> | <a href="./hardware_pt-br.html">Português</a> | <a href="./hardware_tr.html">Türkçe</a> | <a href="./hardware_uk.html">Українська</a> | <a href="./hardware_jp.html">日本語</a> | <a href="./hardware_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h1>硬件支持</h1>
<p>Reticulum 可以被用于任意一个最低支持 500 bps 吞吐量、具有 500 字节 MTU(最大传输单元)的半双工或全双工信道上。Reticulum 支持各种物理设备数字无线电、调制解调器、LoRa 无线电、串口线、AX.25 终端节点控制器(TNCs)、业余无线电台的数字模式、WiFi与以太网、自由空间光通信……以下是一个简单列表</p>
<ul>
<li>任意以太网设备</li>
<li>几乎所有基于 WiFi 的硬件</li>
<li>LoRa (使用 <a href="https://unsigned.io/rnode/">RNode</a>)</li>
<li>封包无线电 TNC(带或不带 AX.25 均可)</li>
<li>兼容KISS的硬件或软件调制解调器</li>
<li>任何带串口的设备</li>
<li>TCP over IP</li>
<li>UDP over IP</li>
<li>外部程序(通过 stdio 或是管道)</li>
<li>自制硬件(通过 stdio 或是管道)</li>
</ul>
<p>若想了解更多细节或是查看完整的支持列表,请参阅手册的<a href="manual/hardware.html">通信硬件(Communications Hardware)</a><a href="manual/interfaces.html">受支持的界面(Supported Interfaces)</a>部分。</p>
<p>Reticulum 也可以在现有的 IP 网络之上建立连接所以你也能在有线以太网本地无线网或是互联网上使用它。事实上Reticulum 的一大优势就是允许你混合使用各种基础设施,把不同的传输介质连接成一个自配置、自恢复、强加密的网状网络。</p>
<p>譬如,你可以搭建一个连着 LoRa 无线电、封包无线电 TNC 和 WiFi 的树莓派。在这些硬件都设置好之后Reticulum 会处理剩下的一切——所有在 WiFi 一侧的设备便可以和无线电一侧的设备自由通信了,反之亦然。</p>
<p align="right"><a href="connect_zh-cn.html">下一个主题: 公共测试网络</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum is the cryptography-based networking stack for building local and wide-area networks with readily available hardware. Reticulum can continue to operate even in adverse conditions with very high latency and extremely low bandwidth.</p>
<p>The vision of Reticulum is to allow anyone to operate their own sovereign communication networks, and to make it cheap and easy to cover vast areas with a myriad of independent, interconnectable and autonomous networks. Reticulum is Unstoppable Networks for The People.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum is not <em>one</em> network. It is a tool for building <em>thousands of networks</em>. Networks without kill-switches, surveillance, censorship and control. Networks that can freely interoperate, associate and disassociate with each other. Reticulum is Networks for Human Beings.</p>
<p>From a users perspective, Reticulum allows the creation of applications that respect and empower the autonomy and sovereignty of communities and individuals. Reticulum provides secure digital communication that cannot be subjected to outside control, manipulation or censorship.</p>
<p>Reticulum enables the construction of both small and potentially planetary-scale networks, without any need for hierarchical or beaureucratic structures to control or manage them, while ensuring individuals and communities full sovereignty over their own network segments.</p>
<h2>Notable Characteristics</h2>
<p>While Reticulum solves the same problem that any network stack does, namely to get data reliably from one point to another over a number of intermediaries, it does so in a way that is very different from other networking technologies.</p>
<ul>
<li>Reticulum does not use source addresses. No packets transmitted include information about the address, place, machine or person they originated from.</li>
<li>There is no central control over the address space in Reticulum. Anyone can allocate as many addresses as they need, when they need them.</li>
<li>Reticulum ensures end-to-end connectivity. Newly generated addresses become globally reachable in a matter of seconds to a few minutes.</li>
<li>Addresses are <em>self-sovereign</em> and <em>portable</em>. Once an address has been created, it can be moved physically to another place in the network, and continue to be reachable.</li>
<li>All communication is secured with <a href="crypto.html">strong, modern encryption</a> by default.</li>
<li>All encryption keys are ephemeral, and communication offers forward secrecy by default.</li>
<li>It is not possible to establish unencrypted links in Reticulum networks.</li>
<li>It is not possible to send unencrypted packets to any destinations in the network.</li>
<li>Destinations receiving unencrypted packets will drop them as invalid.</li>
</ul>
<p align="right"><a href="start.html">Next Topic: Get Started</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum ist der kryptografiebasierte Netzwerkstack für den Aufbau von lokalen und Weitverkehrsnetzen mit leicht verfügbarer Hardware. Reticulum kann auch unter ungünstigen Bedingungen mit sehr hoher Latenz und extrem geringer Bandbreite weiterarbeiten.</p>
<p>Die Vision von Reticulum ist es, jedem die Möglichkeit zu geben, seine eigenen souveränen Kommunikationsnetze zu betreiben, und es billig und einfach zu machen, große Gebiete mit einer Vielzahl von unabhängigen, zusammenschaltbaren und autonomen Netzen abzudecken. Reticulum ist unaufhaltsame Netzwerke für die Menschen.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum ist nicht <em>ein</em> Netzwerk. Es ist ein Werkzeug zum Aufbau <em>tausender</em> Netzwerke. Netze ohne Kill-Switches, Überwachung, Zensur und Kontrolle. Netzwerke, die frei miteinander interagieren, sich verbinden und trennen können. Reticulum ist ein Netzwerk für Menschen.</p>
<p>Aus Sicht der Nutzer ermöglicht Reticulum die Entwicklung von Anwendungen, die die Autonomie und Souveränität von Gemeinschaften und Einzelpersonen respektieren und stärken. Reticulum bietet eine sichere digitale Kommunikation, die keiner Kontrolle, Manipulation oder Zensur von außen unterliegt.</p>
<p>Reticulum ermöglicht den Aufbau sowohl kleiner als auch potenziell planetarer Netzwerke, ohne dass hierarchische oder behördliche Strukturen zu deren Kontrolle oder Verwaltung erforderlich sind, und sichert Individuen und Gemeinschaften die volle Souveränität über ihre eigenen Netzwerksegmente.</p>
<h2>Erwähnenswerte Merkmale</h2>
<p>Reticulum löst zwar das gleiche Problem wie jeder andere Netzwerkstack, nämlich Daten zuverlässig von einem Punkt zu einem anderen über eine Reihe von Zwischenstationen zu transportieren, aber auf eine Weise, die sich von anderen Netzwerktechnologien stark unterscheidet.</p>
<ul>
<li>Reticulum verwendet keine Quelladressen. Keines der übertragenen Pakete enthält Informationen über die Adresse, den Ort, die Maschine oder die Person, von der es stammt.</li>
<li>Es gibt keine zentrale Kontrolle über den Adressraum in Reticulum. Jeder kann so viele Adressen zuweisen, wie er braucht und wann er sie braucht.</li>
<li>Reticulum gewährleistet eine durchgängige Konnektivität. Neu generierte Adressen werden innerhalb von Sekunden bis wenigen Minuten global erreichbar.</li>
<li>Adressen sind <em>selbstständig</em> und <em>portabel</em>. Sobald eine Adresse erstellt wurde, kann sie physisch an einen anderen Ort im Netz verschoben werden und ist weiterhin erreichbar.</li>
<li>Die gesamte Kommunikation ist standardmäßig mit <a href="crypto_de.html">starker, moderner Verschlüsselung</a> gesichert.</li>
<li>Alle Verschlüsselungsschlüssel sind kurzlebig, und die Kommunikation bietet standardmäßig ein Vorwärtsgeheimnis.</li>
<li>Es ist nicht möglich, unverschlüsselte Verbindungen in Reticulum-Netzen herzustellen.</li>
<li>Es ist nicht möglich, unverschlüsselte Pakete an beliebige Ziele im Netz zu senden.</li>
<li>Ziele, die unverschlüsselte Pakete empfangen, verwerfen diese als ungültig.</li>
</ul>
<p align="right"><a href="start_de.html">Nächstes Thema: Los geht's</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum es <strong>la</strong> infraestructura basada en criptografía para construir redes locales y de área amplia (WAN) utilizando hardware fácilmente disponible. Reticulum puede continuar operando incluso en condiciones adversas con latencia muy alta y ancho de banda extremadamente bajo.</p>
<p>La visión de Reticulum es permitir que cualquiera opere sus propias redes de comunicación soberanas, hacerlo barato y que cubrir vastas áreas con una multitud de redes independientes, interconectables y autónomas sea fácil. Reticulum es Redes Imparables para La Gente.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum no es una red. Es una herramienta para construir miles de redes. Redes sin interruptores de apagado, vigilancia, censura y control. Redes que pueden operar libremente entre sí, asociarse y desasociarse entre ellas. Reticulum es Redes para Personas.</p>
<p>Desde la perspectiva de un usuario, Reticulum permite crear aplicaciones que respetan y fortalecen la autonomía y soberanía de comunidades e individuos.
Reticulum ofrece comunicación digital segura que no puede someterse a control externo, manipulación o censura.</p>
<p>Reticulum permite la construcción de redes tanto pequeñas como potencialmente a escala planetaria, sin necesidad de estructuras jerárquicas o burocráticas para controlarlas o administrarlas, mientras garantiza que las personas y comunidades tengan plena soberanía sobre sus propios segmentos de red.</p>
<h2>Características Destacadas</h2>
<p>Reticulum resuelve el mismo problema que cualquier infraestructura de redes, es decir, transmitir información de forma fiable de un punto a otro a través de un número indeterminado de intermediarios, pero lo hace de una forma muy diferente a otras tecnologías.</p>
<ul>
<li>Reticulum no utiliza direcciones de origen. Ningún paquete transmitido incluye información sobre la dirección, lugar, máquina o persona desde donde se originó.</li>
<li>No hay control central sobre el espacio de direcciones en Reticulum. Cada uno puede asignar tantas direcciones como necesite, cuando lo necesite.</li>
<li>Reticulum garantiza conexión de extremo a extremo. Las direcciones recién generadas se vuelven globalmente alcanzables en un plazo que va de segundos a solo unos minutos.</li>
<li>Las direcciones son <em>soberanas</em> y <em>portátiles</em>. Una vez creada una dirección, puede ser movida físicamente a otro lugar en la red y seguir siendo alcanzable.</li>
<li>Toda la comunicación está cifrada de forma predeterminada con <a href="crypto_es.html">encriptación potente y moderna</a>.</li>
<li>Todas las claves de encriptación son efímeras y la comunicación ofrece <em>secreto hacia adelante</em> por defecto.</li>
<li>Es imposible establecer enlaces sin cifrar en redes Reticulum.</li>
<li>Es imposible enviar paquetes sin cifrar a destinos en la red.</li>
<li>Los destinos que reciban paquetes sin cifrar, los descartaran como paquetes inválidos.</li>
</ul>
<p align="right"><a href="start_es.html">Siguiente tema: Empezar</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_jp.html">レチキュラム</a> | <a href="start_jp.html">開始</a> | <a href="hardware_jp.html">ハードウェア</a> | <a href="connect_jp.html">接続する</a> | <a href="docs_jp.html">マニュアル</a> | <a href="crypto_jp.html">暗号</a> | <a href="credits_jp.html">クレジット</a> | <a href="https://github.com/markqvist/reticulum">ソース</a> | <a href="donate_jp.html">寄付</a></div></center></p>
<h1>レティクル</h1>
<p>レティクルは、利用可能なハードウェアを使用してローカルおよび広域ネットワークを構築するための、暗号ベースのネットワーキングスタックです。レティクルは、非常に高いレイテンシと極めて低い帯域幅の逆境条件でも動作を継続することができます。</p>
<p>レティクルのビジョンは、誰もが独自の通信ネットワークを運営し、多くの独立した、相互接続可能で自律的なネットワークで広範囲をカバーすることが安価かつ容易になるようにすることです。レティクルは、人々のための停止できないネットワークです。</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>レティクルは <em>1 つの</em> ネットワークではありません。それは <em>数千のネットワーク</em> を構築するためのツールです。キルスイッチ、監視、検閲、および制御のないネットワーク。これらは自由に相互運用し、結びつき、解結することができるネットワークです。レティクルは、人間のためのネットワークです。</p>
<p>ユーザーの視点から見ると、レティクルはコミュニティと個人の自治および主権を尊重し、強化するアプリケーションの作成を可能にします。レティクルは外部の制御、操作、または検閲を受けることのない安全なデジタルコミュニケーションを提供します。</p>
<p>レティクルは、階層的またはビューロクラティックな構造が必要なく、個人やコミュニティが独自のネットワークセグメントに対して完全な主権を確保しながら、小規模なネットワークから潜在的な地球規模のネットワークまでの構築を可能にします。</p>
<h2>注目すべき特徴</h2>
<p>レティクルは、他のネットワーキング技術とは非常に異なる方法で、任意の中間者を介してデータを信頼性をもって一点から別の点まで取得するという同じ問題を解決します。</p>
<ul>
<li>レティクルはソースアドレスを使用しません。転送されるパケットには、それが発信元のアドレス、場所、マシン、または人物に関する情報が含まれません。</li>
<li>レティクルにおいてアドレススペースに対する中央制御はありません。必要なだけ多くのアドレスを割り当てることができ、必要な時にそれを行うことができます。</li>
<li>レティクルはエンドツーエンドの接続性を確保します。新しく生成されたアドレスは、数秒から数分でグローバルに到達可能になります。</li>
<li>アドレスは <em>自己主権</em> かつ <em>携帯可能</em> です。アドレスが一度作成されると、物理的にネットワーク内の別の場所に移動し、引き続き到達可能です。</li>
<li>すべての通信は、<a href="crypto.html">強力で現代的な暗号化</a>によってデフォルトで保護されています。</li>
<li>すべての暗号鍵は一時的であり、通信はデフォルトで前方秘匿を提供します。</li>
<li>レティクルネットワークでは非暗号化のリンクを確立することはできません。</li>
<li>レティクルネットワークへの宛先に対して非暗号化のパケットを送信することはできません。</li>
<li>非暗号化のパケットを受信した宛先は、それらを無効として破棄します。</li>
</ul>
<p align="right"><a href="start_jp.html">次のトピック: はじめに</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_nl.html">Reticulum</a> | <a href="start_nl.html">Start</a> | <a href="hardware_nl.html">Hardware</a> | <a href="connect_nl.html">Sluit aan</a> | <a href="docs_nl.html">Handleiding</a> | <a href="crypto_nl.html">Kryptografie</a> | <a href="credits_nl.html">Dankwoord</a> | <a href="https://github.com/markqvist/reticulum">Broncode</a> | <a href="donate_nl.html">Doneren</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum is de op cryptografie gebaseerde netwerkstack voor het bouwen van lokale en wide-area-netwerken met direct beschikbare hardware. Reticulum kan zelfs onder ongunstige omstandigheden blijven werken met een zeer hoge latentie en extreem lage bandbreedte.</p>
<p>De visie van Reticulum is om iedereen in staat te stellen zijn eigen soevereine communicatienetwerken te exploiteren en het goedkoop en gemakkelijk te maken om grote gebieden te bestrijken met een groot aantal onafhankelijke, onderling verbonden en autonome netwerken. Reticulum is onstuitbare netwerken voor het volk.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum is niet <em>één</em> netwerk. Het is een hulpmiddel voor het bouwen van <em>duizenden netwerken</em>. Netwerken zonder kill-switches, surveillance, censuur en controle. Netwerken die vrij met elkaar kunnen samenwerken, zich kunnen associëren en zich kunnen losmaken. Reticulum is netwerken voor mensen.</p>
<p>Vanuit het perspectief van de gebruiker maakt Reticulum de creatie mogelijk van applicaties die de autonomie en soevereiniteit van gemeenschappen en individuen respecteren en versterken. Reticulum biedt veilige digitale communicatie die niet kan worden onderworpen aan controle, manipulatie of censuur van buitenaf.</p>
<p>Reticulum maakt de constructie mogelijk van zowel kleine als potentieel planetaire netwerken, zonder enige noodzaak voor hiërarchische of beaureucratische structuren om deze te controleren of te beheren, terwijl individuen en gemeenschappen volledige soevereiniteit over hun eigen netwerksegmenten worden gegarandeerd.</p>
<h2>Opmerkelijke kenmerken</h2>
<p>Hoewel Reticulum hetzelfde probleem oplost als elke netwerkstack, namelijk gegevens betrouwbaar van het ene punt naar het andere krijgen via een aantal tussenpersonen, doet het dit op een manier die heel anders is dan andere netwerktechnologieën.</p>
<ul>
<li>Reticulum gebruikt geen bronadressen. Geen van de verzonden pakketten bevat informatie over het adres, de plaats, de machine of de persoon waar ze vandaan komen.</li>
<li>Er is geen centrale controle over de adresruimte in Reticulum. Iedereen kan zoveel adressen toewijzen als hij nodig heeft, wanneer hij die nodig heeft..</li>
<li>Reticulum zorgt voor end-to-end connectiviteit. Nieuw gegenereerde adressen worden binnen enkele seconden tot enkele minuten wereldwijd bereikbaar.</li>
<li>Adressen zijn <em>zelf-soeverein</em> en <em>draagbaar</em>. Zodra een adres is aangemaakt, kan het fysiek naar een andere plek in het netwerk worden verplaatst en bereikbaar blijven.</li>
<li>Alle communicatie is standaard beveiligd met <a href="crypto_nl.html">sterke, moderne encryptie</a>.</li>
<li>Alle encryptiesleutels zijn kortstondig en communicatie biedt standaard voorwaartse geheimhouding.</li>
<li>Het is niet mogelijk om ongecodeerde links tot stand te brengen in Reticulum-netwerken.</li>
<li>Het is niet mogelijk om ongecodeerde pakketten naar bestemmingen in het netwerk te verzenden.</li>
<li>Bestemmingen die niet-versleutelde pakketten ontvangen, zullen deze als ongeldig verwijderen.</li>
</ul>
<p align="right"><a href="start_nl.html">Volgend onderwerp: aan de slag</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pl.html">Reticulum</a> | <a href="start_pl.html">Jak Zacząć</a> | <a href="hardware_pl.html">Hardware</a> | <a href="connect_pl.html">Podłączać</a> | <a href="docs_pl.html">Podręcznik</a> | <a href="crypto_pl.html">Kryptografia</a> | <a href="credits_pl.html">Zasługi</a> | <a href="https://github.com/markqvist/reticulum">Kod Źródłowy</a> | <a href="donate_pl.html">Darowizna</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum to oparty na kryptografii stos sieciowy do budowy sieci lokalnych (LAN) i rozległych (WAN) z wykorzystaniem łatwo dostępnego sprzętu. Reticulum może kontynuować pracę nawet w niekorzystnych warunkach, przy bardzo dużych opóźnieniach i ekstremalnie niskiej przepustowości.</p>
<p>Wizją Reticulum jest umożliwienie każdemu zarządzanie własnymi, niezależnymi sieciami komunikacyjnymi, a także umożliwienie taniego i łatwego pokrycia ogromnych obszarów niezliczoną ilością niezależnych, wzajemnie połączonych i autonomicznych sieci. Reticulum to Niepowstrzymane Sieci dla Ludzi.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum nie jest <em>jedną</em> siecią. Jest narzędziem do budowy <em>tysięcy sieci</em>. Sieci bez wyłączników, nadzoru, cenzury i kontroli. Sieci, które mogą swobodnie współdziałać, łączyć się i rozłączać ze sobą. Reticulum to Sieci dla Istot Ludzkich.</p>
<p>Z punktu widzenia użytkownika, Reticulum pozwala na tworzenie aplikacji, które szanują i wzmacniają autonomię i niezależność społeczności i jednostek. Reticulum zapewnia bezpieczną komunikację cyfrową, która nie może być poddana zewnętrznej kontroli, manipulacji czy cenzurze.</p>
<p>Reticulum umożliwia budowę zarówno małych, jak i potencjalnie planetarnych sieci, bez potrzeby tworzenia hierarchicznych lub biurokratycznych struktur do ich kontroli lub zarządzania, zapewniając jednocześnie jednostkom i społecznościom pełną niezależność nad ich własnymi segmentami sieci.</p>
<h2>Istotne Cechy</h2>
<p>Podczas gdy Reticulum rozwiązuje ten sam problem, co każdy stos sieciowy, a mianowicie niezawodne przesyłanie danych z jednego punktu do drugiego przez licznych pośredników, robi to w sposób, który bardzo różni się od innych technologii sieciowych.</p>
<ul>
<li>Reticulum nie korzysta z adresów źródłowych. Żadne przesyłane pakiety nie zawierają informacji o adresie, miejscu, maszynie czy osobie, z której pochodzą.</li>
<li>W Reticulum nie ma centralnej kontroli nad przestrzenią adresową. Każdy może przydzielić tyle adresów ile potrzebuje i kiedy potrzebuje.</li>
<li>Reticulum zapewnia łączność end-to-end. Nowo wygenerowane adresy stają się globalnie osiągalne w czasie kilku sekund do kilku minut.</li>
<li>Adresy są <em>samostanowiące</em> i <em>przenośne</em>. Po utworzeniu adresu można go przenieść fizycznie w inne miejsce w sieci i nadal być osiągalnym.</li>
<li>Cała komunikacja jest domyślnie zabezpieczona <a href="crypto_pl.html">silnym, nowoczesnym szyfrowaniem</a>.</li>
<li>Wszystkie klucze szyfrujące są efemeryczne, a komunikacja domyślnie oferuje utajnianie z wyprzedzeniem (forward secrecy).</li>
<li>W sieciach Reticulum nie ma możliwości tworzenia nieszyfrowanych połączeń.</li>
<li>Nie jest możliwe wysyłanie niezaszyfrowanych pakietów do jakichkolwiek miejsc docelowych w sieci.</li>
<li>Miejsca docelowe otrzymujące niezaszyfrowane pakiety będą je odrzucały jako nieprawidłowe.</li>
</ul>
<p align="right"><a href="start_pl.html">Następny Temat: Jak zacząć</a></p>
</body>
</html>

View File

@ -1,36 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_pt-br.html">Reticulum</a> | <a href="start_pt-br.html">Começar</a> | <a href="hardware_pt-br.html">Hardware</a> | <a href="connect_pt-br.html">Conectar</a> | <a href="docs_pt-br.html">Manual</a> | <a href="crypto_pt-br.html">Criptografia</a> | <a href="credits_pt-br.html">Créditos</a> | <a href="https://github.com/markqvist/reticulum">Código</a> | <a href="donate_pt-br.html">Ajude</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum é uma framework de redes baseada em criptografia para desenvolver redes locais e distantes, utilizando o hardware disponível. Reticulum pode operar em condições adversas como alta latência e velocidade de rede extremamente baixa.</p>
<p>A visão do Reticulum é permitir que qualquer um possa operar sua própria rede de comunicação, sendo barato e fácil de cobrir vastas áreas com uma miríade de redes independentes, interconectáveis e autônomas.
Reticulum é "Redes Imparáveis Para o Povo".</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>O Reticulum não é <em>uma</em> rede. é uma ferramenta para construir milhares de redes. Redes sem interruptores, espionagem, censura ou controle. Redes que podem livremente interoperar, se associar e disassociar com cada uma. Reticulum é "Redes para Seres Humanos".</p>
<p>Pela perspectiva do usuário, Reticulum permite a criação de aplicações que respeitam e empoderam a autonomia e soberania de comunidades e indivíduos. Reticulum provê comunicação digital segura que não pode ser submetida ao controle, manipulação e censura.</p>
<p>Reticulum permite a construção de redes pequenas ou de escala planetária, sem a necessidade de estruturas hierárquicas ou burocráticas que controlem elas, enquanto garante que indivíduos e comunidades tenham total soberania sobre suas próprias redes.</p>
<h2>Caracteristicas Notáveis</h2>
<p>Enquanto o Reticulum resolve o mesmo problema que todo framework de rede, isto é, para obter dados de forma confiável de um ponto para outro por um número de intermediários, faz de uma forma muito diferente de outras tecnologias de rede.</p>
<ul>
<li>Reticulum não utiliza endereços-fonte, nenhum pacote transmitido inclui informação de endereço, local, computador ou pessoa que enviou.</li>
<li>Não há controle central sobre o espaço de endereços no Reticulum. Qualquer um pode criar quantos endereços quiser, quando quiser.</li>
<li>Reticulum garante conexão de ponta-a-ponta. Novos endereços criados são acessíveis globalmente em questão de segundos ou minutos.</li>
<li>Endereços são soberanos e portáteis. Uma vez que um endereço foi criado, ele pode ser movido fisicamente para outro local da rede, e continuará acessível.</li>
<li>Toda conexão é assegurada com criptografia forte e moderna por padrão.</li>
<li>Todas as chaves de criptografia são efêmeras, e a comunicação fornece forward-secrecy por padrão.</li>
<li>Não é possível criar links sem criptografia em redes Reticulum.</li>
<li>Não é possível enviar pacotes sem criptografia para qualquer endereço da rede.</li>
<li>Endereços recebendo pacotes sem criptografia iram descartá-los como inválidos.</li>
</ul>
<p align="right"><a href="start_pt-br.html">Próxima Página: Começar</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_tr.html">Reticulum</a> | <a href="start_tr.html">Başlat</a> | <a href="hardware_tr.html">Donanım</a> | <a href="connect_tr.html">Bağlan</a> | <a href="docs_tr.html">Kılavuz</a> | <a href="crypto_tr.html">Şifreleme</a> | <a href="credits_tr.html">Hakkında</a> | <a href="https://github.com/markqvist/reticulum">Kaynak</a> | <a href="donate_tr.html">Destekle</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum, hazır bulunan donanım ile yerel ve geniş alan ağları oluşturmak için kriptografi tabanlı bir ağ yığınıdır. Reticulum, çok yüksek gecikme süresi ve son derece düşük bant genişliği koşullarında bile çalışmaya devam edebilir.</p>
<p>Reticulum'un vizyonu, herkesin kendi bağımsız iletişim ağlarını işletmesine ve bağımsız, birbirine bağlanabilir ve otonom ağları geniş alanlarda uygun maliyetli ve kolay bir şekilde kapsamak için olanak tanımaktır. Reticulum, Özgür Toplum İçin Durdurulamayan Ağlardır.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum, <em>bir</em> ağ değildir. <em>Binlerce ağ</em> oluşturmak için bir araçtır. Anahtarları, gözetleme, sansür ve kontrol olmadan çalışan ağlar. Serbestçe birbirleriyle etkileşime girebilen, ilişkilendirilebilen ve ayrılabilecek ağlar. Reticulum, İnsanlık İçin Vardır.</p>
<p>Kullanıcı perspektifinden bakıldığında, Reticulum toplulukların ve bireylerin özerkliğini ve egemenliğini saygılayan ve güçlendiren uygulamaların oluşturulmasına olanak tanır. Reticulum, dış kontrol, manipülasyon veya sansüre tabi olmayan güvenli dijital iletişim sağlar.</p>
<p>Reticulum, hiyerarşik veya bürokratik yapıların kontrol veya yönetimine ihtiyaç duymadan hem küçük hem de potansiyel olarak gezegen ölçeğinde ağların oluşturulmasını sağlar, bu süreçte bireylere ve topluluklara kendi ağ segmentleri üzerinde tam egemenlik sağlar.</p>
<h2>Dikkat Çeken Özellikler</h2>
<p>Reticulum, herhangi bir ağ yığınının çözdüğü aynı problemleri çözerken, veriyi güvenilir bir şekilde bir noktadan diğerine bir dizi aracı üzerinden iletmek bakımından diğer ağ teknolojilerinden çok farklı bir şekilde yapar.</p>
<ul>
<li>Reticulum kaynak adresleri kullanmaz. Gönderilen paketler, bunların kaynaklandığı adres, yer, makine veya kişi hakkında bilgi içermez.</li>
<li>Reticulum'da adres alanı üzerinde merkezi kontrol yoktur. İhtiyaç duyulduğunda herkes, ihtiyaçları doğrultusunda istedikleri kadar adresi tahsis edebilir.</li>
<li>Reticulum, uçtan uca bağlantıyı sağlar. Yeni oluşturulan adresler, birkaç saniye ila birkaç dakika içinde küresel olarak ulaşılabilir hale gelir.</li>
<li>Adresler <em>bağımsız</em> ve <em>taşınabilirdir</em>. Bir adres oluşturulduktan sonra, fiziksel olarak başka bir yere taşınabilir ve erişilebilirliğini sürdürebilir.</li>
<li>Tüm iletişim, <a href="crypto.html">güçlü, modern şifreleme</a> ile varsayılan olarak güvence altına alınmıştır.</li>
<li>Tüm şifreleme anahtarları geçici olup, iletişim varsayılan olarak forward secrecy sunar.</li>
<li>Reticulum ağlarında şifresiz bağlantılar kurmak mümkün değildir.</li>
<li>ın herhangi bir hedefine şifresiz paket göndermek mümkün değildir.</li>
<li>Şifresiz paketler alan konumlar, bunları geçersiz olarak görecektir.</li>
</ul>
<p align="right"><a href="start_tr.html">Sonraki Konu: Başlangıç</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum — це криптографічна мережна структура для створення локальних і широкомасштабних мереж з використанням доступного апаратного забезпечення. Reticulum може продовжувати працювати навіть за несприятливих умов з дуже високою затримкою і надзвичайно низькою пропускною здатністю.</p>
<p>Місія Reticulum — дозволити кожному створювати власні суверенні комунікаційні мережі та зробити їх дешевими й простими для покриття великих територій безліччю незалежних, взаємопідключених і автономних мереж. Reticulum — це мережі, котрі не зупинити для людей.</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum — це не одна мережа. Це інструмент для створення тисяч мереж. Мереж без вимикачів, спостереження, цензури й контролю. Мереж, які можуть вільно взаємодіяти, асоціюватися і роз’єднуватися між собою. Reticulum — це мережі для людей.</p>
<p>З погляду користувача, Reticulum дозволяє створювати додатки, які поважають і зміцнюють автономію та суверенітет громад і осіб. Reticulum забезпечує безпечну цифрову комунікацію, яку не можна піддавати зовнішньому контролю, маніпуляціям або цензурі.</p>
<p>Reticulum дозволяє будувати як малі, так і потенційно планетарні мережі без необхідності в ієрархічних або бюрократичних структурах для їх контролю чи управління, при цьому забезпечуючи повний суверенітет осіб і громад над їхніми власними сегментами мережі.</p>
<h2>Основні характеристики</h2>
<p>Хоча Reticulum вирішує ту ж проблему, що й будь-яка інша мережна структура, а саме забезпечити надійний перехід даних з однієї точки в іншу через кілька посередників, він робить це дуже по-іншому порівняно з іншими мережними технологіями.</p>
<ul>
<li>Reticulum не використовує адреси джерела. Жоден переданий пакет не містить інформації про адресу, місце, машину чи людину, з якої він надійшов.</li>
<li>В Reticulum немає центрального контролю над простором адрес. Кожен може виділяти стільки адрес, скільки йому потрібно, коли вони йому потрібні.</li>
<li>Reticulum забезпечує з’єднання від кінця до кінця. Новостворені адреси стають глобально доступними протягом декількох секунд або хвилин.</li>
<li>Адреси є самостійними та переносними. Після того, як адреса була створена, її можна фізично перемістити в інше місце в мережі й продовжувати бути доступною.</li>
<li>Усі комунікації за замовчуванням захищені сильним, сучасним шифруванням.</li>
<li>Усі ключі шифрування є тимчасовими, а комунікація за замовчуванням забезпечує вперед-секретність.</li>
<li>У мережах Reticulum неможливо встановити незашифровані з’єднання.</li>
<li>Неможливо надсилати незашифровані пакети в будь-які пункти призначення в мережі.</li>
<li>Пункти призначення, які отримують незашифровані пакети, відкидатимуть їх як недійсні.</li>
</ul>
<p align="right"><a href="start.html">Наступна тема: Розпочати</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./index_de.html">Deutsch</a> | <a href="./index.html">English</a> | <a href="./index_es.html">Español</a> | <a href="./index_nl.html">Nederlands</a> | <a href="./index_pl.html">Polski</a> | <a href="./index_pt-br.html">Português</a> | <a href="./index_tr.html">Türkçe</a> | <a href="./index_uk.html">Українська</a> | <a href="./index_jp.html">日本語</a> | <a href="./index_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_zh-cn.html">Reticulum</a> | <a href="start_zh-cn.html">开始使用</a> | <a href="hardware_zh-cn.html">硬件要求</a> | <a href="connect_zh-cn.html">连接</a> | <a href="docs_zh-cn.html">阅读手册</a> | <a href="crypto_zh-cn.html">密码学</a> | <a href="credits_zh-cn.html">致谢</a> | <a href="https://github.com/markqvist/reticulum">源代码</a> | <a href="donate_zh-cn.html">支持开发</a></div></center></p>
<h1>Reticulum</h1>
<p>Reticulum 是一个基于密码学的网络栈。人们可以用现有的硬件设备基于 Reticulum 搭建本地或是广域的网络。Reticulum 就算是在极高延迟与极低带宽的情况下仍旧可以运行。</p>
<p>Reticulum 的愿景是让任何人都能够搭建自己的通讯网络——用独立、互联、自治的网络覆盖广阔地域从未如此简单而廉价。Reticulum 是为了人民的、势不可挡的网络。</p>
<p align="center"><img width="30%" src="gfx/reticulum_logo_512.png"></p>
<p>Reticulum 不单单是<em>一个</em>网络。它是用来搭建<em>成千上万</em>网络的工具——成千上万个没有停止按钮(kill-switches)、没有监控、没有审查与控制但却能协调运作、有机结合的网络。Reticulum 是为了人类的网络。</p>
<p>在用户看来Reticulum 可以用来构建尊重社区与个人的自治性和独立性的应用。它提供了无法被外部操纵、篡改或是审查的安全数字通信。</p>
<p>Reticulum 可以用于搭建小型乃至覆盖全星球的网络体系而无需任何层级或是官僚化的控制管理结构。Reticulum 同时还能保证社区与个人对自己那部分网络的主权。</p>
<h2>值得注意的特质</h2>
<p>虽然 Reticulum 处理的是任何一个网络栈都在尝试解决的问题,即让数据通过数个中间节点,可靠地从一方传输到另一方,但其处理这一问题的方式与其他网络技术却有着很大差异。</p>
<ul>
<li>Reticulum 不使用源地址。数据包中不会包含源地址、发送位置、机器与操作者相关的信息。</li>
<li>Reticulum 中没有对于地址空间的中央控制。任何人都可以在需要的时候分配任意多的地址。</li>
<li>Reticulum 保证端到端连接性。新生的地址会在数秒到数分钟之内全局可及。</li>
<li>地址是<em><a href="https://zh.wikipedia.org/zh-cn/%E8%BA%AB%E4%BB%BD%E8%87%AA%E4%B8%BB%E6%9D%83">自主</a></em><em>便携</em>的。它们可以在物理上被移动到网络的另一位置并仍旧保持可及。</li>
<li>所有通信都默认由<a href="crypto_zh-cn.html">现代而健壮的加密</a>保护。</li>
<li>所有的密钥都是临时密钥,且通信自带前向保密。</li>
<li>无法在 Reticulum 网络中建立未加密连接。</li>
<li>无法在 Reticulum 网络中向任何目标发送未加密的数据包。</li>
<li>收到未加密数据包的目标会将其视为无效数据包并丢弃。</li>
</ul>
<p align="right"><a href="start_zh-cn.html">下一个主题: 开始使用</a></p>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./license-de.md_de.html">Deutsch</a> | <a href="./license-de.md.html">English</a> | <a href="./license-de.md_nl.html">Nederlands</a> | <a href="./license-de.md_pl.html">Polski</a> | <a href="./license-de.md_pt-br.html">Português</a> | <a href="./license-de.md_tr.html">Türkçe</a> | <a href="./license-de.md_jp.html">日本語</a> | <a href="./license-de.md_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Testnetz</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Krypto</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<pre><code>MIT Lizenz
Copyright (c) 2016-2024 Mark Qvist / unsigned.io
Hiermit wird jeder Person, die eine Kopie dieser Software und der zugehörigen Dokumentationsdateien (die &quot;Software&quot;) erwirbt, die kostenlose Erlaubnis erteilt
dieser Software und der zugehörigen Dokumentationsdateien (die &quot;Software&quot;) erhält, das Recht
der Software ohne Einschränkung zu handeln, einschließlich und ohne Einschränkung der Rechte
zu nutzen, zu kopieren, zu modifizieren, zusammenzuführen, zu veröffentlichen, zu vertreiben, zu unterlizenzieren und/oder zu verkaufen
der Software zu nutzen, zu kopieren, zu modifizieren, zu veröffentlichen, zu vertreiben, zu unterlizenzieren und/oder zu verkaufen, und
zu erlauben, dies zu tun, vorbehaltlich der folgenden Bedingungen:
Der obige Copyright-Hinweis und dieser Genehmigungshinweis müssen in allen Kopien oder wesentlichen Teilen der Software enthalten sein.
Kopien oder wesentlichen Teilen der Software enthalten sein.
DIE SOFTWARE WIRD OHNE MÄNGELGEWÄHR UND OHNE JEGLICHE AUSDRÜCKLICHE ODER
STILLSCHWEIGEND, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF DIE GARANTIE DER MARKTGÄNGIGKEIT,
EIGNUNG FÜR EINEN BESTIMMTEN ZWECK UND NICHTVERLETZUNG VON RECHTEN DRITTER. IN KEINEM FALL SIND DIE
DIE AUTOREN ODER URHEBERRECHTSINHABER FÜR JEGLICHE ANSPRÜCHE, SCHÄDEN ODER ANDERE
HAFTUNG, SEI ES AUS VERTRAG, UNERLAUBTER HANDLUNG ODER ANDERWEITIG, DIE SICH AUS,
AUS ODER IN VERBINDUNG MIT DER SOFTWARE ODER DER NUTZUNG ODER DEM SONSTIGEN UMGANG MIT DER
SOFTWARE.
</code></pre>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./license_de.html">Deutsch</a> | <a href="./license.html">English</a> | <a href="./license_es.html">Español</a> | <a href="./license_nl.html">Nederlands</a> | <a href="./license_pl.html">Polski</a> | <a href="./license_pt-br.html">Português</a> | <a href="./license_tr.html">Türkçe</a> | <a href="./license_uk.html">Українська</a> | <a href="./license_jp.html">日本語</a> | <a href="./license_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index.html">Reticulum</a> | <a href="start.html">Start</a> | <a href="hardware.html">Hardware</a> | <a href="connect.html">Connect</a> | <a href="docs.html">Manual</a> | <a href="crypto.html">Cryptography</a> | <a href="credits.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Source</a> | <a href="donate.html">Donate</a></div></center></p>
<pre><code>MIT License
Copyright (c) 2016-2024 Mark Qvist / unsigned.io
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the &quot;Software&quot;), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</code></pre>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./license_de.html">Deutsch</a> | <a href="./license.html">English</a> | <a href="./license_es.html">Español</a> | <a href="./license_nl.html">Nederlands</a> | <a href="./license_pl.html">Polski</a> | <a href="./license_pt-br.html">Português</a> | <a href="./license_tr.html">Türkçe</a> | <a href="./license_uk.html">Українська</a> | <a href="./license_jp.html">日本語</a> | <a href="./license_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_de.html">Reticulum</a> | <a href="start_de.html">Los Geht's</a> | <a href="hardware_de.html">Hardware</a> | <a href="connect_de.html">Verbinden</a> | <a href="docs_de.html">Handbuch</a> | <a href="crypto_de.html">Kryptographie</a> | <a href="credits_de.html">Credits</a> | <a href="https://github.com/markqvist/reticulum">Quellcode</a> | <a href="donate_de.html">Unterstützen</a></div></center></p>
<pre><code>MIT Lizenz
Copyright (c) 2016-2024 Mark Qvist / unsigned.io
Hiermit wird jeder Person, die eine Kopie dieser Software und der zugehörigen Dokumentationsdateien (die &quot;Software&quot;) erwirbt, die kostenlose Erlaubnis erteilt
dieser Software und der zugehörigen Dokumentationsdateien (die &quot;Software&quot;) erhält, das Recht
der Software ohne Einschränkung zu handeln, einschließlich und ohne Einschränkung der Rechte
zu nutzen, zu kopieren, zu modifizieren, zusammenzuführen, zu veröffentlichen, zu vertreiben, zu unterlizenzieren und/oder zu verkaufen
der Software zu nutzen, zu kopieren, zu modifizieren, zu veröffentlichen, zu vertreiben, zu unterlizenzieren und/oder zu verkaufen, und
zu erlauben, dies zu tun, vorbehaltlich der folgenden Bedingungen:
Der obige Copyright-Hinweis und dieser Genehmigungshinweis müssen in allen Kopien oder wesentlichen Teilen der Software enthalten sein.
Kopien oder wesentlichen Teilen der Software enthalten sein.
DIE SOFTWARE WIRD OHNE MÄNGELGEWÄHR UND OHNE JEGLICHE AUSDRÜCKLICHE ODER
STILLSCHWEIGEND, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF DIE GARANTIE DER MARKTGÄNGIGKEIT,
EIGNUNG FÜR EINEN BESTIMMTEN ZWECK UND NICHTVERLETZUNG VON RECHTEN DRITTER. IN KEINEM FALL SIND DIE
DIE AUTOREN ODER URHEBERRECHTSINHABER FÜR JEGLICHE ANSPRÜCHE, SCHÄDEN ODER ANDERE
HAFTUNG, SEI ES AUS VERTRAG, UNERLAUBTER HANDLUNG ODER ANDERWEITIG, DIE SICH AUS,
AUS ODER IN VERBINDUNG MIT DER SOFTWARE ODER DER NUTZUNG ODER DEM SONSTIGEN UMGANG MIT DER
SOFTWARE.
</code></pre>
</body>
</html>

View File

@ -1,32 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./license_de.html">Deutsch</a> | <a href="./license.html">English</a> | <a href="./license_es.html">Español</a> | <a href="./license_nl.html">Nederlands</a> | <a href="./license_pl.html">Polski</a> | <a href="./license_pt-br.html">Português</a> | <a href="./license_tr.html">Türkçe</a> | <a href="./license_uk.html">Українська</a> | <a href="./license_jp.html">日本語</a> | <a href="./license_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_es.html">Reticulum</a> | <a href="start_es.html">Empezar</a> | <a href="hardware_es.html">Hardware</a> | <a href="connect_es.html">Conectar</a> | <a href="docs_es.html">Manual</a> | <a href="crypto_es.html">Criptografía</a> | <a href="credits_es.html">Creditos</a> | <a href="https://github.com/markqvist/reticulum">Código fuente</a> | <a href="donate_es.html">Donar</a></div></center></p>
<pre><code>MIT License
Copyright (c) 2016-2024 Mark Qvist / unsigned.io
Por la presente se concede permiso, libre de cargos, a cualquier persona que obtenga una copia
de este software y de los archivos de documentación asociados (el &quot;Software&quot;), a utilizar el
Software sin restricción, incluyendo sin limitación los derechos a usar, copiar, modificar,
fusionar, publicar, distribuir, sublicenciar, y/o vender copias del Software, y a permitir a
las personas a las que se les proporcione el Software a hacer lo mismo, sujeto a las siguientes condiciones:
El aviso de copyright anterior y este aviso de permiso se incluirán en todas las copias o partes sustanciales del Software.
EL SOFTWARE SE PROPORCIONA &quot;COMO ESTÁ&quot;, SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O IMPLÍCITA,
INCLUYENDO PERO NO LIMITADO A GARANTÍAS DE COMERCIALIZACIÓN, IDONEIDAD PARA UN PROPÓSITO
PARTICULAR E INCUMPLIMIENTO. EN NINGÚN CASO LOS AUTORES O PROPIETARIOS DE LOS DERECHOS
DE AUTOR SERÁN RESPONSABLES DE NINGUNA RECLAMACIÓN, DAÑOS U OTRAS RESPONSABILIDADES, YA
SEA EN UNA ACCIÓN DE CONTRATO, AGRAVIO O CUALQUIER OTRO MOTIVO, DERIVADAS DE, FUERA DE O
EN CONEXIÓN CON EL SOFTWARE O SU USO U OTRO TIPO DE ACCIONES EN EL SOFTWARE.
</code></pre>
</body>
</html>

View File

@ -1,34 +0,0 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/water.css?v=6">
<meta charset="utf-8"/>
<title>Reticulum Network</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p><center><div class="top_menu lang_menu"><a href="./license_de.html">Deutsch</a> | <a href="./license.html">English</a> | <a href="./license_es.html">Español</a> | <a href="./license_nl.html">Nederlands</a> | <a href="./license_pl.html">Polski</a> | <a href="./license_pt-br.html">Português</a> | <a href="./license_tr.html">Türkçe</a> | <a href="./license_uk.html">Українська</a> | <a href="./license_jp.html">日本語</a> | <a href="./license_zh-cn.html">简体中文</a></div><div class="top_menu"><a href="index_uk.html">Reticulum</a> | <a href="start_uk.html">Початок</a> | <a href="hardware_uk.html">Обладнання</a> | <a href="connect_uk.html">Тестова мережа</a> | <a href="docs_uk.html">Довідник</a> | <a href="crypto_uk.html">Крипто</a> | <a href="credits_uk.html">Кредит</a> | <a href="https://github.com/markqvist/reticulum">Вихідний код</a> | <a href="donate_uk.html">Донати</a></div></center></p>
<pre><code>MIT Ліцензія
Авторські права (c) 2016-2024 Mark Qvist / unsigned.io
Цим надається безкоштовна ліцензія будь-якій особі, яка отримає копію
цього програмного забезпечення та супутніх документаційних файлів (&quot;Програмне забезпечення&quot;), використовувати
Програмне забезпечення без обмежень, зокрема, але не обмежуючись правами
на використання, копіювання, модифікацію, об'єднання, публікацію, розповсюдження, надання ліцензії, і/або продаж
копій Програмного забезпечення, а також дозволяти особам, яким надається це Програмне забезпечення, робити це, за умови дотримання наступних умов:
Усі копії або суттєві частини цього Програмного забезпечення повинні містити
вище зазначене повідомлення про авторські права та це повідомлення про дозвіл.
ПРОГРАМНЕ ЗАБЕЗПЕЧЕННЯ НАДАЄТЬСЯ &quot;ЯК Є&quot;, БЕЗ ЯКОЇ-НЕБУДЬ ГАРАНТІЇ, ВИРАЖЕНОЇ АБО
НЕВИРАЖЕНОЇ, ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЯМИ ПРОДОВЖУВАННЯ,
ПРИДАТНІСТЬ ДЛЯ ПЕВНОЇ МЕТИ ТА НЕПОРУШЕННЯ ПРАВ. В ЖОДНОМУ ВИПАДКУ
АВТОРИ АБО ВОЛОДІЛІ РОБОТОМ НЕ НЕСУТЬ ВІДПОВІДАЛЬНІСТЬ ЗА ЯКІ-БУДЬ
СКАРГИ, ШКОДИ АБО ІНШІ ЗОБОВ'ЯЗАННЯ, ЯК У РАМКАХ ДОГОВОРУ, ДЕЛІКТУ АБО ІНШОГО, ЩО ВИНИКАЮТЬ З,
АБО У ЗВ'ЯЗКУ З ПРОГРАМНИМ ЗАБЕЗПЕЧЕННЯМ, ЙОГО ВИКОРИСТАННЯМ АБО ІНШИМИ ДІЯМИ У
ПОРОДЖЕННІ ПРОГРАМНОГО ЗАБЕЗПЕЧЕННЯ.
</code></pre>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 255 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 259 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

Some files were not shown because too many files have changed in this diff Show More