Changeset 371
- Timestamp:
- 02/20/06 16:59:31
- Files:
-
- openpgpsdk/trunk/examples/common.c (modified) (1 diff)
- openpgpsdk/trunk/examples/create-key.c (modified) (1 diff)
- openpgpsdk/trunk/examples/create-signed-key.c (modified) (1 diff)
- openpgpsdk/trunk/examples/decrypt.c (modified) (1 diff)
- openpgpsdk/trunk/examples/packet-dump.c (modified) (1 diff)
- openpgpsdk/trunk/examples/sign-detached.c (modified) (1 diff)
- openpgpsdk/trunk/examples/sign-inline.c (modified) (1 diff)
- openpgpsdk/trunk/examples/verify.c (modified) (1 diff)
- openpgpsdk/trunk/examples/verify2.c (modified) (1 diff)
- openpgpsdk/trunk/include/openpgpsdk/configure.h.template (modified) (1 diff)
- openpgpsdk/trunk/src/accumulate.c (modified) (1 diff)
- openpgpsdk/trunk/src/armour.c (modified) (1 diff)
- openpgpsdk/trunk/src/compress.c (modified) (1 diff)
- openpgpsdk/trunk/src/create.c (modified) (1 diff)
- openpgpsdk/trunk/src/errors.c (modified) (2 diffs)
- 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/lists.c (modified) (1 diff)
- openpgpsdk/trunk/src/memory.c (modified) (1 diff)
- openpgpsdk/trunk/src/openssl_crypto.c (modified) (1 diff)
- openpgpsdk/trunk/src/packet-parse.c (modified) (1 diff)
- openpgpsdk/trunk/src/packet-show.c (modified) (1 diff)
- openpgpsdk/trunk/src/signature.c (modified) (1 diff)
- openpgpsdk/trunk/src/symmetric.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/examples/common.c
r320 r371 4 4 #include <fcntl.h> 5 5 #include <assert.h> 6 7 #include <openpgpsdk/final.h> 6 8 7 9 static ops_parse_cb_return_t openpgpsdk/trunk/examples/create-key.c
r314 r371 2 2 #include <openpgpsdk/util.h> 3 3 #include <stdio.h> 4 5 #include <openpgpsdk/final.h> 4 6 5 7 int main(int argc,char **argv) openpgpsdk/trunk/examples/create-signed-key.c
r314 r371 9 9 #include <string.h> 10 10 #include <unistd.h> 11 12 #include <openpgpsdk/final.h> 11 13 12 14 // XXX: rename to create-self-signed-key openpgpsdk/trunk/examples/decrypt.c
r336 r371 9 9 #include <fcntl.h> 10 10 #include <assert.h> 11 12 #include <openpgpsdk/final.h> 11 13 12 14 static char *pname; openpgpsdk/trunk/examples/packet-dump.c
r369 r371 15 15 #include <string.h> 16 16 #include <fcntl.h> 17 18 #include <openpgpsdk/final.h> 17 19 18 20 static int indent=0; openpgpsdk/trunk/examples/sign-detached.c
r314 r371 8 8 #include <fcntl.h> 9 9 #include <unistd.h> 10 11 #include <openpgpsdk/final.h> 10 12 11 13 int main(int argc,char **argv) openpgpsdk/trunk/examples/sign-inline.c
r314 r371 10 10 #include <fcntl.h> 11 11 #include <unistd.h> 12 13 #include <openpgpsdk/final.h> 12 14 13 15 int main(int argc,char **argv) openpgpsdk/trunk/examples/verify.c
r320 r371 8 8 #include <string.h> 9 9 #include <fcntl.h> 10 11 #include <openpgpsdk/final.h> 10 12 11 13 int main(int argc,char **argv) openpgpsdk/trunk/examples/verify2.c
r327 r371 12 12 #include <assert.h> 13 13 14 #include <openpgpsdk/final.h> 15 14 16 const char *pname; 15 17 openpgpsdk/trunk/include/openpgpsdk/configure.h.template
r287 r371 2 2 #define TIME_T_FMT %TIME_T_FMT% 3 3 4 #ifdef DMALLOC5 # include <dmalloc.h>6 #endif7 8 4 /* for silencing unused parameter warnings */ 9 5 #define OPS_USED(x) (x)=(x) openpgpsdk/trunk/src/accumulate.c
r336 r371 12 12 #include <stdlib.h> 13 13 #include <string.h> 14 15 #include <openpgpsdk/final.h> 14 16 15 17 typedef struct openpgpsdk/trunk/src/armour.c
r328 r371 9 9 #include <string.h> 10 10 #include <assert.h> 11 12 #include <openpgpsdk/final.h> 11 13 12 14 #define CRC24_INIT 0xb704ceL openpgpsdk/trunk/src/compress.c
r336 r371 6 6 #include <assert.h> 7 7 #include <string.h> 8 9 #include <openpgpsdk/final.h> 8 10 9 11 #define DECOMPRESS_BUFFER 1024 openpgpsdk/trunk/src/create.c
r333 r371 7 7 #include <assert.h> 8 8 #include <unistd.h> 9 10 #include <openpgpsdk/final.h> 9 11 10 12 struct ops_writer_info openpgpsdk/trunk/src/errors.c
r336 r371 4 4 5 5 #include <openpgpsdk/errors.h> 6 #include <openpgpsdk/util.h> 6 7 7 8 #include <assert.h> … … 10 11 #include <stdlib.h> 11 12 12 #include "openpgpsdk/util.h"13 #include <openpgpsdk/final.h> 13 14 14 15 #define ERR(code) { code, #code } openpgpsdk/trunk/src/fingerprint.c
r317 r371 12 12 # include <alloca.h> 13 13 #endif 14 15 #include <openpgpsdk/final.h> 14 16 15 17 /** openpgpsdk/trunk/src/hash.c
r346 r371 5 5 #include <assert.h> 6 6 #include <string.h> 7 8 #include <openpgpsdk/final.h> 7 9 8 10 void ops_hash_add_int(ops_hash_t *hash,unsigned n,unsigned length) openpgpsdk/trunk/src/keyring.c
r353 r371 15 15 #include <termios.h> 16 16 17 #include <openpgpsdk/final.h> 18 17 19 ops_key_data_t * 18 20 ops_keyring_find_key_by_id(const ops_keyring_t *keyring, openpgpsdk/trunk/src/lists.c
r241 r371 8 8 9 9 #include <stdlib.h> 10 11 #include <openpgpsdk/final.h> 10 12 11 13 /** openpgpsdk/trunk/src/memory.c
r319 r371 6 6 #include <string.h> 7 7 #include <assert.h> 8 9 #include <openpgpsdk/final.h> 8 10 9 11 struct ops_memory openpgpsdk/trunk/src/openssl_crypto.c
r314 r371 11 11 #include <assert.h> 12 12 #include <stdlib.h> 13 14 #include <openpgpsdk/final.h> 13 15 14 16 static void md5_init(ops_hash_t *hash) openpgpsdk/trunk/src/packet-parse.c
r365 r371 16 16 #include <unistd.h> 17 17 #include <errno.h> 18 19 #include <openpgpsdk/final.h> 18 20 19 21 /** openpgpsdk/trunk/src/packet-show.c
r368 r371 12 12 #include <openpgpsdk/packet-show.h> 13 13 #include <openpgpsdk/util.h> 14 15 #include <openpgpsdk/final.h> 14 16 15 17 /* openpgpsdk/trunk/src/signature.c
r343 r371 7 7 #include <assert.h> 8 8 #include <string.h> 9 10 #include <openpgpsdk/final.h> 9 11 10 12 /** \ingroup Create openpgpsdk/trunk/src/symmetric.c
r365 r371 5 5 #include <openssl/idea.h> 6 6 #include "parse_local.h" 7 8 #include <openpgpsdk/final.h> 7 9 8 10 typedef struct openpgpsdk/trunk/src/util.c
r346 r371 12 12 #include <string.h> 13 13 14 #include <openpgpsdk/final.h> 15 14 16 /** 15 17 * Searches the given map for the given type. openpgpsdk/trunk/src/validate.c
r336 r371 7 7 #include <assert.h> 8 8 #include <string.h> 9 10 #include <openpgpsdk/final.h> 9 11 10 12 typedef struct
