|
app
Synopsis
int xmlSecNssAppInit (const char *config);
int xmlSecNssAppShutdown (void);
int xmlSecNssAppSimpleKeysMngrInit (xmlSecKeysMngrPtr mngr);
int xmlSecNssAppSimpleKeysMngrAdoptKey
(xmlSecKeysMngrPtr mngr,
xmlSecKeyPtr key);
int xmlSecNssAppSimpleKeysMngrLoad (xmlSecKeysMngrPtr mngr,
const char *uri);
int xmlSecNssAppSimpleKeysMngrSave (xmlSecKeysMngrPtr mngr,
const char *filename,
xmlSecKeyDataType type);
int xmlSecNssAppKeysMngrCertLoad (xmlSecKeysMngrPtr mngr,
const char *filename,
xmlSecKeyDataFormat format,
xmlSecKeyDataType type);
int xmlSecNssAppKeysMngrAddCertsPath
(xmlSecKeysMngrPtr mngr,
const char *path);
xmlSecKeyPtr xmlSecNssAppKeyLoad (const char *filename,
xmlSecKeyDataFormat format,
const char *pwd,
void *pwdCallback,
void *pwdCallbackCtx);
xmlSecKeyPtr xmlSecNssAppPkcs12Load (const char *filename,
const char *pwd,
void *pwdCallback,
void *pwdCallbackCtx);
int xmlSecNssAppKeyCertLoad (xmlSecKeyPtr key,
const char *filename,
xmlSecKeyDataFormat format); |
Details
xmlSecNssAppInit ()
int xmlSecNssAppInit (const char *config); |
General crypto engine initialization. This function is used
by XMLSec command line utility and called before
xmlSecInit function.
config : |
the path to NSS database files. |
Returns : |
0 on success or a negative value otherwise. |
xmlSecNssAppShutdown ()
int xmlSecNssAppShutdown (void); |
General crypto engine shutdown. This function is used
by XMLSec command line utility and called after
xmlSecShutdown function.
Returns : |
0 on success or a negative value otherwise. |
xmlSecNssAppSimpleKeysMngrInit ()
Initializes mngr with simple keys store xmlSecSimpleKeysStoreId
and a default NSS crypto key data stores.
mngr : |
the pointer to keys manager. |
Returns : |
0 on success or a negative value otherwise. |
xmlSecNssAppSimpleKeysMngrSave ()
Saves keys from mngr to XML keys file.
mngr : |
the pointer to keys manager. |
filename : |
the destination filename. |
type : |
the type of keys to save (public/private/symmetric). |
Returns : |
0 on success or a negative value otherwise. |
xmlSecNssAppKeysMngrCertLoad ()
Reads cert from PEM filename and adds to the list of trusted or known
untrusted certs in store (not implemented yet).
mngr : |
the pointer to keys manager. |
filename : |
the certificate file. |
format : |
the certificate file format (PEM or DER). |
type : |
the certificate type (trusted/untrusted). |
Returns : |
0 on success or a negative value otherwise. |
xmlSecNssAppKeysMngrAddCertsPath ()
Reads cert from path and adds to the list of trusted certificates
(not implemented yet).
mngr : |
the keys manager. |
path : |
the path to trusted certificates. |
Returns : |
0 on success or a negative value otherwise. |
xmlSecNssAppKeyLoad ()
Reads key from the a file (not implemented yet).
xmlSecNssAppPkcs12Load ()
xmlSecKeyPtr xmlSecNssAppPkcs12Load (const char *filename,
const char *pwd,
void *pwdCallback,
void *pwdCallbackCtx); |
Reads key and all associated certificates from the PKCS12 file
(not implemented yet).
xmlSecNssAppKeyCertLoad ()
Reads the certificate from $filename and adds it to key
(not implemented yet).
|
Aleksey Sanin
|
|