2016-07-06 21:51:25 +02:00
|
|
|
// Package prefer_openssl tries to determine if we should prefer openssl
|
|
|
|
// on the platform we are running on.
|
2016-05-11 23:36:57 +02:00
|
|
|
package prefer_openssl
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"regexp"
|
2016-06-05 14:26:16 +02:00
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
2016-05-11 23:36:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// filePreferOpenSSL tells us if OpenSSL is faster than Go GCM on this machine.
|
2016-10-04 09:51:14 +02:00
|
|
|
// Go GCM is faster when the CPU has AES instructions and Go is v1.6 or higher.
|
2016-05-11 23:36:57 +02:00
|
|
|
//
|
|
|
|
// See https://github.com/rfjakob/gocryptfs/issues/23#issuecomment-218286502
|
|
|
|
// for benchmarks.
|
|
|
|
//
|
|
|
|
// filePreferOpenSSL takes an explicit filename so it can be tested with saved
|
|
|
|
// cpuinfo files instead of /proc/cpuinfo.
|
|
|
|
func filePreferOpenSSL(file string) bool {
|
|
|
|
ci, err := ioutil.ReadFile(file)
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
haveAes, err := regexp.Match(`(?m)^flags.*\baes\b`, ci)
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Println(err)
|
2016-05-11 23:36:57 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return !haveAes
|
|
|
|
}
|