kriptopter/README.md

60 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

2018-07-01 19:26:53 +02:00
# Kriptopter
mini web app to use WebCrypto
## Install
```
2018-07-09 03:43:23 +02:00
git clone https://git.p2p.legal/dig/kriptopter
```
2018-07-09 03:25:24 +02:00
## Build
2018-07-09 12:55:35 +02:00
Build a single-page-app, embedding local ressources into 1 html file:
2018-07-09 03:25:24 +02:00
```javascript
node konstrui app.html kriptopter
```
## Usage
### Standalone
2018-07-09 03:25:24 +02:00
Open the file `kriptopter` in a browser.
2018-07-10 01:47:17 +02:00
_(Tested only under Iron/Chromium 63.0.3300.0 and Firefox 60.0.2.6730, please do the test in other browser and submit an issue, with a minimum stack trace, if you want to help )_
> Note on Firefox: you have to activate web components disabled by default in `about:config`, you need to set `dom.webcomponents.customelements.enabled` and `dom.webcomponents.shadowdom.enabled` to `true` for the app to work.
### Bookmarklet
2018-07-09 03:25:24 +02:00
To compile the app to be used as `javascript:` url in a bookmark, some characters need to be escaped,
you can use `kompilo.js` with nodejs:
```javascript
node kompilo
```
2018-07-09 03:25:24 +02:00
it will generate a `kriptoptlet` file containing the text to copy/paste in a new bookmark's url part.
2018-07-09 12:55:35 +02:00
Or you can use the online version (not secure):
2018-07-10 01:47:17 +02:00
```
javascript: win=window.open('','','titlebar=no,location=no'); fetch('https://git.p2p.legal/dig/kriptopter/raw/master/kriptopter').then(res=>res.text()).then(app=>win.document.write(app) ))
2018-07-09 03:25:24 +02:00
```
## Roadmap
2018-07-09 03:25:24 +02:00
- [ ] Implement WebCrypto
2018-07-09 03:41:19 +02:00
- [x] Simple password **(1.0.0)**
2018-07-09 03:25:24 +02:00
- [ ] Assymetric keypair
- [ ] Choose algorythm
2018-07-09 03:41:19 +02:00
- [~] WebCrypto spec **(1.5.0)**
2018-07-09 03:25:24 +02:00
- [ ] External algorythms
- [ ] Key derivation
2018-07-09 03:41:19 +02:00
- [x] Encrypt / decrypt **(1.0.0)**
2018-07-09 03:25:24 +02:00
- [ ] Signature
- [ ] Different input
2018-07-09 03:41:19 +02:00
- [x] Text (1.0.0)
- [x] File read/save **(1.5.0)**
2018-07-09 03:25:24 +02:00
- [ ] File drag n drop
2018-07-09 03:41:19 +02:00
- [x] External page content **(1.5.0)**
- [ ] App format
- [x] Single page webapp **(1.0.0)**
- [x] Bookmarklet **(1.2.0)**
- [ ] Browser extension + local electron app