-
Notifications
You must be signed in to change notification settings - Fork 8
/
README
75 lines (60 loc) · 2.4 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/***************************************************************************
* ___ ___
* / \ / \ VESvault
* \__ / \ __/ Encrypt Everything without fear of losing the Key
* \\ // https://vesvault.com https://ves.host
* \\ //
* ___ \\_//
* / \ / \ libVES: VESvault API library
* \__ / \ __/
* \\ // VES Utility: A command line interface to libVES
* \\ //
* \\_// - Key Management and Exchange
* / \ - Item Encryption and Sharing
* \___/ - Stream Encryption
*
*
* (c) 2018 VESvault Corp
* Jim Zubov <[email protected]>
*
* GNU General Public License v3
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
lib/: libVES (https://ves.host/docs/libVES-c)
src/: VES utility (https://ves.host/docs/ves-util)
[https://ci.appveyor.com/project/vesvault/libves-c]
libVES and VES utility interact with VESvault end-to-end encrypted repository
through VESvault REST API.
By using libVES or VES utility, you accept VES Integration Terms and Conditions
https://ves.host/terms_conditions
In summary - VES is always free, unless when it is integrated with a service
for the purpose of providing additional benefits to paying customers.
DOCUMENTATION:
https://ves.host
REQUIREMENTS:
OpenSSL (https://www.openssl.org/source/)
libcrypto
openssl/*.h
cURL (https://curl.haxx.se/download.html)
libcurl
curl/*.h
OPTIONAL:
libOQS (https://github.com/open-quantum-safe/liboqs)
See INSTALL for complete build instructions.
General GNU build:
./configure [--with-oqs]
make
make install
## installs libVES.so*, libVES.a, libVES.h, libVES/*.h, ves
Quick build on Windows (tested on MS VS):
configure.bat
nmake
If libcurl on Windows throws an SSL peer certificate error:
copy curl-ca-bundle.crt from etc/ to the directory where ves.exe resides
(or download the latest bundle from https://curl.haxx.se/ca/cacert.pem)