|
app
Synopsis
int xmlSecGnuTLSAppInit (const char *config);
int xmlSecGnuTLSAppShutdown (void);
int xmlSecGnuTLSAppSimpleKeysMngrInit
(xmlSecKeysMngrPtr mngr);
int xmlSecGnuTLSAppSimpleKeysMngrAdoptKey
(xmlSecKeysMngrPtr mngr,
xmlSecKeyPtr key);
int xmlSecGnuTLSAppSimpleKeysMngrLoad
(xmlSecKeysMngrPtr mngr,
const char *uri);
int xmlSecGnuTLSAppSimpleKeysMngrSave
(xmlSecKeysMngrPtr mngr,
const char *filename,
xmlSecKeyDataType type);
int xmlSecGnuTLSAppKeysMngrCertLoad (xmlSecKeysMngrPtr mngr,
const char *filename,
xmlSecKeyDataFormat format,
xmlSecKeyDataType type);
int xmlSecGnuTLSAppKeysMngrAddCertsPath
(xmlSecKeysMngrPtr mngr,
const char *path);
xmlSecKeyPtr xmlSecGnuTLSAppKeyLoad (const char *filename,
xmlSecKeyDataFormat format,
const char *pwd,
void *pwdCallback,
void *pwdCallbackCtx);
xmlSecKeyPtr xmlSecGnuTLSAppPkcs12Load (const char *filename,
const char *pwd,
void *pwdCallback,
void *pwdCallbackCtx);
int xmlSecGnuTLSAppKeyCertLoad (xmlSecKeyPtr key,
const char *filename,
xmlSecKeyDataFormat format); |
Details
xmlSecGnuTLSAppInit ()
int xmlSecGnuTLSAppInit (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 GnuTLS configuration (unused). |
Returns : |
0 on success or a negative value otherwise. |
xmlSecGnuTLSAppShutdown ()
int xmlSecGnuTLSAppShutdown (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. |
xmlSecGnuTLSAppSimpleKeysMngrInit ()
Initializes mngr with simple keys store xmlSecSimpleKeysStoreId
and a default GnuTLS crypto key data stores.
mngr : |
the pointer to keys manager. |
Returns : |
0 on success or a negative value otherwise. |
xmlSecGnuTLSAppSimpleKeysMngrSave ()
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. |
xmlSecGnuTLSAppKeysMngrCertLoad ()
Reads cert from filename and adds to the list of trusted or known
untrusted certs in store (not implemented yet).
mngr : |
the keys manager. |
filename : |
the certificate file. |
format : |
the certificate file format. |
type : |
the flag that indicates is the certificate in filename
trusted or not. |
Returns : |
0 on success or a negative value otherwise. |
xmlSecGnuTLSAppKeysMngrAddCertsPath ()
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. |
xmlSecGnuTLSAppKeyLoad ()
Reads key from the a file (not implemented yet).
xmlSecGnuTLSAppPkcs12Load ()
xmlSecKeyPtr xmlSecGnuTLSAppPkcs12Load (const char *filename,
const char *pwd,
void *pwdCallback,
void *pwdCallbackCtx); |
Reads key and all associated certificates from the PKCS12 file
(not implemented yet).
xmlSecGnuTLSAppKeyCertLoad ()
Reads the certificate from $filename and adds it to key
(not implemented yet).
|
Aleksey Sanin
|
|