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
Diffstat (limited to '')
-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));
it-pink/commit/ui-shared.c?h=1.4.1&id=74620f12e4f7e91cb0a0b4ca731e07272d1b65f6&follow=1'>Move functions for repolist output into ui-repolist.cLars Hjemli 2006-12-11Move common output-functions into ui-shared.cLars Hjemli 2006-12-11Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.cLars Hjemli 2006-12-11Avoid infinite loops in caching layerLars Hjemli 2006-12-11Let 'make install' clear all cachefilesLars Hjemli 2006-12-11Fix cache algorithm loopholeLars Hjemli 2006-12-10Add version identifier in generated filesLars Hjemli 2006-12-10Add license file and copyright noticesLars Hjemli 2006-12-10Add caching infrastructureLars Hjemli