aboutsummaryrefslogtreecommitdiffstats
path: root/kbx/ChangeLog (unfollow)
Commit message (Collapse)AuthorFilesLines
2002-08-10* keybox-search.c (blob_cmp_fpr_part): New.Werner Koch1-0/+5
(has_short_kid, has_long_kid): Implemented.
2002-07-22* keybox-defs.h: New BLOBTYPTE_EMPTY.Werner Koch1-0/+10
* keybox-dump.c (_keybox_dump_blob): Handle new type. * keybox-file.c (_keybox_read_blob): Skip over empty blobs. Store the file offset. * keybox-blob.c (_keybox_new_blob): Add new arg OFF. (_keybox_get_blob_fileoffset): New. * keybox-update.c (keybox_delete): Implemented.
2002-06-19* keybox-init.c (keybox_set_ephemeral): New.Werner Koch1-0/+11
* keybox-blob.c (create_blob_header): Store epheermal flag. (_keybox_create_x509_blob): Pass epheermal flag on. * keybox-update.c (keybox_insert_cert): Ditto. * keybox-search.c (blob_get_blob_flags): New. (keybox_search): Ignore ephemeral blobs when not in ephemeral mode. * keybox-dump.c (_keybox_dump_blob): Print blob flags as strings.
2002-02-25* keybox-search.c (blob_cmp_mail): Use case-insensitive compareWerner Koch1-0/+12
because mail addresses are in general case insensitive (well RFC2822 allows for case sensitive mailbox parts, but this is in general considired a Bad Thing). Add additional substr parameter to allow for substring matches within the mail address. Change all callers to pass this along. (blob_cmp_name): Likewise but do the case-insensitive search only in sub string mode. (keybox_search): Implement MAILSUB and SUBSTR mode. * stringhelp.c (ascii_memcasemem): New.
2002-01-21* keybox-search.c (keybox_search): Allow KEYDB_SEARCH_MODE_FPR20.Werner Koch1-0/+4
2002-01-15* keybox-search.c (blob_cmp_fpr): New.Werner Koch1-0/+5
(has_fingerprint): Implemented;
2001-12-20* keybox-blob.c (_keybox_create_x509_blob): Skip the leadingWerner Koch1-0/+2
parenthesis of the serial number's S-exp. (_keybox_create_x509_blob): And fixed length calculation. (create_blob_header): Don't add an offset when writing the serial.
2001-12-20* keybox-blob.c (_keybox_create_x509_blob): Skip the leadingWerner Koch1-0/+5
parenthesis of the serial number's S-exp.
2001-12-18* Makefile.am (AM_CPPFLAGS): Add flags for libksbaNEWPG-0-0-0Werner Koch1-0/+2
* Makefile.am (AM_CPPFLAGS): Include flags for gcrypt and ksba * Makefile.am: Use LIBGCRYPT macros
2001-12-18Changes to be used with the new libksba interface.Werner Koch1-0/+11
libgcrypt-1.1.5 is required (cvs or tarball)
2001-12-15* keybox-search.c (blob_cmp_name): There is no terminating 0 storedWerner Koch1-0/+5
for the uid; fixed length compare.
2001-12-14* keybox-blob.c (x509_email_kludge): New.Werner Koch1-0/+7
(_keybox_create_x509_blob): Insert an extra email address if the subject's DN has an email part. * keybox-defs.h: Added the xtoi_2 and digitp macros.
2001-12-13* keybox-search.c (blob_cmp_name): Kludge to allow searching forWerner Koch1-0/+23
more than one name. (has_subject_or_alt): New. (blob_cmp_mail): New. (has_mail): New. (keybox_search): Implemented exact search and exact mail search. * kbx/keybox-blob.c (_keybox_create_x509_blob): Insert alternate names.