We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca5b9d7 commit d07bebaCopy full SHA for d07beba
README.md
@@ -22,3 +22,27 @@ interface OfferDescription {
22
images: string[];
23
}
24
```
25
+
26
+# SHA-1/SHA-256 checksums
27
28
+Releases will be published with SHA-1 and SHA-256 checksum string.
29
+Here is how to get or check the checksums of a downloaded file.
30
31
+**macOs**
32
33
+SHA-1: `openssl sha -sha1 Blockmarket-1.2.1.dmg`
34
35
+SHA-256: `openssl sha -sha256 Blockmarket-1.2.1.dmg`
36
37
+or
38
39
+SHA-1: `shasum -a 1 Blockmarket-1.2.1.dmg`
40
41
+SHA-256: `shasum -a 256 Blockmarket-1.2.1.dmg`
42
43
+**Windows**
44
45
+SHA-1: `certUtil -hashfile Blockmarket Setup 1.2.1.exe sha1`
46
47
+SHA-256: `certUtil -hashfile Blockmarket Setup 1.2.1.exe sha256`
48
0 commit comments