477071d673
Old Go versions miss cipher.NewGCMWithNonceSize, which causes: internal/speed/speed.go:95: undefined: cipher.NewGCMWithNonceSize
12 lines
136 B
Go
12 lines
136 B
Go
// +build !go1.5
|
|
|
|
package speed
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Run() {
|
|
fmt.Printf("Compile with Go 1.5 or higher to run the benchmarks\n")
|
|
}
|