1997-11-24 23:24:04 +01:00
|
|
|
/* keyid.c - jeyid and fingerprint handling
|
|
|
|
* Copyright (c) 1997 by Werner Koch (dd9jn)
|
|
|
|
*
|
|
|
|
* This file is part of G10.
|
|
|
|
*
|
|
|
|
* G10 is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* G10 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
1997-12-01 11:33:23 +01:00
|
|
|
#include <time.h>
|
1997-11-24 23:24:04 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "mpi.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
|
|
|
|
|
1997-12-16 20:15:09 +01:00
|
|
|
int
|
|
|
|
pubkey_letter( int algo )
|
|
|
|
{
|
|
|
|
switch( algo ) {
|
|
|
|
case PUBKEY_ALGO_RSA: return 'R' ;
|
|
|
|
case PUBKEY_ALGO_RSA_E: return 'r' ;
|
|
|
|
case PUBKEY_ALGO_RSA_S: return 's' ;
|
|
|
|
case PUBKEY_ALGO_ELGAMAL: return 'G' ;
|
|
|
|
case PUBKEY_ALGO_DSA: return 'D' ;
|
|
|
|
default: return '?';
|
|
|
|
}
|
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
|
1998-01-07 21:47:46 +01:00
|
|
|
/* this is special code for V3 which uses ElGamal and
|
|
|
|
* calculates a fingerprint like V4, but with rmd160
|
1998-01-12 11:18:17 +01:00
|
|
|
* and a version byte of 3. Returns an md handle, caller must
|
|
|
|
* do md_close()
|
1998-01-07 21:47:46 +01:00
|
|
|
*/
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
static MD_HANDLE
|
1998-01-07 21:47:46 +01:00
|
|
|
v3_elg_fingerprint_md( PKT_public_cert *pkc )
|
|
|
|
{
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1998-01-07 21:47:46 +01:00
|
|
|
byte *buf1, *buf2, *buf3;
|
|
|
|
byte *p1, *p2, *p3;
|
|
|
|
unsigned n1, n2, n3;
|
1998-02-09 18:43:42 +01:00
|
|
|
unsigned nb1, nb2, nb3;
|
1998-01-07 21:47:46 +01:00
|
|
|
unsigned n;
|
|
|
|
|
1998-02-09 18:43:42 +01:00
|
|
|
nb1 = mpi_get_nbits(pkc->d.elg.p);
|
1998-01-07 21:47:46 +01:00
|
|
|
p1 = buf1 = mpi_get_buffer( pkc->d.elg.p, &n1, NULL );
|
|
|
|
for( ; !*p1 && n1; p1++, n1-- ) /* skip leading null bytes */
|
|
|
|
;
|
1998-02-09 18:43:42 +01:00
|
|
|
nb2 = mpi_get_nbits(pkc->d.elg.g);
|
1998-01-07 21:47:46 +01:00
|
|
|
p2 = buf2 = mpi_get_buffer( pkc->d.elg.g, &n2, NULL );
|
|
|
|
for( ; !*p2 && n2; p2++, n2-- ) /* skip leading null bytes */
|
|
|
|
;
|
1998-02-09 18:43:42 +01:00
|
|
|
nb3 = mpi_get_nbits(pkc->d.elg.y);
|
1998-01-07 21:47:46 +01:00
|
|
|
p3 = buf3 = mpi_get_buffer( pkc->d.elg.y, &n3, NULL );
|
|
|
|
for( ; !*p3 && n3; p3++, n3-- ) /* skip leading null bytes */
|
|
|
|
;
|
|
|
|
|
|
|
|
/* calculate length of packet (1+4+2+1+2+n1+2+n2+2+n3) */
|
|
|
|
n = 14 + n1 + n2 + n3;
|
1998-01-12 11:18:17 +01:00
|
|
|
md = md_open( DIGEST_ALGO_RMD160, 0);
|
1998-01-07 21:47:46 +01:00
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( md, 0x99 ); /* ctb */
|
|
|
|
md_putc( md, n >> 8 ); /* 2 byte length header */
|
|
|
|
md_putc( md, n );
|
|
|
|
md_putc( md, 3 ); /* version */
|
1998-01-07 21:47:46 +01:00
|
|
|
{ u32 a = pkc->timestamp;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( md, a >> 24 );
|
|
|
|
md_putc( md, a >> 16 );
|
|
|
|
md_putc( md, a >> 8 );
|
|
|
|
md_putc( md, a );
|
1998-01-07 21:47:46 +01:00
|
|
|
}
|
|
|
|
{ u16 a = pkc->valid_days;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( md, a >> 8 );
|
|
|
|
md_putc( md, a );
|
1998-01-07 21:47:46 +01:00
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( md, pkc->pubkey_algo );
|
1998-02-09 18:43:42 +01:00
|
|
|
md_putc( md, nb1>>8); md_putc( md, nb1 ); md_write( md, p1, n1 );
|
|
|
|
md_putc( md, nb2>>8); md_putc( md, nb2 ); md_write( md, p2, n2 );
|
|
|
|
md_putc( md, nb3>>8); md_putc( md, nb3 ); md_write( md, p3, n3 );
|
1998-01-07 21:47:46 +01:00
|
|
|
m_free(buf1);
|
|
|
|
m_free(buf2);
|
|
|
|
m_free(buf3);
|
1998-01-12 11:18:17 +01:00
|
|
|
md_final( md );
|
1998-01-07 21:47:46 +01:00
|
|
|
|
|
|
|
return md;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
static MD_HANDLE
|
1998-01-07 21:47:46 +01:00
|
|
|
v3_elg_fingerprint_md_skc( PKT_secret_cert *skc )
|
|
|
|
{
|
|
|
|
PKT_public_cert pkc;
|
|
|
|
|
|
|
|
pkc.pubkey_algo = skc->pubkey_algo;
|
|
|
|
pkc.timestamp = skc->timestamp;
|
|
|
|
pkc.valid_days = skc->valid_days;
|
|
|
|
pkc.pubkey_algo = skc->pubkey_algo;
|
|
|
|
pkc.d.elg.p = skc->d.elg.p;
|
|
|
|
pkc.d.elg.g = skc->d.elg.g;
|
|
|
|
pkc.d.elg.y = skc->d.elg.y;
|
|
|
|
return v3_elg_fingerprint_md( &pkc );
|
|
|
|
}
|
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* Get the keyid from the secret key certificate and put it into keyid
|
|
|
|
* if this is not NULL. Return the 32 low bits of the keyid.
|
|
|
|
*/
|
|
|
|
u32
|
1997-12-01 11:33:23 +01:00
|
|
|
keyid_from_skc( PKT_secret_cert *skc, u32 *keyid )
|
1997-11-24 23:24:04 +01:00
|
|
|
{
|
|
|
|
u32 lowbits;
|
|
|
|
u32 dummy_keyid[2];
|
|
|
|
|
|
|
|
if( !keyid )
|
|
|
|
keyid = dummy_keyid;
|
|
|
|
|
|
|
|
if( skc->pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
1998-01-07 21:47:46 +01:00
|
|
|
const byte *dp;
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1998-01-07 21:47:46 +01:00
|
|
|
md = v3_elg_fingerprint_md_skc(skc);
|
1998-01-12 11:18:17 +01:00
|
|
|
dp = md_read( md, DIGEST_ALGO_RMD160 );
|
1998-01-07 21:47:46 +01:00
|
|
|
keyid[0] = dp[12] << 24 | dp[13] << 16 | dp[14] << 8 | dp[15] ;
|
|
|
|
keyid[1] = dp[16] << 24 | dp[17] << 16 | dp[18] << 8 | dp[19] ;
|
|
|
|
lowbits = keyid[1];
|
1998-01-12 11:18:17 +01:00
|
|
|
md_close(md);
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
|
|
|
else if( skc->pubkey_algo == PUBKEY_ALGO_RSA ) {
|
|
|
|
lowbits = mpi_get_keyid( skc->d.rsa.rsa_n, keyid );
|
|
|
|
}
|
1997-12-01 11:33:23 +01:00
|
|
|
else {
|
|
|
|
keyid[0] = keyid[1] = lowbits = 0;
|
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
return lowbits;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Get the keyid from the public key certificate and put it into keyid
|
|
|
|
* if this is not NULL. Return the 32 low bits of the keyid.
|
|
|
|
*/
|
|
|
|
u32
|
1997-12-01 11:33:23 +01:00
|
|
|
keyid_from_pkc( PKT_public_cert *pkc, u32 *keyid )
|
1997-11-24 23:24:04 +01:00
|
|
|
{
|
|
|
|
u32 lowbits;
|
|
|
|
u32 dummy_keyid[2];
|
|
|
|
|
|
|
|
if( !keyid )
|
|
|
|
keyid = dummy_keyid;
|
|
|
|
|
|
|
|
if( pkc->pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
1998-01-07 21:47:46 +01:00
|
|
|
const byte *dp;
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1998-01-07 21:47:46 +01:00
|
|
|
md = v3_elg_fingerprint_md(pkc);
|
1998-01-12 11:18:17 +01:00
|
|
|
dp = md_read( md, DIGEST_ALGO_RMD160 );
|
1998-01-07 21:47:46 +01:00
|
|
|
keyid[0] = dp[12] << 24 | dp[13] << 16 | dp[14] << 8 | dp[15] ;
|
|
|
|
keyid[1] = dp[16] << 24 | dp[17] << 16 | dp[18] << 8 | dp[19] ;
|
|
|
|
lowbits = keyid[1];
|
1998-01-12 11:18:17 +01:00
|
|
|
md_close(md);
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
|
|
|
else if( pkc->pubkey_algo == PUBKEY_ALGO_RSA ) {
|
|
|
|
lowbits = mpi_get_keyid( pkc->d.rsa.rsa_n, keyid );
|
|
|
|
}
|
1997-12-01 11:33:23 +01:00
|
|
|
else {
|
|
|
|
keyid[0] = keyid[1] = lowbits = 0;
|
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
|
|
|
|
return lowbits;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-12-01 11:33:23 +01:00
|
|
|
u32
|
|
|
|
keyid_from_sig( PKT_signature *sig, u32 *keyid )
|
|
|
|
{
|
|
|
|
if( keyid ) {
|
|
|
|
keyid[0] = sig->keyid[0];
|
|
|
|
keyid[1] = sig->keyid[1];
|
|
|
|
}
|
|
|
|
return sig->keyid[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* return the number of bits used in the pkc
|
|
|
|
*/
|
|
|
|
unsigned
|
|
|
|
nbits_from_pkc( PKT_public_cert *pkc )
|
|
|
|
{
|
|
|
|
if( pkc->pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
|
|
|
return mpi_get_nbits( pkc->d.elg.p );
|
|
|
|
}
|
|
|
|
else if( pkc->pubkey_algo == PUBKEY_ALGO_RSA ) {
|
|
|
|
return mpi_get_nbits( pkc->d.rsa.rsa_n );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* return the number of bits used in the skc
|
|
|
|
*/
|
|
|
|
unsigned
|
|
|
|
nbits_from_skc( PKT_secret_cert *skc )
|
|
|
|
{
|
|
|
|
if( skc->pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
|
|
|
return mpi_get_nbits( skc->d.elg.p );
|
|
|
|
}
|
|
|
|
else if( skc->pubkey_algo == PUBKEY_ALGO_RSA ) {
|
|
|
|
return mpi_get_nbits( skc->d.rsa.rsa_n );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* return a string with the creation date of the pkc
|
|
|
|
* Note: this is alloced in a static buffer.
|
|
|
|
* Format is: yyyy-mm-dd
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
datestr_from_pkc( PKT_public_cert *pkc )
|
|
|
|
{
|
|
|
|
static char buffer[11+5];
|
|
|
|
struct tm *tp;
|
|
|
|
time_t atime = pkc->timestamp;
|
|
|
|
|
|
|
|
tp = gmtime( &atime );
|
1998-01-02 21:40:10 +01:00
|
|
|
sprintf(buffer,"%04d-%02d-%02d", 1900+tp->tm_year, tp->tm_mon+1, tp->tm_mday );
|
1997-12-01 11:33:23 +01:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
datestr_from_skc( PKT_secret_cert *skc )
|
|
|
|
{
|
|
|
|
static char buffer[11+5];
|
|
|
|
struct tm *tp;
|
|
|
|
time_t atime = skc->timestamp;
|
|
|
|
|
|
|
|
tp = gmtime( &atime );
|
1998-01-02 21:40:10 +01:00
|
|
|
sprintf(buffer,"%04d-%02d-%02d", 1900+tp->tm_year, tp->tm_mon+1, tp->tm_mday );
|
1997-12-01 11:33:23 +01:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
datestr_from_sig( PKT_signature *sig )
|
|
|
|
{
|
|
|
|
static char buffer[11+5];
|
|
|
|
struct tm *tp;
|
|
|
|
time_t atime = sig->timestamp;
|
|
|
|
|
|
|
|
tp = gmtime( &atime );
|
1998-01-02 21:40:10 +01:00
|
|
|
sprintf(buffer,"%04d-%02d-%02d", 1900+tp->tm_year, tp->tm_mon+1, tp->tm_mday );
|
1997-12-01 11:33:23 +01:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
|
|
|
|
/**************** .
|
|
|
|
* Return a byte array with the fingerprint for the given PKC/SKC
|
|
|
|
* The length of the array is returned in ret_len. Caller must free
|
|
|
|
* the array.
|
|
|
|
*/
|
|
|
|
byte *
|
|
|
|
fingerprint_from_skc( PKT_secret_cert *skc, size_t *ret_len )
|
|
|
|
{
|
|
|
|
PKT_public_cert pkc;
|
|
|
|
byte *p;
|
|
|
|
|
|
|
|
pkc.pubkey_algo = skc->pubkey_algo;
|
|
|
|
if( pkc.pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
|
|
|
pkc.timestamp = skc->timestamp;
|
|
|
|
pkc.valid_days = skc->valid_days;
|
|
|
|
pkc.pubkey_algo = skc->pubkey_algo;
|
|
|
|
pkc.d.elg.p = skc->d.elg.p;
|
|
|
|
pkc.d.elg.g = skc->d.elg.g;
|
|
|
|
pkc.d.elg.y = skc->d.elg.y;
|
|
|
|
}
|
|
|
|
else if( pkc.pubkey_algo == PUBKEY_ALGO_RSA ) {
|
|
|
|
pkc.d.rsa.rsa_n = skc->d.rsa.rsa_n;
|
|
|
|
pkc.d.rsa.rsa_e = skc->d.rsa.rsa_e;
|
|
|
|
}
|
|
|
|
p = fingerprint_from_pkc( &pkc, ret_len );
|
|
|
|
memset(&pkc, 0, sizeof pkc); /* not really needed */
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
1998-01-07 21:47:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
byte *
|
|
|
|
fingerprint_from_pkc( PKT_public_cert *pkc, size_t *ret_len )
|
|
|
|
{
|
|
|
|
byte *p, *buf, *array;
|
1998-01-07 21:47:46 +01:00
|
|
|
const char *dp;
|
1997-12-09 13:46:23 +01:00
|
|
|
size_t len;
|
|
|
|
unsigned n;
|
|
|
|
|
|
|
|
if( pkc->pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1998-01-07 21:47:46 +01:00
|
|
|
md = v3_elg_fingerprint_md(pkc);
|
1998-01-12 11:18:17 +01:00
|
|
|
dp = md_read( md, DIGEST_ALGO_RMD160 );
|
1997-12-09 13:46:23 +01:00
|
|
|
array = m_alloc( 20 );
|
|
|
|
len = 20;
|
|
|
|
memcpy(array, dp, 20 );
|
1998-01-12 11:18:17 +01:00
|
|
|
md_close(md);
|
1997-12-09 13:46:23 +01:00
|
|
|
}
|
|
|
|
else if( pkc->pubkey_algo == PUBKEY_ALGO_RSA ) {
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1997-12-09 13:46:23 +01:00
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
md = md_open( DIGEST_ALGO_MD5, 0);
|
1997-12-09 13:46:23 +01:00
|
|
|
p = buf = mpi_get_buffer( pkc->d.rsa.rsa_n, &n, NULL );
|
|
|
|
for( ; !*p && n; p++, n-- )
|
|
|
|
;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_write( md, p, n );
|
1997-12-09 13:46:23 +01:00
|
|
|
m_free(buf);
|
|
|
|
p = buf = mpi_get_buffer( pkc->d.rsa.rsa_e, &n, NULL );
|
|
|
|
for( ; !*p && n; p++, n-- )
|
|
|
|
;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_write( md, p, n );
|
1997-12-09 13:46:23 +01:00
|
|
|
m_free(buf);
|
1998-01-12 11:18:17 +01:00
|
|
|
md_final(md);
|
1997-12-09 13:46:23 +01:00
|
|
|
array = m_alloc( 16 );
|
|
|
|
len = 16;
|
1998-01-12 11:18:17 +01:00
|
|
|
memcpy(array, md_read(md, DIGEST_ALGO_MD5), 16 );
|
|
|
|
md_close(md);
|
1997-12-09 13:46:23 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
array = m_alloc(1);
|
|
|
|
len = 0; /* ooops */
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret_len = len;
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|