{"id":13623733,"url":"https://github.com/SpiderOak/Encryptr","last_synced_at":"2025-04-15T15:30:49.890Z","repository":{"id":12385530,"uuid":"15037688","full_name":"SpiderOak/Encryptr","owner":"SpiderOak","description":"Encryptr is a zero-knowledge cloud-based password manager / e-wallet powered by Crypton","archived":false,"fork":false,"pushed_at":"2017-11-29T20:57:45.000Z","size":27443,"stargazers_count":1573,"open_issues_count":125,"forks_count":136,"subscribers_count":69,"default_branch":"master","last_synced_at":"2024-11-08T11:46:42.588Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SpiderOak.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-12-09T04:02:45.000Z","updated_at":"2024-09-28T20:48:25.000Z","dependencies_parsed_at":"2022-09-17T07:50:16.830Z","dependency_job_id":null,"html_url":"https://github.com/SpiderOak/Encryptr","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpiderOak%2FEncryptr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpiderOak%2FEncryptr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpiderOak%2FEncryptr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpiderOak%2FEncryptr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpiderOak","download_url":"https://codeload.github.com/SpiderOak/Encryptr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249097786,"owners_count":21212352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T21:01:35.056Z","updated_at":"2025-04-15T15:30:48.956Z","avatar_url":"https://github.com/SpiderOak.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Security","Applications"],"sub_categories":["Password","Security"],"readme":"Encryptr\n========\n\n### [https://spideroak.com/solutions/encryptr](https://spideroak.com/solutions/encryptr)\n\n[Encryptr](https://spideroak.com/solutions/encryptr) is a zero-knowledge, cloud-based e-wallet / password manager powered by Crypton.\n\nEncryptr keeps it simple. It has three types of data it can store. Passwords, Credit Card numbers and general key/value pairs. It can easily be expanded to include other default entry types.\n\nIt is currently working on Android, iOS, and the Desktop – thanks to [NW.js](https://github.com/nwjs/nw.js).\n\n![screenshot](http://f.cl.ly/items/2n1r3V1D0L3k3p1q2T2O/encryptr-screenshot.png)\n\n## Requirements\n\n- Node and npm - [http://nodejs.org/](http://nodejs.org/)\n\t- Node package manager for the Cordova CLI and Grunt\n- Cordova CLI - [https://github.com/apache/cordova-cli/](https://github.com/apache/cordova-cli/)\n\t- Cordova / PhoneGap command line interface\n  - `npm install -g cordova`\n- Grunt - [http://gruntjs.com/](http://gruntjs.com/)\n\t- Build tool for minimising, running and tests\n  - `npm install -g grunt-cli`\n- PhantomJS - [http://phantomjs.org/](http://phantomjs.org/) Version: 1.9.7-15\n\t- Headless webkit for running tests\n- Cordova-icon and Cordova-splash - [https://github.com/AlexDisler/cordova-icon/](https://github.com/AlexDisler/cordova-icon/) and [https://github.com/AlexDisler/cordova-splash/](https://github.com/AlexDisler/cordova-splash/)\n  - `npm install -g cordova-icon` and `npm install -g cordova-splash`\n\n## Getting started\n\n- clone the project\n- cd into the project folder\n- With commands:\n  - `npm install` to install node_modules and js/css components (`npm install` will also run `bower install`).\n  - `cordova platform add ios` and/or `cordova platform add android`\n  - `cordova-icon \u0026\u0026 cordova-splash`\n- With script:\n  - iOS: `./build.sh ios`\n  - Android: `./build.sh android`\n  - Desktop: `./build.sh desktop`\n\n## Build Encryptr\n\n- iOS: `./build.sh ios`\n- Android: `./build.sh android`\n- Desktop: `./build.sh desktop`\n- All platforms: `./build.sh desktop ios android`\n\n## First test\n\nTo make sure everything is set up from the above, run your first tests:\n\n   `grunt test`\n\nSee the output for the steps taken to produce the working test rig. Most of the steps have `grunt` commands you can use to do them individually.\n\n## Workflow\n\nJavaScript files are in `src`. They are kept out of the www tree so that they can be linted without trying to lint the concatenated and minified versions. However, the index.html should have a script tag only for the JavaScript files in either `components` (managed by Bower) or `www/js`.\n\nBuilding and testing the project is normally done via the Grunt tasks below.\n\n## Grunt tasks\n\nWe use `grunt` commands to do most of the project operations, like:\n\n* running the app:\n  * ios: `grunt debug:ios`\n  * Android: `grunt debug:android`\n\n* testing: `grunt test`\n* linting the sources: `grunt jshint`\n* concatenating the sources: `grunt concat`\n* compiling the templates: `grunt dot`\n\nSee the steps taken for `grunt test` and `grunt debug:XXX` for the various operations needed to constitute the working app, and look at Gruntfile.js for the whole repertoire.\n\n### Cryptography Notice\n\nThis distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See [http://www.wassenaar.org/](http://www.wassenaar.org/) for more information.\n\nThe U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code.\n\n### License\n- GPLv3 - [https://github.com/devgeeks/Encryptr/blob/master/LICENSE](https://github.com/devgeeks/Encryptr/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSpiderOak%2FEncryptr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSpiderOak%2FEncryptr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSpiderOak%2FEncryptr/lists"}