golang file to hash

王林
Release: 2023-05-13 13:22:36
Original
673 people have browsed it

Golang is a strongly typed, statically compiled language with high efficiency and concurrency. Golang has a rich standard library and third-party libraries that can be used for various purposes. This article will explain how to use Golang to convert files into hashes.

Hash is a technology that maps data of any length into a fixed-length encrypted string. The hash algorithm can map given data to a smaller, fixed, irreversible value, and the results of the hash algorithm can be used for data integrity verification, digital signatures, etc. In many scenarios, we need to use hash algorithms to verify the integrity of files, such as verification when downloading files, reliability of file transmission, etc.

Golang’s standard library provides a variety of hash algorithms, including MD5, SHA1, SHA256, etc. These hash algorithms all inherit the hash.Hash interface, so they can be operated in the same way.

The following is a simple sample code that demonstrates how to use Golang to calculate the MD5 hash value of a file:

package main

import (
    "crypto/md5"
    "fmt"
    "io"
    "os"
)

func main() {
    file, err := os.Open("testfile.txt")
    if err != nil {
        panic(err)
    }
    defer file.Close()

    h := md5.New()
    if _, err := io.Copy(h, file); err != nil {
        panic(err)
    }

    fmt.Printf("MD5 Hash: %x", h.Sum(nil))
}
Copy after login

In this sample code, we use the Open method in the os package A file testfile.txt is opened. Next, we used the New method in the md5 package to create an md5 hash object h, and used the Copy method in the io package to copy the file contents into the hash object. Finally, we use the Sum method of the hash object to calculate the hash value and print it out using %x format.

In addition to MD5, we can also use hash algorithms such as SHA1 and SHA256. We only need to replace md5.New with sha1.New or sha256.New. For example, we can change the part of the sample code that calculates the MD5 hash value to calculate the SHA256 hash value:

h := sha256.New()
if _, err := io.Copy(h, file); err != nil {
    panic(err)
}

fmt.Printf("SHA256 Hash: %x", h.Sum(nil))
Copy after login

In addition to calculating the hash value of a single file, Golang's standard library also provides some methods that can Conveniently calculate hashes of all files in a directory. For example, we can use the Walk method in the filepath package to traverse the directory and subdirectories and calculate the hash values ​​of all files as follows:

package main

import (
    "crypto/md5"
    "fmt"
    "io"
    "os"
    "path/filepath"
)

func main() {
    root := "."
    err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
        if err != nil {
            return err
        }

        if !info.Mode().IsRegular() {
            return nil
        }

        file, err := os.Open(path)
        if err != nil {
            return err
        }
        defer file.Close()

        h := md5.New()
        if _, err := io.Copy(h, file); err != nil {
            return err
        }

        fmt.Printf("%x  %s
", h.Sum(nil), path)
        return nil
    })
    if err != nil {
        panic(err)
    }
}
Copy after login

In this sample code, we use the Walk method in the filepath package The current directory and its subdirectories are traversed, and MD5 hash values ​​are calculated for all files and printed. In the callback function of the Walk method, we first determine whether the current file is a normal file. If not, return nil. Otherwise, open the file, calculate the hash value, and print it out.

In addition to calculating the hash value of a single file and all files in a directory, we can also calculate the hash value of the file in chunks. This method can be used to process large files by dividing the file into several blocks, calculating the hash value of each block separately, and finally concatenating the hash values ​​of all blocks to calculate the hash value of the entire file.

To sum up, Golang provides a wealth of hash algorithms and methods for operating files, which can easily calculate the hash value of the file. Whether calculating the hash value of a single file, all files in a directory, or processing the hash value of large files in chunks, Golang provides a simple and efficient solution.

The above is the detailed content of golang file to hash. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!