Changeset 312
- Timestamp:
- 11/28/05 13:15:38
- Files:
-
- openpgpsdk/trunk/src/fingerprint.c (modified) (2 diffs)
- openpgpsdk/trunk/src/util.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/src/fingerprint.c
r311 r312 12 12 # include <alloca.h> 13 13 #endif 14 15 /** 16 * \ingroup Utils 17 * 18 * Calculate a public key fingerprint. 19 * 20 * \param fp Where to put the calculated fingerprint 21 * \param key The key for which the fingerprint is calculated 22 */ 14 23 15 24 void ops_fingerprint(ops_fingerprint_t *fp,const ops_public_key_t *key) … … 66 75 * \ingroup Utils 67 76 * 68 * Not sure what this does77 * Calculate the Key ID from the public key. 69 78 * 70 * \param keyid 71 * \param key 72 * 73 * \todo Get descr from Ben for ops_keyid() 79 * \param keyid Space for the calculated ID to be stored 80 * \param key The key for which the ID is calculated 74 81 */ 75 82 openpgpsdk/trunk/src/util.c
r307 r312 57 57 * \ingroup Utils 58 58 * 59 * ops_init() just calls ops_crypto_init()60 * \todo Ask Ben why we need this extra layer59 * Initialise OpenPGP:SDK. This <b>must</b> be called before any other 60 * OpenPGP:SDK function is used. 61 61 */ 62 62 … … 69 69 * \ingroup Utils 70 70 * 71 * ops_finish() just calls ops_crypto_finish() 72 * \todo Ask Ben why we need this extra layer 71 * Close down OpenPGP:SDK, release any resources under the control of 72 * the library. No OpenPGP:SDK function other than ops_init() should 73 * be called after this function. 73 74 */ 74 75
