safedb 0.01.0002 → 0.01.0003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -1
- data/bin/safe +1 -0
- data/lib/keytools/kdf.scrypt.rb +0 -2
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a5b5879d5892ffaec119567912fbb9415c00b6696f251509822fed70905695f
|
4
|
+
data.tar.gz: eebaae89c1cba2b0c46e9ebecf2f8ed880b397d6167b766b58abe0a92be7e570
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 499040f9560c074a611d3ce783925d3283ca8a69a3a2e775e6101278a7f5ab714e8ccc8acc60fedc5d3743c54aa9a24079e9e9e5b88636a7e9bc40575891fecb
|
7
|
+
data.tar.gz: 1050a6d27d1847ce0147ca3a9192b9b3888735002ff1a8710ffc7d81aea0d66d839b25d82d6b9b36071806cde7a548263f24cae8e86a79733e6a1f089ea3f408
|
data/README.md
CHANGED
@@ -15,8 +15,11 @@ Attackers would need to bring together the crypt material, the salt file and you
|
|
15
15
|
|
16
16
|
### Command to Acquire Repository State Key
|
17
17
|
|
18
|
+
Note = you only need 10 base64 chars to hold the 40 character hex hash.
|
19
|
+
|
18
20
|
```
|
19
|
-
git log -1 --format
|
21
|
+
git rev-parse `git log -1 --format=%h HEAD` # acquire the full commit hash hex string
|
22
|
+
git log -1 --format=%h HEAD # pick up the 1st 7 commit hash characters
|
20
23
|
```
|
21
24
|
|
22
25
|
## safe's delivery pipeline
|
@@ -37,6 +40,14 @@ The pipeline process is triggered when new software arrives in the safedb github
|
|
37
40
|
- if tests pass the safedb gem is deployed to RubyGems.org
|
38
41
|
- website documentation is built and posted to [safedb.net](https://www.safedb.net)
|
39
42
|
|
43
|
+
### Command to Acquire Repository State Key
|
44
|
+
|
45
|
+
Note = you only need 10 base64 chars to hold the 40 character hex hash.
|
46
|
+
|
47
|
+
```
|
48
|
+
git rev-parse `git log -1 --format=%h HEAD` # acquire the full commit hash hex string
|
49
|
+
git log -1 --format=%h HEAD # pick up the 1st 7 commit hash characters
|
50
|
+
```
|
40
51
|
|
41
52
|
safe database introduction
|
42
53
|
-----------
|
data/bin/safe
CHANGED
data/lib/keytools/kdf.scrypt.rb
CHANGED
data/lib/version.rb
CHANGED