Mercurial > projects > sencrypt
comparison README @ 0:73af139d1a94
Initial revision
author | Guido Berhoerster <guido+sencrypt@berhoerster.name> |
---|---|
date | Tue, 28 Jan 2014 19:23:16 +0100 |
parents | |
children | f0ceb0ad20e7 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:73af139d1a94 |
---|---|
1 sencrypt | |
2 ======== | |
3 | |
4 Description | |
5 ----------- | |
6 | |
7 sencrypt and sdecrypt are utilities for encrypting and decrypting data with the | |
8 AES, DES, 3DES, and RC4 algorithms. It can read keys from files or ask for a | |
9 passphrase and use that together with a salt to derive a key using the PBKDF2 | |
10 key derivation function. | |
11 | |
12 sencrypt and sdecrypt are portable and compatible reimplementations of the | |
13 encrypt and decrypt utilities in Solaris/Illumos-based operating systems. | |
14 | |
15 Build Instructions | |
16 ------------------ | |
17 | |
18 sencrypt requires a POSIX:2004 compatible operating system, and needs GNU make, | |
19 GNU or BSD install, and the OpenSSL library to be installed. It has been tested | |
20 on Linux distributions, FreeBSD, Solaris and Illumos-derived distributions, | |
21 UnixWare, and OpenServer. | |
22 | |
23 License | |
24 ------- | |
25 | |
26 Except otherwise noted, all files are Copyright (C) 2014 Guido Berhoerster and | |
27 distributed under the following license terms: | |
28 | |
29 Copyright (C) 2014 Guido Berhoerster <guido+sencrypt@berhoerster.name> | |
30 | |
31 Permission is hereby granted, free of charge, to any person obtaining | |
32 a copy of this software and associated documentation files (the | |
33 "Software"), to deal in the Software without restriction, including | |
34 without limitation the rights to use, copy, modify, merge, publish, | |
35 distribute, sublicense, and/or sell copies of the Software, and to | |
36 permit persons to whom the Software is furnished to do so, subject to | |
37 the following conditions: | |
38 | |
39 The above copyright notice and this permission notice shall be included | |
40 in all copies or substantial portions of the Software. | |
41 | |
42 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
43 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
44 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
45 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | |
46 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | |
47 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | |
48 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |