summaryrefslogtreecommitdiff
path: root/libxmlsec/include/akmngr_nss.h
blob: a6b88301b40517afd43dcc167e0252ca2f5bf54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
 * XMLSec library
 *
 * This is free software; see Copyright file in the source
 * distribution for preciese wording.
 *
 * Copyright ..........................
 */
#ifndef __XMLSEC_NSS_AKMNGR_H__
#define __XMLSEC_NSS_AKMNGR_H__

#include <nss.h>
#include <nspr.h>
#include <pk11func.h>
#include <cert.h>

#include <xmlsec/xmlsec.h>
#include <xmlsec/keys.h>
#include <xmlsec/transforms.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

XMLSEC_CRYPTO_EXPORT xmlSecKeysMngrPtr
xmlSecNssAppliedKeysMngrCreate(
    PK11SlotInfo** slots,
    int cSlots,
    CERTCertDBHandle* handler
) ;

XMLSEC_CRYPTO_EXPORT int
xmlSecNssAppliedKeysMngrSymKeyLoad(
    xmlSecKeysMngrPtr   mngr ,
    PK11SymKey*         symKey
) ;

XMLSEC_CRYPTO_EXPORT int
xmlSecNssAppliedKeysMngrPubKeyLoad(
    xmlSecKeysMngrPtr   mngr ,
    SECKEYPublicKey*    pubKey
) ;

XMLSEC_CRYPTO_EXPORT int
xmlSecNssAppliedKeysMngrPriKeyLoad(
    xmlSecKeysMngrPtr   mngr ,
    SECKEYPrivateKey*   priKey
) ;

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __XMLSEC_NSS_AKMNGR_H__ */