summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-05 21:56:32 -0500
committerJune McEnroe <june@causal.agency>2019-11-05 21:56:32 -0500
commite6f2434fc000d7d5c17b705002075c23ad2ca414 (patch)
tree9ec34b63cf944178f0d0d437316f6ff4e6c9c26b
parentAdd missing include (diff)
downloadpounce-e6f2434fc000d7d5c17b705002075c23ad2ca414.tar.gz
pounce-e6f2434fc000d7d5c17b705002075c23ad2ca414.zip
Use arc4random_buf
-rw-r--r--bounce.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/bounce.c b/bounce.c
index bb7e59c..2ac9118 100644
--- a/bounce.c
+++ b/bounce.c
@@ -29,7 +29,6 @@
 #include <string.h>
 #include <strings.h>
 #include <sys/file.h>
-#include <sys/random.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
 #include <sysexits.h>
@@ -47,8 +46,7 @@
 static void hashPass(void) {
 	char *pass = getpass("Password: ");
 	byte rand[12];
-	ssize_t len = getrandom(rand, sizeof(rand), 0);
-	if (len < 0) err(EX_OSERR, "getrandom");
+	arc4random_buf(rand, sizeof(rand));
 	char salt[3 + BASE64_SIZE(sizeof(rand))] = "$6$";
 	base64(&salt[3], rand, sizeof(rand));
 	printf("%s\n", crypt(pass, salt));
> 2020-02-12Update catgirl pty grabJune McEnroe 2020-02-12Link to cgit /about pages where appropriateJune McEnroe 2020-02-11Separate LINKS from BINS for html to workJune McEnroe 2020-02-11Add margin to Bl-bullet itemsJune McEnroe 2020-02-10Match URLs inside parens or with paired parens insideJune McEnroe 2020-02-10Duplicate effective URL before passing it back to curlJune McEnroe 2020-02-09Add To Be Taught, If FortunateJune McEnroe 2020-02-04Add The Future of Another TimelineJune McEnroe 2020-01-31Reorganize the Makefile for the umpteenth timeJune McEnroe 2020-01-28Change scout sensitivity to 1.4June McEnroe 2020-01-28Import shows.txtJune McEnroe