summaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-12-10 12:04:27 +1000
committerPauli <ppzgs1@gmail.com>2021-02-23 23:24:13 +1000
commitac60c84fc4551761743e087e2f51343181eb8e85 (patch)
tree28b1b4cffff298bf8b2216a6b80abbb729beff0d /fuzz
parentf5b00834dd11d766b9232e89e40884db8f3cd7ec (diff)
downloadopenssl-new-ac60c84fc4551761743e087e2f51343181eb8e85.tar.gz
RAND_METHOD deprecation: documentation
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13652)
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/rand.inc40
1 files changed, 0 insertions, 40 deletions
diff --git a/fuzz/rand.inc b/fuzz/rand.inc
deleted file mode 100644
index d0eebff896..0000000000
--- a/fuzz/rand.inc
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
- *
- * Licensed under the Apache License 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * https://www.openssl.org/source/license.html
- * or in the file LICENSE in the source distribution.
- */
-#include <openssl/rand.h>
-
-static int fuzz_bytes(unsigned char *buf, int num)
-{
- unsigned char val = 1;
-
- while (--num >= 0)
- *buf++ = val++;
- return 1;
-}
-
-static int fuzz_status(void)
-{
- return 1;
-}
-
-static RAND_METHOD fuzz_rand_method = {
- NULL,
- fuzz_bytes,
- NULL,
- NULL,
- fuzz_bytes,
- fuzz_status
-};
-
-void FuzzerSetRand(void)
-{
- RAND_set_rand_method(&fuzz_rand_method);
-}
-
-