You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It encrypts deterministically (convergently) because it encrypts an object using the object's hash (SHA256) as the secret key (which can than be shared as a 'grant').
20
-
21
-
It is content-addressed because encrypted objects are stored at an address determined by the encrypted object's hash (SHA256 again).
22
-
23
-

24
-
25
24
## Installing
26
25
27
26
Hoard should be go-gettable with:
28
27
29
28
```shell
30
-
# Install the Hoar-Daemon hoard:
29
+
# Install Hoard-Daemon:
31
30
go get github.com/monax/hoard/cmd/hoard
32
31
33
-
# Install the Hoar-Control hoarctl:
32
+
# Install Hoard-Control:
34
33
go get github.com/monax/hoard/cmd/hoarctl
35
34
```
36
35
## Usage
@@ -45,7 +44,7 @@ hoard
45
44
hoard --logging
46
45
```
47
46
48
-
With no config file by default `hoard` will run a memory storage backend from which all objects will be lost when `hoard` is terminated. You can initialise a Hoard config by running one of:
47
+
You can initialise a Hoard config by running one of:
0 commit comments