aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/internal/cipherhw/generic.go
blob: 4e7d2cb04117d1f6f89dd6b763819276b0827d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build !amd64,!s390x gccgo appengine

package cipherhw

import "crypto/internal/boring"

func AESGCMSupport() bool {
	return boring.Enabled
}