mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
a1b487a17a
(export_p12_file): Read a certificate from STDIN and pass it to p12_build. Detect a keygrip and construct the filename in that case. Unprotcet a key if needed. Print error messages for key formats we can't handle. (release_passphrase): New. (get_passphrase): New arg PROMPTNO. Return the allocated string. Changed all callers. * minip12.c: Revamped the build part. (p12_build): New args CERT and CERTLEN. * simple-pwquery.c (agent_open): Don't mangle INFOSTR. * export.c (export_p12, popen_protect_tool) (gpgsm_p12_export): New. * gpgsm.c (main): New command --export-secret-key-p12.
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/* minip12.h - Global definitions for the minimal pkcs-12 implementation.
|
|
* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
|
*
|
|
* This file is part of GnuPG.
|
|
*
|
|
* GnuPG 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.
|
|
*
|
|
* GnuPG 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
|
|
*/
|
|
|
|
#ifndef MINIP12_H
|
|
#define MINIP12_H
|
|
|
|
#include <gcrypt.h>
|
|
|
|
gcry_mpi_t *p12_parse (const unsigned char *buffer, size_t length,
|
|
const char *pw,
|
|
void (*certcb)(void*, const unsigned char*, size_t),
|
|
void *certcbarg);
|
|
|
|
unsigned char *p12_build (gcry_mpi_t *kparms,
|
|
unsigned char *cert, size_t certlen,
|
|
const char *pw, size_t *r_length);
|
|
|
|
|
|
#endif /*MINIP12_H*/
|