sha256

package
v0.0.0-...-82e7740 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 18, 2019 License: MIT Imports: 3 Imported by: 1

Documentation

Overview

Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-2.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func Digest

func Digest(src []byte) ([]byte, error)

Digest calculates the SHA-256 digest and returns the resulting slice.

Example
package main

import (
	"fmt"

	"gopkg.in/goyy/goyy.v0/util/crypto/sha256"
)

func main() {
	dst, _ := sha256.Digest([]byte("goyy"))
	fmt.Println(fmt.Sprintf("%x", dst))

}
Output:

294d5a5ab822caec5c8ef8db496a44a5f185d83feb0699ab69e79b51166a1116

func DigestHex

func DigestHex(src string) (string, error)

DigestHex calculates the SHA-256 digest and returns the resulting hex string.

Example
package main

import (
	"fmt"

	"gopkg.in/goyy/goyy.v0/util/crypto/sha256"
)

func main() {
	dst, _ := sha256.DigestHex("goyy")
	fmt.Println(dst)

}
Output:

294d5a5ab822caec5c8ef8db496a44a5f185d83feb0699ab69e79b51166a1116

func DigestSum

func DigestSum(src, sum []byte) (dst []byte, err error)

DigestSum calculates the SHA-256 digest to sum and returns the resulting slice.

Example
package main

import (
	"fmt"

	"gopkg.in/goyy/goyy.v0/util/crypto/sha256"
)

func main() {
	dst, _ := sha256.DigestSum([]byte("goyy"), []byte("goyy:"))
	fmt.Println(fmt.Sprintf("%x", dst))

}
Output:

676f79793a294d5a5ab822caec5c8ef8db496a44a5f185d83feb0699ab69e79b51166a1116

func DigestSumHex

func DigestSumHex(src, sum string) (dst string, err error)

DigestSumHex calculates the SHA-256 digest to sum and returns the resulting hex string.

Example
package main

import (
	"fmt"

	"gopkg.in/goyy/goyy.v0/util/crypto/sha256"
)

func main() {
	dst, _ := sha256.DigestSumHex("goyy", "goyy:")
	fmt.Println(dst)

}
Output:

676f79793a294d5a5ab822caec5c8ef8db496a44a5f185d83feb0699ab69e79b51166a1116

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL