libgo: update to Go 1.11
[official-gcc.git] / libgo / go / crypto / internal / subtle / aliasing.go
blob812ce3c65522bddcbdfe4809c28b8c06fc9e6984
1 // Copyright 2018 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build !appengine
7 // Package subtle implements functions that are often useful in cryptographic
8 // code but require careful thought to use correctly.
9 //
10 // This is a mirror of golang.org/x/crypto/internal/subtle.
11 package subtle // import "crypto/internal/subtle"
13 import "unsafe"
15 // AnyOverlap reports whether x and y share memory at any (not necessarily
16 // corresponding) index. The memory beyond the slice length is ignored.
17 func AnyOverlap(x, y []byte) bool {
18 return len(x) > 0 && len(y) > 0 &&
19 uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) &&
20 uintptr(unsafe.Pointer(&y[0])) <= uintptr(unsafe.Pointer(&x[len(x)-1]))
23 // InexactOverlap reports whether x and y share memory at any non-corresponding
24 // index. The memory beyond the slice length is ignored. Note that x and y can
25 // have different lengths and still not have any inexact overlap.
27 // InexactOverlap can be used to implement the requirements of the crypto/cipher
28 // AEAD, Block, BlockMode and Stream interfaces.
29 func InexactOverlap(x, y []byte) bool {
30 if len(x) == 0 || len(y) == 0 || &x[0] == &y[0] {
31 return false
33 return AnyOverlap(x, y)