From 768fc328d2af734681894e760aad3ab69ceaf5f6 Mon Sep 17 00:00:00 2001 From: cyBerta Date: Fri, 9 Jul 2021 02:21:50 +0200 Subject: remove go directory --- go/src/github.com/willscott/goturn | 1 - .../se.leap.bitmaskclient/pgpverify/pgpverify.go | 45 ---------------------- 2 files changed, 46 deletions(-) delete mode 160000 go/src/github.com/willscott/goturn delete mode 100644 go/src/se.leap.bitmaskclient/pgpverify/pgpverify.go (limited to 'go/src') diff --git a/go/src/github.com/willscott/goturn b/go/src/github.com/willscott/goturn deleted file mode 160000 index 19f41278..00000000 --- a/go/src/github.com/willscott/goturn +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 19f41278d0c9251d64e0ee29f37d51e87a24a97b diff --git a/go/src/se.leap.bitmaskclient/pgpverify/pgpverify.go b/go/src/se.leap.bitmaskclient/pgpverify/pgpverify.go deleted file mode 100644 index 1388a33c..00000000 --- a/go/src/se.leap.bitmaskclient/pgpverify/pgpverify.go +++ /dev/null @@ -1,45 +0,0 @@ -package pgpverify - -import ( - "os" - "strings" - - "golang.org/x/crypto/openpgp" -) - -// PgpVerifier - exported struct used for file verification -type PgpVerifier struct { - Logger Logger -} - -// Logger - logging interface -type Logger interface { - Log(msg string) -} - -// Verify checks if a file was signed with the correct pgp key -// using a PEM formatted signature and a corresponding public key -func (pgpv *PgpVerifier) Verify(signature string, publicKey string, targetPath string) bool { - keyRingReader := strings.NewReader(publicKey) - signatureReader := strings.NewReader(signature) - - verificationTarget, err := os.Open(targetPath) - if err != nil { - pgpv.Logger.Log("Open verification target: " + err.Error()) - return false - } - - keyring, err := openpgp.ReadArmoredKeyRing(keyRingReader) - if err != nil { - pgpv.Logger.Log("Read Armored Key Ring: " + err.Error()) - return false - } - _, err = openpgp.CheckArmoredDetachedSignature(keyring, verificationTarget, signatureReader) - if err != nil { - pgpv.Logger.Log("Verification failed: " + err.Error()) - return false - } - pgpv.Logger.Log("Successfully verified: entity.Identities") - return true -} - -- cgit v1.2.3