initial commit

This commit is contained in:
2014-02-05 14:27:09 +01:00
commit b359c34ed2
142 changed files with 9291 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
=AES=
==encrypt==
{{{class="brush: bash; ; toolbar: false;"
$ openssl enc -aes-128-cbc -pass pass:secret -in file.txt -out file.txt.aes
}}}
==decrypt==
{{{class="brush: bash; ; toolbar: false;"
$ openssl enc -aes-128-cbc -d -pass pass:secret -in file.txt.aes
}}}
[ [[index|Go home]] ]