comparison libpurple/certificate.h @ 18957:9205841eed06

- Certificate system now has init and uninit like other systems
author William Ehlhardt <williamehlhardt@gmail.com>
date Wed, 27 Jun 2007 00:16:58 +0000
parents 89b32569890c
children fcd05c39803e
comparison
equal deleted inserted replaced
18956:014e0cd9e471 18957:9205841eed06
312 /** @name PurpleCertificate Subsystem API */ 312 /** @name PurpleCertificate Subsystem API */
313 /*****************************************************************************/ 313 /*****************************************************************************/
314 /*@{*/ 314 /*@{*/
315 315
316 /** 316 /**
317 * Registers the "universal" PurpleCertificateVerifier and 317 * Initialize the certificate system
318 * PurpleCertificatePool types that libpurple knows about 318 */
319 */ 319 void
320 void 320 purple_certificate_init(void);
321 purple_certificate_register_builtins(void); 321
322 /**
323 * Un-initialize the certificate system
324 */
325 void
326 purple_certificate_uninit(void);
322 327
323 /** Look up a registered CertificateScheme by name 328 /** Look up a registered CertificateScheme by name
324 * @param name The scheme name. Case insensitive. 329 * @param name The scheme name. Case insensitive.
325 * @return Pointer to the located Scheme, or NULL if it isn't found. 330 * @return Pointer to the located Scheme, or NULL if it isn't found.
326 */ 331 */