Page MenuHome GnuPG

cert-get.c
No OneTemporary

cert-get.c

/* cert-get.c - Get attributes from a certificate
* Copyright (C) 2001 g10 Code GmbH
*
* This file is part of KSBA.
*
* KSBA 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.
*
* KSBA 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 <assert.h>
#include "util.h"
#include "ksba.h"
#include "cert.h"
gpg_error_t
ksba_cert_get_string_attr (ksba_cert_t cert, ksba_attr_t what, int idx,
const char **ret)
{
*ret = NULL; /* set a default value */
if (!cert || idx < 0 )
return gpg_error (GPG_ERR_INV_VALUE);
switch (what)
{
default:
return gpg_error (GPG_ERR_INV_ATTR,);
}
return 0;
}
/* FIXME: This function is not yet used or published. */
gpg_error_t
ksba_cert_get_time_attr (ksba_cert_t cert, ksba_attr_t what, int idx,
ksba_isotime_t ret)
{
*ret = 0; /* set a default value */
if (!cert || idx < 0 )
return gpg_error (GPG_ERR_INV_VALUE);
switch (what)
{
default:
return gpg_error (GPG_ERR_INV_ATTR,);
}
return 0;
}

File Metadata

Mime Type
text/x-c
Expires
Thu, Jul 17, 12:56 AM (1 d, 14 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e3/05/880e400cd0ff2e0f71ca9095f509

Event Timeline