mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 06:01:25 +00:00
8 lines
124 B
Go
8 lines
124 B
Go
|
package crypto
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
func sanitizeString(input string) string {
|
||
|
return strings.ToValidUTF8(input, "\ufffd")
|
||
|
}
|