sha1

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: 0

Documentation

Overview

Package sha1 implements the SHA1 hash algorithm as defined in RFC 3174.

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-1 digest and returns the resulting slice.

Example
package main

import (
	"fmt"

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

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

}
Output:

9a5de4d2e62e2c0f3018eeff35e09ab3d41781fb

func DigestHex

func DigestHex(src string) (string, error)

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

Example
package main

import (
	"fmt"

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

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

}
Output:

9a5de4d2e62e2c0f3018eeff35e09ab3d41781fb

func DigestSum

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

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

Example
package main

import (
	"fmt"

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

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

}
Output:

676f79793a9a5de4d2e62e2c0f3018eeff35e09ab3d41781fb

func DigestSumHex

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

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

Example
package main

import (
	"fmt"

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

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

}
Output:

676f79793a9a5de4d2e62e2c0f3018eeff35e09ab3d41781fb

Types

This section is empty.

Jump to

Keyboard shortcuts

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