go-masker icon indicating copy to clipboard operation
go-masker copied to clipboard

Simple utility of creating a mask for sensitive information

Results 3 go-masker issues
Sort by recently updated
recently updated
newest added

I'm running "go get -u github.com/ggwhite/go-masker" and getting the following error: ` ../../../../go/pkg/mod/github.com/ggwhite/[email protected]/masker.go:322:64: undefined: math.MaxInt ` Could you please upgrade the codebase for go 1.16 and above?

Hello, I want to mask all the characters in a field in my struct that is not a password. https://play.golang.org/p/xAdDleuk1KN ```go type personalDetails struct { SSN string `mask:"password"` } ```...

say for instance I have package main import ( masker "github.com/ggwhite/go-masker" ) func main() { masker.String(masker.MName, "ggwhite") masker.String(masker.MID, "A123456789") masker.String(masker.MMobile, "0987987987") } how would I be able to unmask the...