You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anonymous self-destructing notes written in Go and with help Stanford Javascript Crypto Library ([SJCL](https://crypto.stanford.edu/sjcl/)) on client-side.
3
+

4
4
5
-
Server stores only encrypted data. JavaScript must be enabled, because notes decripted in the Web Browser with key from secret link. After reading encrypted note immediately removed from the database.
Latest stable version available on https://tornote.org
7
+
Anonymous self-destructing notes written in Go with help of Stanford JavaScript Crypto Library ([SJCL](https://crypto.stanford.edu/sjcl/)) on client-side.
8
8
9
-
## Security
10
-
11
-
How safe Tornote compared with other similar services? More than.
12
-
13
-
- All private data in the clear text is not leaving the client-side (without encryption).
9
+
The server stores only encrypted data. JavaScript must be enabled, because notes are decrypted in the web browser using the key from the secret link. After reading the encrypted note, it is immediately removed from the database.
14
10
15
-
- Server stored only anonymous encrypted data (without any reference to author or reader).
11
+
## Security
16
12
17
-
- Note decryption executed on the client-side via the SJCL. After reading the encrypted data removed on server.
13
+
How safe Tornote is compared with other similar services? More than many of them.
18
14
19
-
If you have ideas to improve the our safety/security so far as possible please post the issue.
15
+
+ All private data in clear text doesn't leave the client-side without being encrypted first
16
+
+ Server stores only anonymous encrypted data, without any reference to it's author or reader
17
+
+ Note decryption is executed on the client-side via the SJCL. After reading the encrypted note, it's data is removed from the server
20
18
21
-
## Getting started
22
-
23
-
```bash
24
-
$ go get -u github.com/osminogin/tornote
25
-
$ cd$GOPATH/src/github.com/osminogin/tornote
26
-
$ bower install
27
-
$ make install
28
-
$ tornote &
29
-
```
19
+
If you have ideas to improve safety/security please open a new issue.
0 commit comments