1// Copyright (c) 2016, Google Inc. 2// 3// Permission to use, copy, modify, and/or distribute this software for any 4// purpose with or without fee is hereby granted, provided that the above 5// copyright notice and this permission notice appear in all copies. 6// 7// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 15package runner 16 17import ( 18 "encoding/binary" 19 20 "golang.org/x/crypto/chacha20" 21) 22 23// Use a different key from crypto/rand/deterministic.c. 24var deterministicRandKey = []byte("runner deterministic key 0123456") 25 26type deterministicRand struct { 27 numCalls uint64 28} 29 30func (d *deterministicRand) Read(buf []byte) (int, error) { 31 for i := range buf { 32 buf[i] = 0 33 } 34 var nonce [12]byte 35 binary.LittleEndian.PutUint64(nonce[:8], d.numCalls) 36 cipher, err := chacha20.NewUnauthenticatedCipher(deterministicRandKey, nonce[:]) 37 if err != nil { 38 return 0, err 39 } 40 cipher.XORKeyStream(buf, buf) 41 d.numCalls++ 42 return len(buf), nil 43} 44