mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-03 04:51:12 +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)
|
|
}
|