2003-08-05 19:11:04 +02:00
|
|
|
/* 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
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-08-05 19:11:04 +02:00
|
|
|
* (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
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2003-08-05 19:11:04 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MINIP12_H
|
|
|
|
#define MINIP12_H
|
|
|
|
|
|
|
|
#include <gcrypt.h>
|
|
|
|
|
|
|
|
gcry_mpi_t *p12_parse (const unsigned char *buffer, size_t length,
|
2004-02-10 20:26:55 +01:00
|
|
|
const char *pw,
|
|
|
|
void (*certcb)(void*, const unsigned char*, size_t),
|
2010-06-17 17:44:44 +02:00
|
|
|
void *certcbarg, int *r_badpass);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
2004-02-19 17:26:32 +01:00
|
|
|
unsigned char *p12_build (gcry_mpi_t *kparms,
|
2010-06-21 12:01:24 +02:00
|
|
|
const void *cert, size_t certlen,
|
2007-03-20 11:00:55 +01:00
|
|
|
const char *pw, const char *charset,
|
|
|
|
size_t *r_length);
|
2014-06-03 18:57:33 +02:00
|
|
|
unsigned char *p12_raw_build (gcry_mpi_t *kparms,
|
|
|
|
int rawmode,
|
|
|
|
size_t *r_length);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*MINIP12_H*/
|