diff --git a/README.md b/README.md index 663d4cef..ac15a97f 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@

Privacy Respecting Communication Network 📡

+

+ Anonymous social platform, mail, file sharing. +

@@ -40,7 +43,7 @@ Users are identified by ed25519/curve25519 public keys, which can be used to sig Onionr can be used for mail, as a social network, instant messenger, file sharing software, or for encrypted group discussion. -The whitepaper (subject to change prior to alpha release) is available [here](docs/whitepaper.md). +The whitepaper is available [here](docs/whitepaper.md). ![Tor stinks slide image](docs/tor-stinks-02.png) @@ -67,8 +70,6 @@ Not yet usable: * Instant messaging -**Onionr API and functionality is subject to non-backwards compatible change during pre-alpha development** - ## Watch the talk from BSidesPDX 2019 @@ -158,7 +159,7 @@ Note: probably not tax deductible # Security -Onionr is pre-alpha. This means it is unstable, probably insecure, and experimental. +Onionr is alpha software. This means it is unstable, probably insecure, and experimental. No matter how good Onionr and other software gets, there will always be ways for clever or well-funded adversaries to break your security. diff --git a/src/etc/onionrvalues.py b/src/etc/onionrvalues.py index e481fc59..91c0a70d 100755 --- a/src/etc/onionrvalues.py +++ b/src/etc/onionrvalues.py @@ -1,8 +1,11 @@ -""" - Onionr - Private P2P Communication +"""Onionr - Private P2P Communication. - This file defines values and requirements used by Onionr +This file defines values and requirements used by Onionr """ +import platform +import os + +import filepaths """ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,11 +20,6 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . """ -import platform -import os - -import filepaths - DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA" PASSWORD_LENGTH = 25 ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net'