From: Jonathan McDowell Date: Sat, 19 Mar 2011 23:13:37 +0000 (-0700) Subject: Update maxpath/sixdegrees to my "new" RSA key. X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/d718a44cfeca2dca68d582b6242d832c4f8864ef Update maxpath/sixdegrees to my "new" RSA key. Both maxpath and sixdegrees use my key ID as a default base; change them to use 2DA8B985/4096R rather than 5B430367/1024D. --- diff --git a/maxpath.c b/maxpath.c index ccd5008..0bdc04b 100644 --- a/maxpath.c +++ b/maxpath.c @@ -28,10 +28,10 @@ void findmaxpath(unsigned long max) from = to = tmp = NULL; /* - * My (noodles@earth.li, DSA) key is in the strongly connected set of + * My (noodles@earth.li, RSA) key is in the strongly connected set of * keys, so we use it as a suitable starting seed. */ - config.dbbackend->cached_getkeysigs(0xF1BD4BE45B430367); + config.dbbackend->cached_getkeysigs(0x94FA372B2DA8B985); /* * Loop through the hash examining each key present and finding the diff --git a/sixdegrees.c b/sixdegrees.c index b746327..10b58d6 100644 --- a/sixdegrees.c +++ b/sixdegrees.c @@ -121,7 +121,7 @@ void sixdegrees(uint64_t keyid) int main(int argc, char *argv[]) { - uint64_t keyid = 0x5B430367; + uint64_t keyid = 0x2DA8B985; if (argc == 2) { keyid = strtoll(argv[1], NULL, 16);