Changeset 135
- Timestamp:
- 05/19/05 17:59:48
- Files:
-
- openpgpsdk/trunk/doc/doxygen-user.cfg (modified) (1 diff)
- openpgpsdk/trunk/include/accumulate.h (modified) (1 diff)
- openpgpsdk/trunk/include/build.h (modified) (1 diff)
- openpgpsdk/trunk/include/compress.h (modified) (1 diff)
- openpgpsdk/trunk/include/create.h (modified) (1 diff)
- openpgpsdk/trunk/include/crypto.h (modified) (1 diff)
- openpgpsdk/trunk/include/keyring.h (modified) (1 diff)
- openpgpsdk/trunk/include/keyring_local.h (modified) (1 diff)
- openpgpsdk/trunk/include/memory.h (modified) (1 diff)
- openpgpsdk/trunk/include/packet-parse.h (modified) (1 diff)
- openpgpsdk/trunk/include/packet.h (modified) (1 diff)
- openpgpsdk/trunk/include/signature.h (modified) (1 diff)
- openpgpsdk/trunk/include/types.h (modified) (1 diff)
- openpgpsdk/trunk/include/util.h (modified) (1 diff)
- openpgpsdk/trunk/src/accumulate.c (modified) (2 diffs)
- openpgpsdk/trunk/src/build.c (modified) (1 diff)
- openpgpsdk/trunk/src/compress.c (modified) (1 diff)
- openpgpsdk/trunk/src/create.c (modified) (1 diff)
- openpgpsdk/trunk/src/fingerprint.c (modified) (1 diff)
- openpgpsdk/trunk/src/hash.c (modified) (1 diff)
- openpgpsdk/trunk/src/keyring.c (modified) (1 diff)
- openpgpsdk/trunk/src/memory.c (modified) (1 diff)
- openpgpsdk/trunk/src/openssl_crypto.c (modified) (1 diff)
- openpgpsdk/trunk/src/signature.c (modified) (1 diff)
- openpgpsdk/trunk/src/util.c (modified) (1 diff)
- openpgpsdk/trunk/src/validate.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/doc/doxygen-user.cfg
r134 r135 448 448 449 449 # XX - changed by weasel 450 INPUT = ../src 450 INPUT = ../src ../include 451 451 452 452 # If the value of the INPUT tag contains directories, you can use the openpgpsdk/trunk/include/accumulate.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "keyring.h" 2 5 openpgpsdk/trunk/include/build.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "util.h" 2 5 #include "memory.h" openpgpsdk/trunk/include/compress.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "packet-parse.h" 2 5 openpgpsdk/trunk/include/create.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "types.h" 2 5 #include "packet.h" openpgpsdk/trunk/include/crypto.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "util.h" 2 5 #include "packet.h" openpgpsdk/trunk/include/keyring.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "packet.h" 2 5 openpgpsdk/trunk/include/keyring_local.h
r124 r135 1 /** \file 2 */ 3 1 4 #define DECLARE_ARRAY(type,arr) unsigned n##arr; unsigned n##arr##_allocated; type *arr 2 5 #define EXPAND_ARRAY(str,arr) do if(str->n##arr == str->n##arr##_allocated) \ openpgpsdk/trunk/include/memory.h
r124 r135 1 /** \file 2 */ 3 1 4 #ifndef OPS_MEMORY_H 2 5 #define OPS_MEMORY_H openpgpsdk/trunk/include/packet-parse.h
r120 r135 1 /** \file packet-parse.h1 /** \file 2 2 * Parser for OpenPGP packets - headers. 3 *4 * $Id$5 3 */ 6 4 openpgpsdk/trunk/include/packet.h
r131 r135 1 /** \file packet.h1 /** \file 2 2 * packet related headers. 3 *4 * $Id$5 3 */ 6 4 openpgpsdk/trunk/include/signature.h
r124 r135 1 /** \file 2 */ 3 1 4 #include "packet.h" 2 5 #include "util.h" openpgpsdk/trunk/include/types.h
r120 r135 1 /** \file 2 */ 3 1 4 #ifndef OPS_TYPES_H 2 5 #define OPS_TYPES_H openpgpsdk/trunk/include/util.h
r120 r135 1 /** \file 2 */ 3 1 4 #ifndef OPS_UTIL_H 2 5 #define OPS_UTIL_H openpgpsdk/trunk/src/accumulate.c
r56 r135 1 /** \file 2 */ 3 1 4 #include "packet.h" 2 5 #include "packet-parse.h" … … 260 263 } 261 264 265 /*! \todo descr for ops_parse_and_accumulate */ 262 266 void ops_parse_and_accumulate(ops_keyring_t *keyring,ops_parse_options_t *opt) 263 267 { openpgpsdk/trunk/src/build.c
r40 r135 1 /** \file 2 */ 3 1 4 #include "packet.h" 2 5 #include "util.h" openpgpsdk/trunk/src/compress.c
r96 r135 1 /** \file 2 */ 3 1 4 #include "compress.h" 2 5 #include <zlib.h> openpgpsdk/trunk/src/create.c
r118 r135 1 /** \file 2 */ 3 1 4 #include "create.h" 2 5 #include "util.h" openpgpsdk/trunk/src/fingerprint.c
r103 r135 1 /** \file 2 */ 3 1 4 #include "packet.h" 2 5 #include "crypto.h" openpgpsdk/trunk/src/hash.c
r46 r135 1 /** \file 2 */ 3 1 4 #include "crypto.h" 2 5 openpgpsdk/trunk/src/keyring.c
r56 r135 1 /** \file 2 */ 3 1 4 #include "keyring.h" 2 5 #include "keyring_local.h" openpgpsdk/trunk/src/memory.c
r56 r135 1 /** \file 2 */ 3 1 4 #include "memory.h" 2 5 #include <stdlib.h> openpgpsdk/trunk/src/openssl_crypto.c
r48 r135 1 /** \file 2 */ 3 1 4 #include "crypto.h" 2 5 #include <openssl/md5.h> openpgpsdk/trunk/src/signature.c
r56 r135 1 /** \file 2 */ 3 1 4 #include "signature.h" 2 5 #include "crypto.h" openpgpsdk/trunk/src/util.c
r113 r135 1 /** \file 2 */ 3 1 4 #include "util.h" 2 5 #include "packet-parse.h" openpgpsdk/trunk/src/validate.c
r48 r135 1 /** \file 2 */ 3 1 4 #include "packet.h" 2 5 #include "util.h"
