summaryrefslogtreecommitdiff
path: root/vendor/github.com/google/uuid/version4.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-08-31 09:45:26 -0400
committerGitHub <noreply@github.com>2020-08-31 09:45:26 -0400
commit3352e8b0e6bb77344a4470ef86b2d2dc6262a668 (patch)
tree3aa275c9a348f02ed2c6638fcea57e04c21b5aa1 /vendor/github.com/google/uuid/version4.go
parent24a335b0aeedfb04dea5b0d498b5984458f73779 (diff)
parentcf147050d40296d15ec92cb97b55351cc236735e (diff)
downloadpodman-3352e8b0e6bb77344a4470ef86b2d2dc6262a668.tar.gz
podman-3352e8b0e6bb77344a4470ef86b2d2dc6262a668.tar.bz2
podman-3352e8b0e6bb77344a4470ef86b2d2dc6262a668.zip
Merge pull request #7507 from containers/dependabot/go_modules/github.com/google/uuid-1.1.2
Bump github.com/google/uuid from 1.1.1 to 1.1.2
Diffstat (limited to 'vendor/github.com/google/uuid/version4.go')
-rw-r--r--vendor/github.com/google/uuid/version4.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/vendor/github.com/google/uuid/version4.go b/vendor/github.com/google/uuid/version4.go
index 84af91c9f..c110465db 100644
--- a/vendor/github.com/google/uuid/version4.go
+++ b/vendor/github.com/google/uuid/version4.go
@@ -27,8 +27,13 @@ func New() UUID {
// equivalent to the odds of creating a few tens of trillions of UUIDs in a
// year and having one duplicate.
func NewRandom() (UUID, error) {
+ return NewRandomFromReader(rander)
+}
+
+// NewRandomFromReader returns a UUID based on bytes read from a given io.Reader.
+func NewRandomFromReader(r io.Reader) (UUID, error) {
var uuid UUID
- _, err := io.ReadFull(rander, uuid[:])
+ _, err := io.ReadFull(r, uuid[:])
if err != nil {
return Nil, err
}