Update maxpath/sixdegrees to my "new" RSA key.
authorJonathan McDowell <noodles@earth.li>
Sat, 19 Mar 2011 23:13:37 +0000 (16:13 -0700)
committerJonathan McDowell <noodles@earth.li>
Sat, 19 Mar 2011 23:13:37 +0000 (16:13 -0700)
  Both maxpath and sixdegrees use my key ID as a default base;
  change them to use 2DA8B985/4096R rather than 5B430367/1024D.

maxpath.c
sixdegrees.c

index ccd500839fe00f0a0d5eddb801822af3597f25fa..0bdc04b9c49bba84ad72e1ec96d7945919eb2e20 100644 (file)
--- 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
index b746327e218453dad60716405358113ad2f1778e..10b58d687f06dcc69b36b1ac522039836735590f 100644 (file)
@@ -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);