Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexdovzhanyn/pico
An end-to-end encrypted zero knowledge messaging protocol
https://github.com/alexdovzhanyn/pico
Last synced: 9 days ago
JSON representation
An end-to-end encrypted zero knowledge messaging protocol
- Host: GitHub
- URL: https://github.com/alexdovzhanyn/pico
- Owner: alexdovzhanyn
- Created: 2019-03-30T01:07:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-19T02:31:26.000Z (over 5 years ago)
- Last Synced: 2024-09-17T13:39:36.079Z (about 2 months ago)
- Language: Elixir
- Size: 30.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pico
Pico is an end-to-end encrypted zero knowledge messaging protocol. It uses
SRP 6a in combination with AES ECB to establish an encrypted communication
channel between peers through TCP.## Installation
This package can be installed by adding `pico` to your list of dependencies
in `mix.exs`:```elixir
def deps do
[
{:pico, "~> 0.1.0"}
]
end
```The docs can be found at [https://hexdocs.pm/pico](https://hexdocs.pm/pico).