2016-10-04 09:51:14 +02:00
|
|
|
// +build without_openssl
|
|
|
|
|
|
|
|
package stupidgcm
|
|
|
|
|
|
|
|
import (
|
2017-02-24 09:46:10 +01:00
|
|
|
"fmt"
|
2016-10-04 09:51:14 +02:00
|
|
|
"os"
|
2017-05-07 22:15:01 +02:00
|
|
|
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/exitcodes"
|
2016-10-04 09:51:14 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type stupidGCM struct{}
|
|
|
|
|
|
|
|
const (
|
2016-10-04 23:30:05 +02:00
|
|
|
// BuiltWithoutOpenssl indicates if openssl been disabled at compile-time
|
2016-10-04 09:51:14 +02:00
|
|
|
BuiltWithoutOpenssl = true
|
|
|
|
)
|
|
|
|
|
|
|
|
func errExit() {
|
2017-02-24 09:46:10 +01:00
|
|
|
fmt.Fprintln(os.Stderr, "gocryptfs has been compiled without openssl support but you are still trying to use openssl")
|
2017-05-07 22:15:01 +02:00
|
|
|
os.Exit(exitcodes.OpenSSL)
|
2016-10-04 09:51:14 +02:00
|
|
|
}
|
|
|
|
|
2017-04-08 02:09:28 +02:00
|
|
|
func New(_ []byte, _ bool) stupidGCM {
|
2016-10-04 09:51:14 +02:00
|
|
|
errExit()
|
2016-12-10 13:14:20 +01:00
|
|
|
// Never reached
|
|
|
|
return stupidGCM{}
|
2016-10-04 09:51:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g stupidGCM) NonceSize() int {
|
|
|
|
errExit()
|
2016-12-10 13:14:20 +01:00
|
|
|
return -1
|
2016-10-04 09:51:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g stupidGCM) Overhead() int {
|
|
|
|
errExit()
|
2016-12-10 13:14:20 +01:00
|
|
|
return -1
|
2016-10-04 09:51:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g stupidGCM) Seal(_, _, _, _ []byte) []byte {
|
|
|
|
errExit()
|
2016-12-10 13:14:20 +01:00
|
|
|
return nil
|
2016-10-04 09:51:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g stupidGCM) Open(_, _, _, _ []byte) ([]byte, error) {
|
|
|
|
errExit()
|
2016-12-10 13:14:20 +01:00
|
|
|
return nil, nil
|
2016-10-04 09:51:14 +02:00
|
|
|
}
|