updated readme
This commit is contained in:
parent
b86eb821ce
commit
8e1eaa2b42
@ -7,6 +7,9 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
Privacy Respecting Communication Network 📡
|
Privacy Respecting Communication Network 📡
|
||||||
</p>
|
</p>
|
||||||
|
<p align="center">
|
||||||
|
Anonymous social platform, mail, file sharing.
|
||||||
|
</p>
|
||||||
|
|
||||||
<img src='https://img.shields.io/github/license/beardog108/onionr'> <img src='https://gitlab.com/beardog/Onionr/badges/master/build.svg'> <img src='https://img.shields.io/badge/docker%20%F0%9F%90%8B-supported-success'> <img src='https://img.shields.io/badge/python%20version%20%F0%9F%90%8D-3.7+-blue'> <img src='https://img.shields.io/github/commit-activity/m/beardog108/onionr'>
|
<img src='https://img.shields.io/github/license/beardog108/onionr'> <img src='https://gitlab.com/beardog/Onionr/badges/master/build.svg'> <img src='https://img.shields.io/badge/docker%20%F0%9F%90%8B-supported-success'> <img src='https://img.shields.io/badge/python%20version%20%F0%9F%90%8D-3.7+-blue'> <img src='https://img.shields.io/github/commit-activity/m/beardog108/onionr'>
|
||||||
|
|
||||||
@ -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.
|
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)
|
![Tor stinks slide image](docs/tor-stinks-02.png)
|
||||||
|
|
||||||
@ -67,8 +70,6 @@ Not yet usable:
|
|||||||
* Instant messaging
|
* Instant messaging
|
||||||
|
|
||||||
|
|
||||||
**Onionr API and functionality is subject to non-backwards compatible change during pre-alpha development**
|
|
||||||
|
|
||||||
|
|
||||||
## Watch the talk from BSidesPDX 2019
|
## Watch the talk from BSidesPDX 2019
|
||||||
|
|
||||||
@ -158,7 +159,7 @@ Note: probably not tax deductible
|
|||||||
|
|
||||||
# Security
|
# 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.
|
No matter how good Onionr and other software gets, there will always be ways for clever or well-funded adversaries to break your security.
|
||||||
|
|
||||||
|
@ -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
|
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
|
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
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
import platform
|
|
||||||
import os
|
|
||||||
|
|
||||||
import filepaths
|
|
||||||
|
|
||||||
DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA"
|
DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA"
|
||||||
PASSWORD_LENGTH = 25
|
PASSWORD_LENGTH = 25
|
||||||
ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net'
|
ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net'
|
||||||
|
Loading…
Reference in New Issue
Block a user