aboutsummaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2021-08-19 16:36:38 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2021-08-20 16:44:10 +0000
commit700743137462471189f58ee85fe64754cd340322 (patch)
tree40e2c0ec41a6ccc01852424b496016c831be2cf3 /src/internal
parent303446395d8bfdd05da8c69f1f3f862e7e7a35db (diff)
downloadgo-700743137462471189f58ee85fe64754cd340322.tar.gz
go-700743137462471189f58ee85fe64754cd340322.zip
crypto/rand, internal/syscall/unix: don't use getentropy on iOS
CL 302489 switched crypto/rand to use getentropy on darwin, however this function is not available on iOS. Enable getentropy only on macOS and disable it on iOS. Fixes #47812 Change-Id: Ib7ba5d77346aee87904bb93d60cacc845f5c0089 Reviewed-on: https://go-review.googlesource.com/c/go/+/343609 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/syscall/unix/getentropy_darwin.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/syscall/unix/getentropy_darwin.go b/src/internal/syscall/unix/getentropy_darwin.go
index e1a410a454..c75006bf8b 100644
--- a/src/internal/syscall/unix/getentropy_darwin.go
+++ b/src/internal/syscall/unix/getentropy_darwin.go
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
+//go:build darwin && !ios
+// +build darwin,!ios
+
package unix
import (