]> Cypherpunks.ru repositories - gogost.git/blob - cmd/cer-dane-hash/main.go
Unnecessary *ln
[gogost.git] / cmd / cer-dane-hash / main.go
1 // GoGOST -- Pure Go GOST cryptographic functions library
2 // Copyright (C) 2015-2023 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, version 3 of the License.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 // DANE's SPKI hash calculator
17 package main
18
19 import (
20         "crypto/sha256"
21         "crypto/x509"
22         "encoding/hex"
23         "encoding/pem"
24         "flag"
25         "fmt"
26         "io"
27         "log"
28         "os"
29 )
30
31 func main() {
32         flag.Parse()
33         data, err := io.ReadAll(os.Stdin)
34         if err != nil {
35                 log.Fatal(err)
36         }
37         b, _ := pem.Decode(data)
38         if b == nil || b.Type != "CERTIFICATE" {
39                 log.Fatal("no CERTIFICATE")
40         }
41         cer, err := x509.ParseCertificate(b.Bytes)
42         if err != nil {
43                 log.Fatal(err)
44         }
45         h := sha256.Sum256(cer.RawSubjectPublicKeyInfo)
46         fmt.Println(hex.EncodeToString(h[:]))
47 }