You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@roborobs1023 I think it is not the responsibility of this package to unmask the value after masked. Why? Because when you want to mask value, you actually already know the exact value or unmasked value before you mask it. Hence, if you want to get an unmasked value, just use an old variable. For example:
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 strings for use in sql query statement?
The text was updated successfully, but these errors were encountered: