Changeset 417
- Timestamp:
- 04/28/06 11:30:38
- Files:
-
- openpgpsdk/trunk/examples/create-signed-key.c (modified) (1 diff)
- openpgpsdk/trunk/include/openpgpsdk/crypto.h (modified) (1 diff)
- openpgpsdk/trunk/include/openpgpsdk/packet.h (modified) (10 diffs)
- openpgpsdk/trunk/src/accumulate.c (modified) (1 diff)
- openpgpsdk/trunk/src/armour.c (modified) (6 diffs)
- openpgpsdk/trunk/src/keyring_local.h (modified) (2 diffs)
- openpgpsdk/trunk/src/parse_local.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/examples/create-signed-key.c
r371 r417 41 41 } 42 42 43 user_id= argv[1];43 user_id=(unsigned char *)argv[1]; 44 44 secfile=argv[2]; 45 45 pubfile=argv[3]; openpgpsdk/trunk/include/openpgpsdk/crypto.h
r397 r417 40 40 typedef void ops_decrypt_finish_t(ops_decrypt_t *decrypt); 41 41 42 /** _ops_decrypt_t */ 42 43 struct _ops_decrypt_t 43 44 { openpgpsdk/trunk/include/openpgpsdk/packet.h
r397 r417 347 347 } ops_rsa_secret_key_t; 348 348 349 /** ops_dsa_secret_key_t */ 349 350 typedef struct 350 351 { … … 352 353 } ops_dsa_secret_key_t; 353 354 354 /** ops_secret_key_union_t 355 */ 355 /** ops_secret_key_union_t */ 356 356 typedef struct 357 357 { … … 812 812 } ops_pk_session_key_version_t; 813 813 814 /** ops_pk_session_key_parameters_rsa_t */ 814 815 typedef struct 815 816 { … … 818 819 } ops_pk_session_key_parameters_rsa_t; 819 820 821 /** ops_pk_session_key_parameters_elgamal_t */ 820 822 typedef struct 821 823 { … … 824 826 } ops_pk_session_key_parameters_elgamal_t; 825 827 828 /** ops_pk_session_key_parameters_t */ 826 829 typedef union 827 830 { … … 830 833 } ops_pk_session_key_parameters_t; 831 834 835 /** ops_pk_session_key_t */ 832 836 typedef struct 833 837 { … … 841 845 } ops_pk_session_key_t; 842 846 847 /** ops_secret_key_passphrase_t */ 843 848 typedef struct 844 849 { … … 852 857 } ops_se_ip_version_t; 853 858 859 /** ops_se_ip_data_header_t */ 854 860 typedef struct 855 861 { … … 857 863 } ops_se_ip_data_header_t; 858 864 865 /** ops_se_data_body_t */ 859 866 typedef struct 860 867 { … … 863 870 } ops_se_data_body_t; 864 871 872 /** ops_get_secret_key_t */ 865 873 typedef struct 866 874 { openpgpsdk/trunk/src/accumulate.c
r396 r417 147 147 148 148 // XXX: note necessarily a maintained part of the API. 149 /** ops_dump_keyring 150 \todo decide whether this is part of the API or not 151 */ 149 152 void ops_dump_keyring(const ops_keyring_t *keyring) 150 153 { openpgpsdk/trunk/src/armour.c
r412 r417 20 20 21 21 /** 22 * \struct 22 * \struct dearmour_arg_t 23 23 */ 24 24 typedef struct … … 172 172 173 173 /** 174 * \param ops_headers_t174 * \param headers 175 175 * \param key 176 176 * … … 754 754 755 755 /** 756 * \brief 756 757 * \param parse_info Usual structure containing information about to how to do the parse 757 758 * \param without_gap Allow headers in armoured data that are not separated from the data by a blank line … … 786 787 787 788 /** 788 * \struct 789 * \struct dash_escaped_arg_t 789 790 */ 790 791 typedef struct … … 884 885 885 886 /** 886 * \struct 887 * \struct base64_arg_t 887 888 */ 888 889 typedef struct … … 978 979 979 980 /** 980 * \struct 981 * \struct linebreak_arg_t 981 982 */ 982 983 typedef struct openpgpsdk/trunk/src/keyring_local.h
r336 r417 9 9 } while(0) 10 10 11 /** ops_key_data_key_t 12 */ 11 13 typedef union 12 14 { … … 17 19 18 20 // XXX: gonna have to expand this to hold onto subkeys, too... 21 /** \struct ops_key_data 22 * \todo expand to hold onto subkeys 23 */ 19 24 struct ops_key_data 20 25 { openpgpsdk/trunk/src/parse_local.h
r397 r417 1 /** \file */ 2 3 /** ops_reader_info */ 1 4 struct ops_reader_info 2 5 { … … 17 20 }; 18 21 22 /** ops_parse_cb_info */ 19 23 struct ops_parse_cb_info 20 24 { … … 25 29 }; 26 30 31 /** ops_parse_hash_info_t */ 27 32 typedef struct 28 33 {
