Golang : Load DSA public key from file example
Continue from previous tutorial on generating DSA private and public key. For this tutorial, we will learn how to load a DSA public key file and process the information.
package main
import (
"crypto/dsa"
"encoding/gob"
"fmt"
"os"
)
func main() {
//load public key
pubKeyFile, err := os.Open("DSApublic.key")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
decoder := gob.NewDecoder(pubKeyFile)
var publickey dsa.PublicKey
err = decoder.Decode(&publickey)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
pubKeyFile.Close()
//fmt.Printf("Public key : \n%x\n", pubKeyFile)
fmt.Printf("Public key parameter P: %v\n", publickey.Parameters.P)
fmt.Printf("Public key parameter Q: %v\n", publickey.Parameters.Q)
fmt.Printf("Public key parameter G: %v\n", publickey.Parameters.G)
fmt.Printf("Public key Y: %v\n", publickey.Y)
}
Hope this helps. Happy coding!
See also : Golang : Generate DSA private, public key and PEM files example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.7k Get website traffic ranking with Similar Web or Alexa
+4.9k Google : Block or disable caching of your website content
+5.7k CodeIgniter/PHP : Remove empty lines above RSS or ATOM xml tag
+9k Golang : How to use Gorilla webtoolkit context package properly
+4.6k JavaScript : Rounding number to decimal formats to display currency
+15.6k Golang : ROT47 (Caesar cipher by 47 characters) example
+7.2k Golang : Of hash table and hash map
+26.2k Golang : Calculate future date with time.Add() function
+6.9k Golang : How to call function inside template with template.FuncMap
+12.8k Golang : Convert IPv4 address to packed 32-bit binary format
+6.4k Grep : How to grep for strings inside binary data
+20.7k Golang : Convert date string to variants of time.Time type examples