├── test ├── api.html ├── okbrowser.html ├── okbrowser.js ├── hwcrypto.test.js ├── backend.html ├── backend.test.js └── api.js ├── .gitignore ├── CONTRIBUTING.md ├── .travis.yml ├── package.json ├── snippets ├── toolbar.html └── test.html ├── Makefile ├── bower.json ├── LICENSE ├── hex2base.js ├── README.md ├── Gruntfile.js ├── demo └── sign.html ├── hwcrypto.js └── src └── hwcrypto.js /test/api.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/okbrowser.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /bower_components 3 | /node_modules 4 | /gh-pages 5 | /dist 6 | /build 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please read the [common contributing guidelines](https://github.com/open-eid/org/blob/master/CONTRIBUTING.md) before you continue! 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "0.12" 5 | 6 | install: 7 | - npm install 8 | 9 | before_script: 10 | - bower install 11 | 12 | script: 13 | - grunt 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hwcrypto", 3 | "main": "hwcrypto.js", 4 | "version": "0.0.9", 5 | "repository": { 6 | "type": "git", 7 | "url": "http://github.com/open-eid/hwcrypto.js.git" 8 | }, 9 | "devDependencies": { 10 | "bower": "^1.3.12", 11 | "grunt": "^0.4.5", 12 | "grunt-bower": "^0.18.0", 13 | "grunt-cli": "^0.1.13", 14 | "grunt-contrib-clean": "^0.6.0", 15 | "grunt-contrib-connect": "^0.9.0", 16 | "grunt-contrib-jshint": "^0.11.0", 17 | "grunt-contrib-uglify": "^0.8.0", 18 | "grunt-include-replace": "^3.0.0", 19 | "grunt-mocha": "^0.4.12", 20 | "grunt-sync-pkg": "^0.1.2", 21 | "mocha-phantomjs": "^3.5.3", 22 | "phantomjs": "^1.9.15" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /snippets/toolbar.html: -------------------------------------------------------------------------------- 1 |
This is a 2 | test page for 3 | hwcrypto.js (more information) 4 | implementing API v0.1 5 |
6 |7 | Switch to: 8 | HTTP | HTTPS 9 | | browser with module | browser without module | success 10 |
11 |