1999-01-12 11:20:24 +01:00
|
|
|
/* seckey-cert.c - secret key certificate packet handling
|
2000-07-14 19:34:53 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1997-11-18 15:06:00 +01:00
|
|
|
* 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.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1997-11-18 15:06:00 +01:00
|
|
|
* 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 <assert.h>
|
1999-10-26 14:14:37 +02:00
|
|
|
|
|
|
|
#include <gcrypt.h>
|
1997-11-18 15:06:00 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "keydb.h"
|
1998-04-07 20:16:10 +02:00
|
|
|
#include "main.h"
|
|
|
|
#include "options.h"
|
1998-05-29 13:53:54 +02:00
|
|
|
#include "i18n.h"
|
1999-03-17 13:13:04 +01:00
|
|
|
#include "status.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
|
2000-01-24 22:14:42 +01:00
|
|
|
/****************
|
|
|
|
* Emulate our old PK interface here - sometime in the future we might
|
|
|
|
* change the internal design to directly fit to libgcrypt.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
pk_check_secret_key( int algo, MPI *skey )
|
|
|
|
{
|
|
|
|
GCRY_SEXP s_skey;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* make a sexp from skey */
|
|
|
|
if( algo == GCRY_PK_DSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_skey, NULL,
|
|
|
|
"(private-key(dsa(p%m)(q%m)(g%m)(y%m)(x%m)))",
|
|
|
|
skey[0], skey[1], skey[2], skey[3], skey[4] );
|
2000-01-24 22:14:42 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_ELG || algo == GCRY_PK_ELG_E ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_skey, NULL,
|
|
|
|
"(private-key(elg(p%m)(g%m)(y%m)(x%m)))",
|
|
|
|
skey[0], skey[1], skey[2], skey[3] );
|
2000-01-24 22:14:42 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_RSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_skey, NULL,
|
|
|
|
"(private-key(rsa(n%m)(e%m)(d%m)(p%m)(q%m)(u%m)))",
|
|
|
|
skey[0], skey[1], skey[2], skey[3], skey[4], skey[5] );
|
2000-01-24 22:14:42 +01:00
|
|
|
}
|
|
|
|
else
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_PUBKEY_ALGO;
|
2000-01-24 22:14:42 +01:00
|
|
|
|
2000-07-25 17:38:12 +02:00
|
|
|
if ( rc )
|
|
|
|
BUG ();
|
|
|
|
|
2000-01-24 22:14:42 +01:00
|
|
|
rc = gcry_pk_testkey( s_skey );
|
|
|
|
gcry_sexp_release( s_skey );
|
|
|
|
return rc;
|
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
static int
|
1998-06-29 14:30:57 +02:00
|
|
|
do_check( PKT_secret_key *sk )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
1998-01-16 22:15:24 +01:00
|
|
|
u16 csum=0;
|
1998-06-15 17:41:04 +02:00
|
|
|
int i, res;
|
1997-12-09 13:46:23 +01:00
|
|
|
unsigned nbytes;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
if( sk->is_protected ) { /* remove the protection */
|
1997-11-24 23:24:04 +01:00
|
|
|
DEK *dek = NULL;
|
1999-01-07 18:05:48 +01:00
|
|
|
u32 keyid[4]; /* 4! because we need two of them */
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_CIPHER_HD cipher_hd=NULL;
|
1998-06-29 14:30:57 +02:00
|
|
|
PKT_secret_key *save_sk;
|
1997-11-24 23:24:04 +01:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
if( sk->protect.s2k.mode == 1001 ) {
|
|
|
|
log_info(_("secret key parts are not available\n"));
|
|
|
|
return GPGERR_GENERAL;
|
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
if( sk->protect.algo == GCRY_CIPHER_NONE )
|
1998-06-09 17:14:06 +02:00
|
|
|
BUG();
|
1999-10-26 14:14:37 +02:00
|
|
|
if( openpgp_cipher_test_algo( sk->protect.algo ) ) {
|
1998-08-11 19:29:34 +02:00
|
|
|
log_info(_("protection algorithm %d is not supported\n"),
|
|
|
|
sk->protect.algo );
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_CIPHER_ALGO;
|
1998-08-11 19:29:34 +02:00
|
|
|
}
|
1998-06-29 14:30:57 +02:00
|
|
|
keyid_from_sk( sk, keyid );
|
1999-01-07 18:05:48 +01:00
|
|
|
keyid[2] = keyid[3] = 0;
|
|
|
|
if( !sk->is_primary ) {
|
2000-09-18 16:35:34 +02:00
|
|
|
keyid[2] = sk->main_keyid[0];
|
|
|
|
keyid[3] = sk->main_keyid[1];
|
1999-01-07 18:05:48 +01:00
|
|
|
}
|
1999-07-01 12:53:35 +02:00
|
|
|
dek = passphrase_to_dek( keyid, sk->pubkey_algo, sk->protect.algo,
|
1998-06-29 14:30:57 +02:00
|
|
|
&sk->protect.s2k, 0 );
|
2000-07-14 19:34:53 +02:00
|
|
|
/* Hmmm: Do we use sync mode here even for Twofish? */
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(cipher_hd = gcry_cipher_open( sk->protect.algo,
|
|
|
|
GCRY_CIPHER_MODE_CFB,
|
|
|
|
GCRY_CIPHER_SECURE
|
|
|
|
| (sk->protect.algo >= 100 ?
|
|
|
|
0 : GCRY_CIPHER_ENABLE_SYNC) ) )
|
|
|
|
) {
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( gcry_cipher_setkey( cipher_hd, dek->key, dek->keylen ) )
|
|
|
|
log_fatal("set key failed: %s\n", gcry_strerror(-1) );
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(dek);
|
1998-06-29 14:30:57 +02:00
|
|
|
save_sk = copy_secret_key( NULL, sk );
|
1999-10-26 14:14:37 +02:00
|
|
|
if( gcry_cipher_setiv( cipher_hd, sk->protect.iv, sk->protect.ivlen ))
|
|
|
|
log_fatal("set IV failed: %s\n", gcry_strerror(-1) );
|
1998-06-15 17:41:04 +02:00
|
|
|
csum = 0;
|
1998-08-08 21:27:00 +02:00
|
|
|
if( sk->version >= 4 ) {
|
1999-12-08 22:03:03 +01:00
|
|
|
size_t ndata;
|
|
|
|
unsigned int ndatabits;
|
1998-08-05 18:51:59 +02:00
|
|
|
byte *p, *data;
|
2000-09-18 16:35:34 +02:00
|
|
|
u16 csumc = 0;
|
1998-08-05 18:51:59 +02:00
|
|
|
|
|
|
|
i = pubkey_get_npkey(sk->pubkey_algo);
|
1999-12-08 22:03:03 +01:00
|
|
|
assert( gcry_mpi_get_flag( sk->skey[i], GCRYMPI_FLAG_OPAQUE ) );
|
|
|
|
p = gcry_mpi_get_opaque( sk->skey[i], &ndatabits );
|
|
|
|
ndata = (ndatabits+7)/8;
|
2000-09-18 16:35:34 +02:00
|
|
|
if ( ndata > 1 )
|
|
|
|
csumc = p[ndata-2] << 8 | p[ndata-1];
|
2000-01-24 12:55:49 +01:00
|
|
|
data = gcry_xmalloc_secure( ndata );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_decrypt( cipher_hd, data, ndata, p, ndata );
|
1999-12-08 22:03:03 +01:00
|
|
|
mpi_release( sk->skey[i] ); sk->skey[i] = NULL ;
|
1998-08-05 18:51:59 +02:00
|
|
|
p = data;
|
1998-08-08 21:27:00 +02:00
|
|
|
if( ndata < 2 ) {
|
|
|
|
log_error("not enough bytes for checksum\n");
|
|
|
|
sk->csum = 0;
|
|
|
|
csum = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
csum = checksum( data, ndata-2);
|
|
|
|
sk->csum = data[ndata-2] << 8 | data[ndata-1];
|
2000-09-18 16:35:34 +02:00
|
|
|
if ( sk->csum != csum ) {
|
|
|
|
/* This is a PGP 7.0.0 workaround */
|
|
|
|
sk->csum = csumc; /* take the encrypted one */
|
|
|
|
}
|
1998-08-08 21:27:00 +02:00
|
|
|
}
|
1998-08-05 18:51:59 +02:00
|
|
|
/* must check it here otherwise the mpi_read_xx would fail
|
1999-12-08 22:03:03 +01:00
|
|
|
* because the length may have an arbitrary value */
|
1998-08-05 18:51:59 +02:00
|
|
|
if( sk->csum == csum ) {
|
|
|
|
for( ; i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
|
|
|
|
nbytes = ndata;
|
2000-01-24 12:55:49 +01:00
|
|
|
assert( gcry_is_secure( p ) );
|
1999-12-31 12:44:29 +01:00
|
|
|
res = gcry_mpi_scan( &sk->skey[i], GCRYMPI_FMT_PGP,
|
|
|
|
p, &nbytes);
|
|
|
|
if( res )
|
|
|
|
log_bug("gcry_mpi_scan failed in do_check: rc=%d\n", res);
|
|
|
|
|
1998-08-05 18:51:59 +02:00
|
|
|
ndata -= nbytes;
|
|
|
|
p += nbytes;
|
|
|
|
}
|
|
|
|
}
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(data);
|
1998-06-15 17:41:04 +02:00
|
|
|
}
|
1998-08-05 18:51:59 +02:00
|
|
|
else {
|
|
|
|
for(i=pubkey_get_npkey(sk->pubkey_algo);
|
|
|
|
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
|
1999-12-08 22:03:03 +01:00
|
|
|
size_t ndata;
|
|
|
|
unsigned int ndatabits;
|
|
|
|
byte *p, *data;
|
|
|
|
|
|
|
|
assert( gcry_mpi_get_flag( sk->skey[i], GCRYMPI_FLAG_OPAQUE ) );
|
|
|
|
p = gcry_mpi_get_opaque( sk->skey[i], &ndatabits );
|
|
|
|
ndata = (ndatabits+7)/8;
|
2000-01-24 12:55:49 +01:00
|
|
|
data = gcry_xmalloc_secure( ndata );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_sync( cipher_hd );
|
1999-12-08 22:03:03 +01:00
|
|
|
gcry_cipher_decrypt( cipher_hd, data, ndata, p, ndata );
|
|
|
|
mpi_release( sk->skey[i] ); sk->skey[i] = NULL ;
|
|
|
|
|
|
|
|
res = gcry_mpi_scan( &sk->skey[i], GCRYMPI_FMT_USG,
|
|
|
|
data, &ndata );
|
1999-12-31 12:44:29 +01:00
|
|
|
if( res )
|
|
|
|
log_bug("gcry_mpi_scan failed in do_check: rc=%d\n", res);
|
1999-12-08 22:03:03 +01:00
|
|
|
|
1998-08-05 18:51:59 +02:00
|
|
|
csum += checksum_mpi( sk->skey[i] );
|
2000-01-24 22:14:42 +01:00
|
|
|
gcry_free( data );
|
1998-08-05 18:51:59 +02:00
|
|
|
}
|
1998-06-09 17:14:06 +02:00
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_close( cipher_hd );
|
1998-06-09 17:14:06 +02:00
|
|
|
/* now let's see whether we have used the right passphrase */
|
1998-06-29 14:30:57 +02:00
|
|
|
if( csum != sk->csum ) {
|
|
|
|
copy_secret_key( sk, save_sk );
|
2000-08-21 17:54:37 +02:00
|
|
|
passphrase_clear_cache ( keyid, sk->pubkey_algo );
|
1998-06-29 14:30:57 +02:00
|
|
|
free_secret_key( save_sk );
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_BAD_PASS;
|
1998-06-09 17:14:06 +02:00
|
|
|
}
|
2000-07-14 19:34:53 +02:00
|
|
|
/* the checksum may be correct in some cases,
|
|
|
|
* so we also check the key itself */
|
2000-01-24 22:14:42 +01:00
|
|
|
res = pk_check_secret_key( sk->pubkey_algo, sk->skey );
|
1998-06-13 08:59:14 +02:00
|
|
|
if( res ) {
|
1998-06-29 14:30:57 +02:00
|
|
|
copy_secret_key( sk, save_sk );
|
2000-08-21 17:54:37 +02:00
|
|
|
passphrase_clear_cache ( keyid, sk->pubkey_algo );
|
1998-06-29 14:30:57 +02:00
|
|
|
free_secret_key( save_sk );
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_BAD_PASS;
|
1998-06-09 17:14:06 +02:00
|
|
|
}
|
1998-06-29 14:30:57 +02:00
|
|
|
free_secret_key( save_sk );
|
|
|
|
sk->is_protected = 0;
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
1998-06-15 17:41:04 +02:00
|
|
|
else { /* not protected, assume it is okay if the checksum is okay */
|
|
|
|
csum = 0;
|
1998-06-29 14:30:57 +02:00
|
|
|
for(i=pubkey_get_npkey(sk->pubkey_algo);
|
|
|
|
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
|
2000-01-24 22:14:42 +01:00
|
|
|
assert( !gcry_mpi_get_flag( sk->skey[i], GCRYMPI_FLAG_OPAQUE ) );
|
1998-06-29 14:30:57 +02:00
|
|
|
csum += checksum_mpi( sk->skey[i] );
|
1998-03-09 22:44:06 +01:00
|
|
|
}
|
1998-06-29 14:30:57 +02:00
|
|
|
if( csum != sk->csum )
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_CHECKSUM;
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1997-12-09 13:46:23 +01:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
return 0;
|
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
/****************
|
1998-06-29 14:30:57 +02:00
|
|
|
* Check the secret key
|
1998-09-11 07:47:32 +02:00
|
|
|
* Ask up to 3 (or n) times for a correct passphrase
|
1997-11-24 23:24:04 +01:00
|
|
|
*/
|
|
|
|
int
|
1998-09-11 07:47:32 +02:00
|
|
|
check_secret_key( PKT_secret_key *sk, int n )
|
1997-11-24 23:24:04 +01:00
|
|
|
{
|
2000-01-27 17:50:45 +01:00
|
|
|
int rc = GPGERR_BAD_PASS;
|
1997-12-09 13:46:23 +01:00
|
|
|
int i;
|
|
|
|
|
1998-09-11 07:47:32 +02:00
|
|
|
if( n < 1 )
|
1999-07-12 14:57:54 +02:00
|
|
|
n = opt.batch? 1 : 3; /* use the default value */
|
1998-09-11 07:47:32 +02:00
|
|
|
|
2000-01-27 17:50:45 +01:00
|
|
|
for(i=0; i < n && rc == GPGERR_BAD_PASS; i++ ) {
|
1997-12-09 13:46:23 +01:00
|
|
|
if( i )
|
1999-03-08 20:50:18 +01:00
|
|
|
log_info(_("Invalid passphrase; please try again ...\n"));
|
1998-06-29 14:30:57 +02:00
|
|
|
rc = do_check( sk );
|
2000-01-27 17:50:45 +01:00
|
|
|
if( rc == GPGERR_BAD_PASS && is_status_enabled() ) {
|
1999-03-17 13:13:04 +01:00
|
|
|
u32 kid[2];
|
|
|
|
char buf[50];
|
|
|
|
|
|
|
|
keyid_from_sk( sk, kid );
|
|
|
|
sprintf(buf, "%08lX%08lX", (ulong)kid[0], (ulong)kid[1]);
|
|
|
|
write_status_text( STATUS_BAD_PASSPHRASE, buf );
|
|
|
|
}
|
1998-09-28 21:25:31 +02:00
|
|
|
if( have_static_passphrase() )
|
1998-01-02 21:40:10 +01:00
|
|
|
break;
|
1997-12-09 13:46:23 +01:00
|
|
|
}
|
1998-05-26 15:38:00 +02:00
|
|
|
|
1999-04-09 12:34:44 +02:00
|
|
|
if( !rc )
|
|
|
|
write_status( STATUS_GOOD_PASSPHRASE );
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1998-01-06 22:01:36 +01:00
|
|
|
/****************
|
1998-04-14 19:51:16 +02:00
|
|
|
* check whether the secret key is protected.
|
1998-01-06 22:01:36 +01:00
|
|
|
* Returns: 0 not protected, -1 on error or the protection algorithm
|
|
|
|
*/
|
|
|
|
int
|
1998-06-29 14:30:57 +02:00
|
|
|
is_secret_key_protected( PKT_secret_key *sk )
|
1998-01-06 22:01:36 +01:00
|
|
|
{
|
1998-06-29 14:30:57 +02:00
|
|
|
return sk->is_protected? sk->protect.algo : 0;
|
1998-04-02 12:30:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
|
|
|
|
/****************
|
1998-06-29 14:30:57 +02:00
|
|
|
* Protect the secret key with the passphrase from DEK
|
1997-12-09 13:46:23 +01:00
|
|
|
*/
|
|
|
|
int
|
1998-06-29 14:30:57 +02:00
|
|
|
protect_secret_key( PKT_secret_key *sk, DEK *dek )
|
1997-12-09 13:46:23 +01:00
|
|
|
{
|
1998-08-08 21:27:00 +02:00
|
|
|
int i,j, rc = 0;
|
1998-06-15 17:41:04 +02:00
|
|
|
byte *buffer;
|
|
|
|
unsigned nbytes;
|
|
|
|
u16 csum;
|
1998-04-02 12:30:03 +02:00
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
if( !dek )
|
|
|
|
return 0;
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
if( !sk->is_protected ) { /* okay, apply the protection */
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_CIPHER_HD cipher_hd=NULL;
|
1998-04-02 12:30:03 +02:00
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
if( openpgp_cipher_test_algo( sk->protect.algo ) )
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_CIPHER_ALGO; /* unsupport protection algorithm */
|
1998-06-09 17:14:06 +02:00
|
|
|
else {
|
1998-12-10 20:20:47 +01:00
|
|
|
print_cipher_algo_note( sk->protect.algo );
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(cipher_hd = gcry_cipher_open( sk->protect.algo,
|
|
|
|
GCRY_CIPHER_MODE_CFB,
|
|
|
|
GCRY_CIPHER_SECURE
|
|
|
|
| (sk->protect.algo >= 100 ?
|
|
|
|
0 : GCRY_CIPHER_ENABLE_SYNC) ))
|
|
|
|
) {
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
rc = gcry_cipher_setkey( cipher_hd, dek->key, dek->keylen );
|
|
|
|
if( rc == GCRYERR_WEAK_KEY ) {
|
1998-11-10 13:59:59 +01:00
|
|
|
log_info(_("WARNING: Weak key detected"
|
1998-09-14 17:49:56 +02:00
|
|
|
" - please change passphrase again.\n"));
|
1999-10-26 14:14:37 +02:00
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
else if( rc )
|
|
|
|
BUG();
|
|
|
|
|
|
|
|
/* set the IV length */
|
|
|
|
{ int blocksize = gcry_cipher_get_algo_blklen( sk->protect.algo );
|
|
|
|
if( blocksize != 8 && blocksize != 16 )
|
|
|
|
log_fatal("unsupported blocksize %d\n", blocksize );
|
|
|
|
sk->protect.ivlen = blocksize;
|
2000-07-14 19:34:53 +02:00
|
|
|
assert( sk->protect.ivlen <= DIM(sk->protect.iv) );
|
1999-10-26 14:14:37 +02:00
|
|
|
}
|
1999-11-13 17:43:23 +01:00
|
|
|
gcry_randomize(sk->protect.iv, sk->protect.ivlen,
|
2000-07-14 19:34:53 +02:00
|
|
|
GCRY_STRONG_RANDOM);
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_setiv( cipher_hd, sk->protect.iv, sk->protect.ivlen );
|
2000-07-14 19:34:53 +02:00
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* FIXME: replace set/get buffer */
|
1998-08-08 21:27:00 +02:00
|
|
|
if( sk->version >= 4 ) {
|
2000-07-14 19:34:53 +02:00
|
|
|
byte *bufarr[GNUPG_MAX_NSKEY];
|
|
|
|
unsigned narr[GNUPG_MAX_NSKEY];
|
|
|
|
unsigned nbits[GNUPG_MAX_NSKEY];
|
1998-08-08 21:27:00 +02:00
|
|
|
int ndata=0;
|
|
|
|
byte *p, *data;
|
|
|
|
|
|
|
|
for(j=0, i = pubkey_get_npkey(sk->pubkey_algo);
|
|
|
|
i < pubkey_get_nskey(sk->pubkey_algo); i++, j++ ) {
|
1999-12-08 22:03:03 +01:00
|
|
|
assert( !gcry_mpi_get_flag( sk->skey[i], GCRYMPI_FLAG_OPAQUE ) );
|
2000-01-24 12:55:49 +01:00
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
if( gcry_mpi_aprint( GCRYMPI_FMT_USG, (void**)bufarr+j,
|
2000-01-24 12:55:49 +01:00
|
|
|
narr+j, sk->skey[i]))
|
|
|
|
BUG();
|
|
|
|
|
|
|
|
nbits[j] = gcry_mpi_get_nbits( sk->skey[i] );
|
1999-02-16 14:16:33 +01:00
|
|
|
ndata += narr[j] + 2;
|
1998-08-08 21:27:00 +02:00
|
|
|
}
|
2000-07-14 19:34:53 +02:00
|
|
|
for( ; j < GNUPG_MAX_NSKEY; j++ )
|
1999-02-16 14:16:33 +01:00
|
|
|
bufarr[j] = NULL;
|
1998-08-08 21:27:00 +02:00
|
|
|
ndata += 2; /* for checksum */
|
|
|
|
|
2000-01-24 12:55:49 +01:00
|
|
|
data = gcry_xmalloc_secure( ndata );
|
1998-08-08 21:27:00 +02:00
|
|
|
p = data;
|
2000-07-14 19:34:53 +02:00
|
|
|
for(j=0; j < GNUPG_MAX_NSKEY && bufarr[j]; j++ ) {
|
1998-08-08 21:27:00 +02:00
|
|
|
p[0] = nbits[j] >> 8 ;
|
|
|
|
p[1] = nbits[j];
|
|
|
|
p += 2;
|
1999-02-16 14:16:33 +01:00
|
|
|
memcpy(p, bufarr[j], narr[j] );
|
|
|
|
p += narr[j];
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(bufarr[j]);
|
1998-08-08 21:27:00 +02:00
|
|
|
}
|
|
|
|
csum = checksum( data, ndata-2);
|
|
|
|
sk->csum = csum;
|
|
|
|
*p++ = csum >> 8;
|
|
|
|
*p++ = csum;
|
|
|
|
assert( p == data+ndata );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_encrypt( cipher_hd, data, ndata, NULL, 0 );
|
1998-08-08 21:27:00 +02:00
|
|
|
for(i = pubkey_get_npkey(sk->pubkey_algo);
|
|
|
|
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
|
1999-12-08 22:03:03 +01:00
|
|
|
mpi_release( sk->skey[i] );
|
1998-08-08 21:27:00 +02:00
|
|
|
sk->skey[i] = NULL;
|
|
|
|
}
|
|
|
|
i = pubkey_get_npkey(sk->pubkey_algo);
|
1999-12-08 22:03:03 +01:00
|
|
|
sk->skey[i] = gcry_mpi_set_opaque(NULL, data, ndata*8 );
|
1998-08-05 18:51:59 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* NOTE: we always recalculate the checksum because there
|
1998-08-08 21:27:00 +02:00
|
|
|
* are some test releases which calculated it wrong */
|
2000-10-04 13:16:19 +02:00
|
|
|
/* FIXME: Replace this code -- Hmmm: why */
|
1998-08-05 18:51:59 +02:00
|
|
|
csum = 0;
|
|
|
|
for(i=pubkey_get_npkey(sk->pubkey_algo);
|
|
|
|
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
|
1999-12-08 22:03:03 +01:00
|
|
|
csum += checksum_mpi( sk->skey[i] );
|
2000-01-24 12:55:49 +01:00
|
|
|
|
|
|
|
if( gcry_mpi_aprint( GCRYMPI_FMT_USG,
|
|
|
|
&buffer, &nbytes, sk->skey[i] ) )
|
|
|
|
BUG();
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_sync( cipher_hd );
|
1999-12-31 14:02:40 +01:00
|
|
|
assert( !gcry_mpi_get_flag( sk->skey[i], GCRYMPI_FLAG_OPAQUE ) );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_encrypt( cipher_hd, buffer, nbytes, NULL, 0 );
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_mpi_release( sk->skey[i] );
|
|
|
|
if( gcry_mpi_scan( &sk->skey[i], GCRYMPI_FMT_USG,
|
|
|
|
buffer,&nbytes ) )
|
|
|
|
BUG();
|
|
|
|
|
|
|
|
gcry_free( buffer );
|
1998-08-05 18:51:59 +02:00
|
|
|
}
|
|
|
|
sk->csum = csum;
|
1998-06-15 17:41:04 +02:00
|
|
|
}
|
1998-06-29 14:30:57 +02:00
|
|
|
sk->is_protected = 1;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_close( cipher_hd );
|
1998-04-02 12:30:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
|