mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-14 10:37:00 +02:00
8 lines
141 B
Go
8 lines
141 B
Go
package pki
|
|
|
|
import "strings"
|
|
|
|
func normalizeSerial(serial string) string {
|
|
return strings.Replace(strings.ToLower(serial), ":", "-", -1)
|
|
}
|