├── www
├── css
│ └── .placeholder
├── favicon.ico
├── img
│ ├── init.gif
│ ├── loading.gif
│ ├── padlock.png
│ ├── toolbar.png
│ ├── uploading.gif
│ ├── decrypting.gif
│ ├── downloading.gif
│ ├── encrypting.gif
│ ├── bitcoin-button.png
│ ├── flattr-ezcrypt.png
│ ├── how-it-works.png
│ └── gradient.svg
├── about.php
├── tpl
│ ├── default
│ │ ├── nonexistant.tpl
│ │ ├── includes
│ │ │ ├── footer.tpl
│ │ │ ├── theme-select.tpl
│ │ │ ├── syntax-select.tpl
│ │ │ ├── new.tpl
│ │ │ └── header.tpl
│ │ ├── paste.tpl
│ │ ├── about.tpl
│ │ └── index.tpl
│ └── mobile
│ │ ├── includes
│ │ ├── new.tpl
│ │ └── header.tpl
│ │ └── index.tpl
├── index.php
├── inc
│ ├── db.inc.php
│ ├── db-pgsql.inc.php
│ ├── db-mysql.inc.php
│ ├── paste.class.php
│ ├── templates.class.php
│ ├── controller.class.php
│ ├── functions.inc.php
│ ├── config.inc.php
│ ├── ncrypt.rb
│ └── mobile.class.php
└── jslibs
│ ├── jquery.textchange.min.js
│ ├── jquery.textchange.js
│ ├── head-1.0.2-1.min.js
│ └── head-1.0.2-1.min.js.map
├── resources
├── ncrypt-pgsql.sql
├── ncrypt-mysql.sql
├── rewriterules.txt
└── cipher-modes.txt
├── .gitignore
├── source
├── codemirror.css
├── mobile.css
├── cookies.js
├── sjcl-md5
│ └── sjcl-md5.js
├── sjcl.backend.js
├── default.css
├── common.css
├── mimetypes.js
└── core.js
├── .gitmodules
├── cron
└── prune.php
├── develop
├── codemirror-combine-modes.sh
├── js-preprocess.sh
├── make-css-tpl.sh
├── make-javascripts-tpl.sh
├── css-sha1-versioned.sh
└── js-sha1-versioned.sh
├── Makefile
└── README.md
/www/css/.placeholder:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/www/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/favicon.ico
--------------------------------------------------------------------------------
/www/img/init.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/init.gif
--------------------------------------------------------------------------------
/www/img/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/loading.gif
--------------------------------------------------------------------------------
/www/img/padlock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/padlock.png
--------------------------------------------------------------------------------
/www/img/toolbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/toolbar.png
--------------------------------------------------------------------------------
/www/img/uploading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/uploading.gif
--------------------------------------------------------------------------------
/www/img/decrypting.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/decrypting.gif
--------------------------------------------------------------------------------
/www/img/downloading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/downloading.gif
--------------------------------------------------------------------------------
/www/img/encrypting.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/encrypting.gif
--------------------------------------------------------------------------------
/www/img/bitcoin-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/bitcoin-button.png
--------------------------------------------------------------------------------
/www/img/flattr-ezcrypt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/flattr-ezcrypt.png
--------------------------------------------------------------------------------
/www/img/how-it-works.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luggs-co/ncrypt/HEAD/www/img/how-it-works.png
--------------------------------------------------------------------------------
/www/about.php:
--------------------------------------------------------------------------------
1 | about();
6 |
--------------------------------------------------------------------------------
/www/tpl/default/nonexistant.tpl:
--------------------------------------------------------------------------------
1 | incl('includes/header.tpl');
3 | ?>
4 | Paste does not exist.
5 | incl('includes/footer.tpl');
7 |
--------------------------------------------------------------------------------
/www/tpl/default/includes/footer.tpl:
--------------------------------------------------------------------------------
1 |
2 |