aa0a294bd2
Tue Jul 30 2002 Karsten Hopp <karsten@redhat.de> 9.2.1-8 - bind-utils shouldn't require bind Mon Jul 22 2002 Karsten Hopp <karsten@redhat.de> 9.2.1-7 - fix name of pidfine in logrotate script (#68842) - fix owner of logfile in logrotate script (#41391) - fix nslookup and named.conf man pages (output on stderr) (#63553, #63560, #63561, #54889, #57457) - add rfc1912 (#50005) - gzip all rfc's - fix typo in keygen.c (#54870) - added missing manpages (#64065) - shutdown named properly with rndc stop (#62492) - /sbin/nologin instead of /bin/false (#68607) - move nsupdate to bind-utils (where the manpage already was) (#66209, #66381) - don't kill initscript when rndc fails (reload) (#58750)
20 lines
335 B
C
20 lines
335 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
FILE *f=fopen("/dev/urandom", "r");
|
|
char key[61];
|
|
int i=0;
|
|
char tmp;
|
|
memset(key, 0, 61);
|
|
while(i<60) {
|
|
tmp=fgetc(f);
|
|
if((tmp>='a' && tmp<='z') ||
|
|
(tmp>='A' && tmp<='Z') ||
|
|
(tmp>='0' && tmp<='9'))
|
|
key[i++]=tmp;
|
|
}
|
|
puts(key);
|
|
fclose(f);
|
|
}
|