added comments to keytrans
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Tue, 9 Jun 2009 17:22:41 +0000 (13:22 -0400)
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Tue, 9 Jun 2009 17:22:41 +0000 (13:22 -0400)
src/share/keytrans

index 3638eae5fce8d8c5e024208405dc4d974ec5ea68..326bfb1e6cd0cf590bcfb3c19718038b81746e3e 100755 (executable)
@@ -627,6 +627,7 @@ sub openpgp2ssh {
       die "This is not an OpenPGP packet\n";
     }
     if (0x40 & $packettag) {
+      # this is a new-format packet.
       $tag = (0x3f & $packettag);
       my $nextlen = 0;
       read($instr, $nextlen, 1);
@@ -645,6 +646,7 @@ sub openpgp2ssh {
        # packet length is undefined.
       }
     } else {
+      # this is an old-format packet.
       my $lentype;
       $lentype = 0x03 & $packettag;
       $tag = ( 0x3c & $packettag ) >> 2;
@@ -776,7 +778,6 @@ for (basename($0)) {
     # FIXME: fail if there is no given user ID; or should we default to
     # hostname_long() from Sys::Hostname::Long ?
 
-
     if (defined $ENV{PEM2OPENPGP_NEWKEY}) {
       $rsa = Crypt::OpenSSL::RSA->generate_key($ENV{PEM2OPENPGP_NEWKEY});
     } else {