Changeset 636
- Timestamp:
- 01/06/09 16:01:17
- Files:
-
- openpgpsdk/trunk/include/openpgpsdk/types.h (modified) (1 diff)
- openpgpsdk/trunk/src/doxygen.c (modified) (2 diffs)
- openpgpsdk/trunk/src/lib/accumulate.c (modified) (1 diff)
- openpgpsdk/trunk/src/lib/create.c (modified) (1 diff)
- openpgpsdk/trunk/src/lib/fingerprint.c (modified) (1 diff)
- openpgpsdk/trunk/src/lib/packet-show.c (modified) (16 diffs)
- openpgpsdk/trunk/src/lib/signature.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/include/openpgpsdk/types.h
r626 r636 58 58 typedef enum ops_content_tag_t ops_packet_tag_t; 59 59 /** SS types are a subset of all content types. 60 \todo may be want to separate these out?61 60 */ 62 61 typedef enum ops_content_tag_t ops_ss_type_t; openpgpsdk/trunk/src/doxygen.c
r625 r636 144 144 */ 145 145 146 /**147 \defgroup HighLevel_Functions High Level API Functions148 \ingroup HighLevelAPI149 */150 151 146 /** \defgroup HighLevel_Sign Sign File or Buffer 152 \ingroup HighLevel _Functions147 \ingroup HighLevelAPI 153 148 */ 154 149 155 150 /** \defgroup HighLevel_Verify Verify File, Buffer, Key or Keyring 156 \ingroup HighLevel _Functions151 \ingroup HighLevelAPI 157 152 */ 158 153 159 154 /** \defgroup HighLevel_Crypto Encrypt or Decrypt File 160 \ingroup HighLevel _Functions155 \ingroup HighLevelAPI 161 156 */ 162 157 163 158 /** 164 159 \defgroup HighLevel_Keyring Keys and Keyrings 165 \ingroup HighLevel _Functions160 \ingroup HighLevelAPI 166 161 */ 167 162 168 163 /** \defgroup HighLevel_Supported Supported Algorithms 169 \ingroup HighLevel _Functions164 \ingroup HighLevelAPI 170 165 */ 171 166 172 167 /** \defgroup HighLevel_Memory Memory 173 \ingroup HighLevel _Functions168 \ingroup HighLevelAPI 174 169 */ 175 170 176 171 /** 177 172 \defgroup HighLevel_General General 178 \ingroup HighLevel _Functions173 \ingroup HighLevelAPI 179 174 */ 180 175 … … 225 220 /** 226 221 \defgroup HighLevel_Callbacks Callbacks 227 \ingroup HighLevel _Functions222 \ingroup HighLevelAPI 228 223 */ 229 224 openpgpsdk/trunk/src/lib/accumulate.c
r621 r636 184 184 } 185 185 186 // XXX: not e necessarily a maintained part of the API.186 // XXX: not a maintained part of the API - use ops_keyring_list() 187 187 /** ops_dump_keyring 188 \todo decide whether this is part of the API or not189 188 */ 190 189 void ops_dump_keyring(const ops_keyring_t *keyring) openpgpsdk/trunk/src/lib/create.c
r625 r636 103 103 * 104 104 * \return return value from ops_write_struct_user_id() 105 * \todo better descr of return value106 105 */ 107 106 ops_boolean_t ops_write_user_id(const unsigned char *user_id,ops_create_info_t *info) openpgpsdk/trunk/src/lib/fingerprint.c
r621 r636 112 112 * \param keyid Space for the calculated ID to be stored 113 113 * \param key The key for which the ID is calculated 114 * \todo add error return value115 114 */ 116 115 openpgpsdk/trunk/src/lib/packet-show.c
r627 r636 563 563 * 564 564 * returns description of the Revocation Reason code 565 * \todo add reference 566 * \todo make typesafe 565 * \param ss_rr_code Revocation Reason code 567 566 * \return string or "Unknown" 568 567 */ … … 577 576 * returns description of the given Signature type 578 577 * \param sig_type Signature type 579 * \todo add reference580 578 * \return string or "Unknown" 581 579 */ … … 590 588 * returns description of the given Public Key Algorithm 591 589 * \param pka Public Key Algorithm type 592 * \todo add reference593 590 * \return string or "Unknown" 594 591 */ … … 601 598 * \ingroup Core_Print 602 599 * returns description of the Preferred Compression 603 * \param octet 600 * \param octet Preferred Compression 604 601 * \return string or "Unknown" 605 602 */ … … 616 613 * \return NULL if cannot allocate memory or other error 617 614 * \return pointer to structure, if no error 618 * \todo make typesafe619 615 */ 620 616 ops_text_t *ops_showall_ss_preferred_compression(ops_ss_preferred_compression_t ss_preferred_compression) … … 630 626 * returns description of the Hash Algorithm type 631 627 * \param hash Hash Algorithm type 632 * \todo add reference633 * \todo make typesafe634 628 * \return string or "Unknown" 635 629 */ … … 646 640 * \return NULL if cannot allocate memory or other error 647 641 * \return pointer to structure, if no error 648 * \todo make typesafe649 642 */ 650 643 ops_text_t *ops_showall_ss_preferred_hash(ops_ss_preferred_hash_t ss_preferred_hash) … … 663 656 * returns description of the given Preferred Symmetric Key Algorithm 664 657 * \param octet 665 * \todo add reference666 658 * \return string or "Unknown" 667 659 */ … … 678 670 * \return NULL if cannot allocate memory or other error 679 671 * \return pointer to structure, if no error 680 * \todo make typesafe681 672 */ 682 673 ops_text_t *ops_showall_ss_preferred_ska(ops_ss_preferred_ska_t ss_preferred_ska) … … 691 682 * \param octet 692 683 * \return string or "Unknown" 693 * \todo add reference694 684 */ 695 685 static char *ops_show_ss_feature(unsigned char octet,unsigned offset) … … 707 697 * \return NULL if cannot allocate memory or other error 708 698 * \return pointer to structure, if no error 709 * \todo make typesafe710 * \todo add reference711 699 */ 712 700 /* XXX: shouldn't this use show_all_octets_bits? */ … … 750 738 * \param map 751 739 * \return 752 * \todo add reference753 740 */ 754 741 const char *ops_show_ss_key_flag(unsigned char octet, ops_bit_map_t *map) … … 764 751 * \return NULL if cannot allocate memory or other error 765 752 * \return pointer to structure, if no error 766 * \todo make typesafe767 * \todo add reference768 753 */ 769 754 ops_text_t *ops_showall_ss_key_flags(ops_ss_key_flags_t ss_key_flags) … … 807 792 * \param map 808 793 * \return string or "Unknown" 809 * \todo add reference810 * \todo make typesafe811 794 */ 812 795 const char *ops_show_ss_key_server_prefs(unsigned char prefs, … … 822 805 * \return NULL if cannot allocate memory or other error 823 806 * \return pointer to structure, if no error 824 * \todo make typesafe825 * \todo add reference826 807 * 827 808 */ … … 866 847 * \return NULL if cannot allocate memory or other error 867 848 * \return pointer to structure, if no error 868 * \todo make typesafe869 * \todo add reference870 849 */ 871 850 ops_text_t *ops_showall_ss_notation_data_flags(ops_ss_notation_data_t ss_notation_data) openpgpsdk/trunk/src/lib/signature.c
r630 r636 611 611 * \param id The user ID being bound to the key 612 612 * \param type Signature type 613 * \todo Expand description. Allow other hashes.614 613 */ 615 614 void ops_signature_start_key_signature(ops_create_signature_t *sig, … … 743 742 * \param info 744 743 * 745 * \todo get a better description of how/when this is used746 744 */ 747 745
