]> Cypherpunks.ru repositories - gogost.git/blob - INSTALL
Preparing for release
[gogost.git] / INSTALL
1 Preferable way is to download tarball with the signature from official
2 website and, for example, run tests with benchmarks:
3
4     % wget http://gogost.cypherpunks.ru/gogost-1.1.tar.xz
5     % wget http://gogost.cypherpunks.ru/gogost-1.1.tar.xz.sig
6     % gpg --verify gogost-1.1.tar.xz.sig gogost-1.1.tar.xz
7     % xz -d < gogost-1.1.tar.xz | tar xf -
8     % make -C gogost-1.1 all bench
9     % echo hello world | ./gogost-1.1/streebog256
10     f72018189a5cfb803dbe1f2149cf554c40093d8e7f81c21e08ac5bcd09d9934d
11
12 And then you can include its source code in your project for example
13 like this:
14
15     % mkdir -p myproj/src
16     % export GOPATH=$PWD/myproj
17     % cd myproj/src
18     % cat > main.go <<EOF
19     package main
20
21     import (
22         "encoding/hex"
23         "fmt"
24
25         "cypherpunks.ru/gogost/gost34112012256"
26     )
27
28     func main() {
29         h := gost34112012256.New()
30         h.Write([]byte("hello world"))
31         fmt.Println(hex.EncodeToString(h.Sum(nil)))
32     }
33     EOF
34     % cp -r ../../gogost-1.1/src/cypherpunks.ru .
35     % go run main.go
36     c600fd9dd049cf8abd2f5b32e840d2cb0e41ea44de1c155dcd88dc84fe58a855
37
38 You have to verify downloaded tarballs integrity and authenticity to be
39 sure that you retrieved trusted and untampered software. GNU Privacy
40 Guard is used for that purpose.
41
42 For the very first time it is necessary to get signing public key and
43 import it. It is provided below, but you should check alternative
44 resources.
45
46     pub   rsa2048/0x82343436696FC85A 2016-09-13 [SC]
47           CEBD 1282 2C46 9C02 A81A  0467 8234 3436 696F C85A
48     uid   GoGOST releases <gogost at cypherpunks dot ru>
49
50     Look in PUBKEY.asc file.
51     % gpg --auto-key-locate dane --locate-keys gogost at cypherpunks dot ru
52     % gpg --auto-key-locate wkd --locate-keys gogost at cypherpunks dot ru