Sort supported ECDSA curves names

To ensure options are always printed in the same order.
pull/68/head
Hidde Beydals 5 years ago
parent 1f99a75049
commit d7f8a05612

@ -19,6 +19,7 @@ package main
import (
"crypto/elliptic"
"fmt"
"sort"
"strconv"
"strings"
)
@ -124,5 +125,6 @@ func ecdsaCurves() []string {
for k := range supportedECDSACurves {
keys = append(keys, k)
}
sort.Strings(keys)
return keys
}

Loading…
Cancel
Save