Retro68/gcc/libgo/go/crypto/rand/rand_js.go

29 lines
702 B
Go
Raw Normal View History

2019-06-02 15:48:37 +00:00
// Copyright 2018 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.
//go:build js && wasm
2019-06-02 15:48:37 +00:00
package rand
import "syscall/js"
func init() {
Reader = &reader{}
}
var jsCrypto = js.Global().Get("crypto")
var uint8Array = js.Global().Get("Uint8Array")
2019-06-02 15:48:37 +00:00
// reader implements a pseudorandom generator
// using JavaScript crypto.getRandomValues method.
// See https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues.
type reader struct{}
func (r *reader) Read(b []byte) (int, error) {
a := uint8Array.New(len(b))
2019-06-02 15:48:37 +00:00
jsCrypto.Call("getRandomValues", a)
js.CopyBytesToGo(b, a)
2019-06-02 15:48:37 +00:00
return len(b), nil
}