mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Experiments with RSA encryption
This commit is contained in:
parent
11608e5f64
commit
bbcbfdc150
44 changed files with 40066 additions and 71 deletions
12
gulpfile.js
12
gulpfile.js
|
|
@ -118,6 +118,12 @@ cfg.paths.js = {
|
|||
'vendors/openpgp/openpgp-0.5.1.min.js'
|
||||
]
|
||||
},
|
||||
cryptico: {
|
||||
name: 'cryptico.min.js',
|
||||
src: [
|
||||
'vendors/cryptico/cryptico.min.js'
|
||||
]
|
||||
},
|
||||
libs: {
|
||||
name: 'libs.js',
|
||||
src: [
|
||||
|
|
@ -361,6 +367,12 @@ gulp.task('js:boot', function() {
|
|||
.pipe(gulp.dest(cfg.paths.staticJS));
|
||||
});
|
||||
|
||||
gulp.task('js:cryptico', function() {
|
||||
return gulp.src(cfg.paths.js.cryptico.src)
|
||||
.pipe(rename(cfg.paths.js.cryptico.name))
|
||||
.pipe(gulp.dest(cfg.paths.staticJS));
|
||||
});
|
||||
|
||||
gulp.task('js:openpgp', function() {
|
||||
return gulp.src(cfg.paths.js.openpgp.src)
|
||||
.pipe(rename(cfg.paths.js.openpgp.name))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue