String · Gopher Coding (original) (raw)

Tag: String

Generating UUIDs in GoUUIDs (Universally Unique Identifiers) serve as a standard for generating identifiers that are unique across time and space. In this blog post, we’ll explore how to generate UUIDs in Go using the google/uuid package. These can be especially useful when generating IDs across different systems - where it wouldn’t be possible to track using an auto incrementing integer.

#uuid#generate#package#id#identifier#string#random#universal

SHA3 Hash in Golang (256-bit)You can use the golang.org/x/crypto/sha3 [docs] package to perform SHA-3 encoding on a string. We have an example function below, it will take your string and write it as a hash. Then convert that binary back into a hexadecimal string using Sprintf. Advantages of Using SHA3 Security: SHA-3 was designed to provide higher security compared to SHA-2 by using a different construction called “sponge construction”, which makes it more resistant to various types of attacks, such as collision and preimage attacks.

#sha3#hash#hexadecimal#sprintf#fmt#crypto#string#package#security

MD5 Encoding in GolangYou can use the crypto/md5 [docs] package in Go to perform MD5 encoding on a string. We have an example function below, it will take your string and write it as a hash. Then convert that binary back into a hexadecimal string using Sprintf. Note: There are more modern approaches than md5 these days - and it isn’t recommended for many things, but definitely not password hashing. Here’s an example of how to use it:

#md5#encoding#hexadecimal#encode#hash#sprintf#fmt#crypto#string

Convert an io.ReadCloser to StringConvert an io.ReadCloser to StringUsing Go, we often make HTTP calls these days using net/http, which result in a response of type io.ReadCloser… which are hard to read for the layman (like me). What we really want to the response in the form of a string which we can read. This post will talk about how to convert these ReadCloser into strings. First we’ll look at the problem, then we have two different solutions.

#readcloser#io#convert#string#conversion#ioutil#buffer#memory#http#net