# Generated by Makefile. Do not edit.

commit 17889471803bf0efb8ed19253f88da01b39ff9fd
Author: David Marín <david.marin@toptal.com>
Date:   Tue May 19 18:04:13 2026 +0200

    Release gnoMint 1.4.0 'Lazarus'.
    
    Ten years after 1.3.0 'Sha Sha dance', accumulating Debian-community
    patches, modernizations for current toolchains, and a new test suite.
    See NEWS for the full set of changes since 1.3.0 and historical entries
    back to 0.5.4 that were missing from NEWS.
    
    Release-prep changes alongside the version bump:
    
    * src/Makefile.am EXTRA_DIST gets time64_check.h (the Y2K38 helper
      header), and root Makefile.am EXTRA_DIST gets the certs/davefx.pem
      and certs/example-ca.gnomint files used as test fixtures, so the
      tarball is complete.
    
    * gconf/Makefile.am EXTRA_DIST gets the legacy gnomint.schemas.in
      that po/POTFILES.in still references for translation extraction.
    
    * Root Makefile.am DISTCLEANFILES gets po/.intltool-merge-cache.lock
      so `make distcheck` passes its distcleancheck stage.
    
    * tests/check_workflows.c Phase 2B scenarios now probe for an
      installed main_window.ui at PACKAGE_DATA_DIR; if absent (e.g.
      during `make distcheck` where `make check` runs before install),
      they skip with an explanatory message instead of failing on NULL
      widgets. Local `make check` after `sudo make install` continues to
      run all five Phase 2B scenarios.
    
    Verified with `make distcheck` end-to-end.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

 Makefile.am                |   7 +-
 NEWS                       | 275 +++++++++++++++++++++++++++++++++++++++++++++
 configure.ac               |   2 +-
 gconf/Makefile.am          |   2 +-
 gui/gnomint.appdata.xml.in |   1 +
 src/Makefile.am            |   3 +-
 tests/check_workflows.c    |  34 ++++--
 7 files changed, 312 insertions(+), 12 deletions(-)

commit abafa0026f1b9d6722d4e08cf638451d787d53b3
Author: David Marín <david.marin@toptal.com>
Date:   Tue May 19 15:02:05 2026 +0200

    Add Phase 2B workflow scenarios (issue #43).
    
    Extends tests/check_workflows under headless Wayland with five
    runtime scenarios that exercise full GUI callbacks, complementing
    the static checks from #42:
    
      3. new-self-signed-ca   on_add_self_signed_ca_activate -> new_ca_window
      4. view-properties-full ca_treeview_row_activated -> properties dialog
                              (full path including gtk_dialog_run)
      5. extract-private-key  ca_on_extractprivatekey1_activate -> file chooser
                              (regression coverage for PR #38's crash fix)
      6. sign-csr             ca_on_sign1_activate -> new_cert_window
      7. revoke-cert          ca_on_revoke_activate -> confirm dialog, then
                              verify ca_file_get_revoked_certs(ca_id) lists
                              the revoked cert
    
    Infrastructure:
    
    * Dialog auto-dismiss: a g_timeout fires every 50 ms inside whatever
      nested main loop gtk_dialog_run spawns. Each tick scans
      gtk_window_list_toplevels() for visible+mapped widgets absent from
      a pre-scenario snapshot, sends gtk_dialog_response with a
      per-scenario response code to GtkDialogs, and gtk_widget_destroys
      non-dialog GtkWindows (used for new_ca_window and new_cert_window
      which are plain GtkWindows). Defensive GTK_IS_WIDGET check guards
      against widgets disposed indirectly by destroying an earlier entry
      in the same iteration.
    
    * test_init_main_window replicates the slice of src/main.c that loads
      the three builders (main_window, csr_popup_menu, certificate_popup_menu),
      connects signals, and registers ca_refresh_model_callback as the
      dialog-refresh function. Cached after first call.
    
    * Fixture handling copies certs/example-ca.gnomint to a tmp file
      before each mutating scenario and unlinks afterwards. The fixture
      contains 5 certs (3 CA + 2 leaf) and 1 CSR — enough to drive every
      Phase 2B path.
    
    * select_row_by_id walks ca_model with a top-level subtree filter
      ("0" for Certificates, "1" for Pending CSRs). Load-bearing: the
      fixture has both cert id=1 and CSR id=1, so sign-csr depended on
      selecting from the right subtree.
    
    Regression-detection verified end-to-end: making ca_file_revoke_crt
    a no-op causes the revoke-cert scenario to fail with "after
    auto-accepting revoke, cert is not in revoked list".
    
    Refs #43.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

 tests/Makefile.am       |   1 +
 tests/check_workflows.c | 634 ++++++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 582 insertions(+), 53 deletions(-)

commit 46f76dc40be3d0d38962af028d7f85be5a35e580
Author: David Marín <david.marin@toptal.com>
Date:   Tue May 19 13:53:32 2026 +0200

    Add headless Wayland workflow tests (Phase 2A of issue #43).
    
    New tests/check_workflows binary, run under weston with the headless
    backend via tests/run-headless.sh. Wayland is gnomint's primary user
    environment, so the runtime workflow tests exercise GTK's Wayland
    backend rather than X11.
    
    Two scenarios:
    
      1. All 21 .ui files load via real GtkBuilder under GDK_BACKEND=wayland
         with no Gtk/Gdk/GLib CRITICAL or WARNING messages.
    
      2. certificate_properties_dialog.ui constructs and the production
         __certificate_properties_populate function fills key widgets
         (certSubjectCNLabel, certSNLabel, sha1Label) on a real cert PEM
         from certs/davefx.pem.
    
    The test uses g_log_set_writer_func so it intercepts every g_log
    emission across all domains (g_log_set_handler is bypassed by GLib
    ≥ 2.50's structured logging). A captured CRITICAL or WARNING fails
    the run. Verified against an injected widget-ID drift regression:
    renaming certSubjectCNLabel in the .ui makes the populate scenario
    fail with both an assertion miss and a Gtk-CRITICAL.
    
    While bringing this up the test surfaced a latent issue in
    csr_properties_dialog.ui: notebook4 declared a Details tab whose
    content was a Glade <placeholder/> and which the C code never
    populated. GtkBuilder doesn't materialise <placeholder/> as a real
    page, so attaching the Details tab label silently overrode the
    General one ("Overriding tab label for notebook"). Since notebook4
    has show_tabs=False and csr_properties.c only addresses widgets on
    the General page, the Details tab and its placeholder are removed.
    
    CI workflow installs weston alongside the existing dependencies.
    
    Phase 2B (dialog auto-dismiss + the five original workflow scenarios
    in #43) is intentionally not implemented here; the dialog interception
    mechanism deserves its own design pass.
    
    Refs #43.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

 .github/workflows/copilot-setup-steps.yml |   3 +-
 .gitignore                                |   1 +
 gui/csr_properties_dialog.ui              |  16 --
 tests/Makefile.am                         |  75 ++++++-
 tests/check_workflows.c                   | 319 ++++++++++++++++++++++++++++++
 tests/run-headless.sh                     |  80 ++++++++
 6 files changed, 473 insertions(+), 21 deletions(-)

commit 10203b41710de41705c51bf6689e953f39132f91
Author: David Marín <david.marin@toptal.com>
Date:   Tue May 19 12:49:13 2026 +0200

    Add static UI consistency checker as make-check stage 1.
    
    New tests/ subdir with two test binaries wired into `make check`:
    
      check_y2k38            standalone Y2K38 verification (moved from src/)
      check_ui_consistency   static .ui file consistency checker
    
    check_ui_consistency parses every .ui file under gui/ via GMarkup
    and reports three classes of failure that have bitten this codebase:
    
      1. GTK 2-only properties (e.g. has_separator on GtkDialog) — the
         cause of the silent dialog-load failure observed against stale
         /usr/local/share/gnomint/ installs.
      2. GtkGrid / GtkTable cell collisions where two children share a
         (left_attach, top_attach) pair (the latent bug fixed in #39).
      3. Signal handlers in <signal handler="X"/> that don't resolve
         via dlsym(RTLD_DEFAULT, X). The test binary links the same GUI
         object files as gnomint so symbols are present; src/main.c
         wraps its main() in #ifndef GNOMINT_UI_TEST so it can be linked
         into the test without symbol clash.
    
    Each check has been verified against a hand-injected regression
    (reintroducing has_separator, duplicating a top_attach, renaming
    a handler to a non-existent symbol).
    
    Two pre-existing po/POTFILES.in omissions (gui/gnomint.appdata.xml.in
    and src/country_table.c) surfaced as side-effects of `make check`
    running intltool-update; both files have translatable strings and
    were added to POTFILES.in.
    
    CI workflow runs `make check` after `make`.
    
    Refs #42. Stage 2 (headless workflow tests under Xvfb) tracked in #43.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

 .github/workflows/copilot-setup-steps.yml |   6 +-
 .gitignore                                |   7 +
 Makefile.am                               |   4 +-
 configure.ac                              |   1 +
 po/POTFILES.in                            |   2 +
 src/main.c                                |   2 +
 tests/Makefile.am                         |  88 +++++++
 tests/check_ui_consistency.c              | 395 ++++++++++++++++++++++++++++++
 src/test_y2k38.c => tests/check_y2k38.c   |   0
 9 files changed, 502 insertions(+), 3 deletions(-)

commit 2b26870c688b78eddeef954d63cea0366dd69cac
Author: David Marín <david.marin@toptal.com>
Date:   Tue May 19 11:21:10 2026 +0200

    Fix Validity/OU row overlap in certificate properties dialog.
    
    The Validity, Activated/Expires, and Fingerprints rows were sharing
    row 9 with the Issuer OU row in the GtkGrid (table6). Shift those
    16 widgets down by one row so each layout row holds at most one
    widget per column. Closes #39.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

 gui/certificate_properties_dialog.ui | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit 9fae8b94011c2ff1482e184f359a19b40e414294
Author: David Marín <david.marin@toptal.com>
Date:   Tue May 19 10:49:49 2026 +0200

    Add CLAUDE.md with build, architecture, and conventions guidance.
    
    Captures the autotools build flow, the dual gnomint/gnomint-cli
    build setup (shared sources with -DGNOMINTCLI gating GUI code),
    the layered architecture from uint160/tls/ca_file up to the GTK
    and readline front-ends, and project-specific conventions (Y2K38
    support, XDG data dir, i18n via intltool).
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

 CLAUDE.md | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)

commit 2de0987948529401f03291898c04cd69cd0cf2ec
Author: Haolin Xue <tzbkk@outlook.com>
Date:   Sun May 3 21:49:10 2026 +0800

    Update translation templates and merge new strings into all translations.
    
    Regenerate gnoMint.pot to include UI file strings previously missing
    (456 -> 617 msgids). Add SAN-related files to POTFILESIN. Merge
    updated pot into all 12 existing translation files.
    
    (cherry picked from commit 9c85e3b7fcb1495309b5e31bae1c7d7d883d2b2a)

 po/POTFILES.in |    3 +
 po/ca.po       | 5480 +++++++++++++++++++++++++++-------------------------
 po/cs.po       | 3941 ++++++++++++++++++-------------------
 po/de.po       | 5110 ++++++++++++++++++++++++------------------------
 po/es.po       | 2721 ++++++++++++++------------
 po/fi.po       | 3968 +++++++++++++++++++-------------------
 po/fr.po       | 5514 ++++++++++++++++++++++++++--------------------------
 po/gnoMint.pot | 2168 ++++++++++++++-------
 po/it.po       | 5144 +++++++++++++++++++++++++------------------------
 po/oc.po       | 3996 +++++++++++++++++++-------------------
 po/pt_BR.po    | 3959 +++++++++++++++++++-------------------
 po/ru.po       | 5881 +++++++++++++++++++++++++++++---------------------------
 po/sk.po       | 4111 ++++++++++++++++++++-------------------
 po/sv.po       | 4888 +++++++++++++++++++++++-----------------------
 14 files changed, 29659 insertions(+), 27225 deletions(-)

commit 16de73cddbbd7dfe977415168b3834475bc2fd62
Author: Yavor Doganov <yavor@gnu.org>
Date:   Tue Oct 15 00:00:00 2019 +0200

    Port to GTK 3.
    
    Port all UI files from GTK 2 to GTK 3, converting deprecated widgets
    (GtkVBox, GtkHBox, GtkTable, GtkHButtonBox, GtkAlignment) to their
    GTK 3 equivalents (GtkBox, GtkGrid, GtkButtonBox) and updating
    packing properties accordingly.
    
    Also convert the two new SAN editor UI files (san_editor_dialog.ui,
    san_manager_widget.ui) that were added after the original GTK 3 port.
    
    The C code changes from the original Debian patch were already applied
    in previous commits that added SAN support and migrated to GTK 3 APIs.
    
    Based on Debian gtk3-port.patch (2019-10-15).
    
    Co-authored-by: Haolin Xue <tzbkk@outlook.com>
    (cherry picked from commit 1dffbd6f172694b319c756c3449e138d75d0768b)

 gui/certificate_popup_menu.ui          |  21 +-
 gui/certificate_properties_dialog.ui   | 575 +++++++++++++++++--------------
 gui/change_password_dialog.ui          | 178 +++++-----
 gui/creation_process_window.ui         |  34 +-
 gui/csr_popup_menu.ui                  |  24 +-
 gui/csr_properties_dialog.ui           | 113 ++++---
 gui/dh_parameters_dialog.ui            | 131 ++++---
 gui/export_certificate_dialog.ui       | 184 ++++++----
 gui/get_db_password_dialog.ui          | 126 ++++---
 gui/get_password_dialog.ui             | 139 ++++----
 gui/get_pkey_dialog.ui                 | 127 ++++---
 gui/import_file_or_directory_dialog.ui | 145 +++++---
 gui/import_password_dialog.ui          | 145 ++++----
 gui/main_window.ui                     | 170 +++++++---
 gui/new_ca_window.ui                   | 254 +++++++-------
 gui/new_cert_window.ui                 | 601 +++++++++++++++++----------------
 gui/new_crl_dialog.ui                  | 117 ++++---
 gui/new_req_window.ui                  | 250 ++++++++------
 gui/preferences_dialog.ui              |  78 +++--
 gui/san_editor_dialog.ui               |  45 +--
 gui/san_manager_widget.ui              |  23 +-
 21 files changed, 1974 insertions(+), 1506 deletions(-)

commit 7a31874d3d863c669086ddd1add20832b08b3bf3
Author: Haolin Xue <tzbkk@outlook.com>
Date:   Sun May 3 20:03:53 2026 +0800

    Don't hardcode CFLAGS and respect the environment.
    
    Instead of unconditionally appending to CFLAGS, use the environment
    variable if set, falling back to -Wall. Also fix debug mode to
    properly prepend rather than double-append CFLAGS.
    
    Co-authored-by: Daniel Baumann <daniel@debian.org>
    (cherry picked from commit 6a52fdf73efeb8ff0261ae7c366a056ef9cbf2bd)

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d74b2a40c4d4e468162bab25f58963ce05c0193c
Author: Yavor Doganov <yavor@gnu.org>
Date:   Sat Oct 12 00:00:00 2019 +0200

    Fix some spelling errors.
    
    (cherry picked from commit 661a28f61dd52f11e8bf3b076c9c8b6fb0b9570c)

 src/ca.c            | 2 +-
 src/country_table.c | 2 +-
 src/import.c        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 0da00d4fd2d1428cb8e02e90a7cc23ff2e5e6ab7
Author: Yavor Doganov <yavor@gnu.org>
Date:   Sun Sep 2 00:00:00 2018 +0200

    Fix crash when exporting the private key.
    
    In ca_on_extractprivatekey1_activate, when calling gtk_tree_model_get,
    GLib attempts to assign a guint64 value to a variable declared gint
    (CA_MODEL_COLUMN_ID is defined as type G_TYPE_UINT64 in the tree store).
    This corrupts the stack and also invalidates the iter.
    
    (cherry picked from commit 4531169650fcf17faa8442d50e72e87a28d007a4)

 src/ca.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 0e2fdc122f0aea5c53e70b49bd2e631d21f36819
Author: Yavor Doganov <yavor@gnu.org>
Date:   Sat Sep 1 00:00:00 2018 +0200

    Add code to Exec key, remove Encoding key, add Keywords key.
    
    (cherry picked from commit 413d1197e7b190364c9b12cac7a9b0d6479b66e1)

 gui/gnomint.desktop.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e3aa5054210d7069cb1384183a6e0540a1b8bdb7
Author: Yavor Doganov <yavor@gnu.org>
Date:   Sat Sep 1 00:00:00 2018 +0200

    Fix autoreconf failure.
    
    (cherry picked from commit 99c69e753dc4b7d6603576972112997ea70763db)

 configure.ac | 1 -
 1 file changed, 1 deletion(-)

commit 29e471da892c2a4b1496b8b7e124003523f2cc20
Merge: 68018a4 33d2e0e
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Thu Mar 19 14:38:15 2026 +0100

    Merge pull request #35 from davefx/copilot/fix-csr-field-inheritance
    
    Fix CSR field inheritance by using integer policy check instead of string pointer check

commit 68018a428e82cdc67c76b795819d3cf04a480ea3
Merge: 8f7ad9b 9dd947b
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Thu Mar 19 14:37:08 2026 +0100

    Merge pull request #36 from Gnafu/patch-1
    
    Italian Translations

commit 9dd947b98e7760aa9b7e48e4a7e2e529bd2a8de2
Author: Lorenzo Pini <lore.pini@gmx.it>
Date:   Thu Mar 19 12:58:03 2026 +0100

    Italian Translations
    
    Missing strings and Typos

 po/it.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 8f7ad9b1aed456fba5020a58fedcc567ffc54b21
Merge: 23d9c87 9feac97
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Thu Jan 22 11:49:08 2026 +0100

    Merge pull request #18 from davefx/copilot/add-subject-alternative-names
    
    Add Subject Alternative Name (SAN) support with user-friendly UI and CLI for X.509 certificates

commit 9feac97ef07cf18c050cfef2f59a7fdd3e89bbf4
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:44:23 2026 +0000

    Fix SAN extraction: use correct gnutls_x509_crt_get_subject_alt_name signature
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/tls.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit ce24925db8cf6e9129e6aa8a8c597aecc567b254
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:37:09 2026 +0000

    Fix typo: 'Emmited' to 'Emitted'
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/certificate_properties_dialog.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 773a9e83c1759620f451b0af4ae7654a3ce5f0ce
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:35:56 2026 +0000

    Add SAN display to certificate properties general tab
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/certificate_properties_dialog.ui | 70 +++++++++++++++++++++++++-----------
 1 file changed, 49 insertions(+), 21 deletions(-)

commit 1a60ba252114c1aae168d467518a03dddae932c3
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:25:03 2026 +0000

    Address code review feedback - remove unnecessary widget check
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/certificate_properties.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 6111250e5959288ab2cc88ebce183817e805e3fb
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:23:41 2026 +0000

    Fix certificate properties dialog to show all SANs properly
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/certificate_properties.c | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

commit fb65de4bdddcd6708e96c9b1102a760b9b2d368b
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:09:24 2026 +0000

    Fix memory leak in ca_file_insert_cert_in_db
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c | 2 ++
 1 file changed, 2 insertions(+)

commit 7a069b147927d8b3cb8ddf06b13c8458bdbe2ec2
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 10:07:47 2026 +0000

    Revert database schema changes - SANs extracted from PEM directly
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c | 78 ++++++++++++-----------------------------------------------
 1 file changed, 16 insertions(+), 62 deletions(-)

commit 524fa8e61d4ba882b060126ad8937f3b078fcdd8
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:50:23 2026 +0000

    Add subject_alt_name column to database schema and migrations
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c | 78 +++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 62 insertions(+), 16 deletions(-)

commit 3c41f8584a4de5b2e1201ed79daa084810b99c48
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:39:10 2026 +0000

    Fix SAN extraction from certificates - properly handle buffer allocation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/tls.c | 34 +++++++++++++++++++++-------------
 1 file changed, 21 insertions(+), 13 deletions(-)

commit b1cf13939a415efc69480ddd4f16dee58f57c612
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:22:29 2026 +0000

    Add subject_alt_name field to TlsCert structure for proper architecture
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca-cli-callbacks.c | 71 ++------------------------------------------------
 src/tls.c              | 69 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/tls.h              |  2 ++
 3 files changed, 73 insertions(+), 69 deletions(-)

commit 8eefb0d1ea4835032c9d1bc9051b9685019181cc
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:14:34 2026 +0000

    Add SAN display to CSR signing UI and gnomint-cli showcert
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/new_cert_window.ui | 32 ++++++++++++++++++++++-
 src/ca-cli-callbacks.c | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/new_cert.c         |  7 +++++
 3 files changed, 107 insertions(+), 1 deletion(-)

commit 33d2e0e08afcba78da4f4d6ca5fd90b74406c7e5
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:13:33 2026 +0000

    Fix CSR field inheritance using ca_file_policy_get_int
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/new_req_window.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 13903f23688b9b366e88a0728f515411e3ad9925
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:08:46 2026 +0000

    Initial plan

commit 69ca8865ba71203e6fcc47e87498553e04169e7f
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 09:08:00 2026 +0000

    Move buttons below SAN section, improve cert IP display, add CLI SAN support
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/new_ca_window.ui         |  2 +-
 gui/new_req_window.ui        |  2 +-
 src/ca-cli-callbacks.c       | 18 ++++++++++++++++++
 src/certificate_properties.c | 43 ++++++++++++++++++++++++++++++++++++++-----
 4 files changed, 58 insertions(+), 7 deletions(-)

commit 23d9c87ebbfe70bdc13e0d64467d4df431c27ae1
Merge: 4929b9c ef8e3f6
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Thu Jan 22 10:02:43 2026 +0100

    Merge pull request #34 from davefx/copilot/fix-new-csrs-inherit-fields
    
    Fix CSR field inheritance to respect user selection

commit ef8e3f6e1c763e5bd5e29d04a5f207f5fafdb6db
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 08:57:25 2026 +0000

    Fix CSR inheritance bug - check inherit radiobutton state before inheriting fields
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/new_req_window.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 588a6ecccb956ecec2818fda4e8ecdec42951756
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 08:55:36 2026 +0000

    Fix memory leaks in SAN manager and window initialization
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/new_ca_window.c  | 13 +++++++------
 src/new_req_window.c | 13 +++++++------
 src/san_manager.c    | 10 +++++++---
 3 files changed, 21 insertions(+), 15 deletions(-)

commit 815818b9f654117e4407d2d3c93b298a141aae16
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 08:53:20 2026 +0000

    Initial plan

commit d3d0febdc61153f95cee8aaedefad5b4ba0086d0
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 08:52:57 2026 +0000

    Add user-friendly SAN manager UI for CSR creation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/new_req_window.ui | 72 ++++++++++++++++++++++++++++-----------------------
 src/new_req_window.c  | 33 +++++++++++++++++++----
 2 files changed, 68 insertions(+), 37 deletions(-)

commit 65e8b70933cf5ab47499fffb58ce378012db667d
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 08:50:22 2026 +0000

    Add user-friendly SAN manager UI for CA creation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/Makefile.am           |   2 +
 gui/new_ca_window.ui      |  56 ++++---
 gui/san_editor_dialog.ui  | 174 ++++++++++++++++++++++
 gui/san_manager_widget.ui | 119 +++++++++++++++
 src/Makefile.am           |   4 +-
 src/new_ca_window.c       |  32 +++-
 src/san_manager.c         | 366 ++++++++++++++++++++++++++++++++++++++++++++++
 src/san_manager.h         |  44 ++++++
 8 files changed, 767 insertions(+), 30 deletions(-)

commit 9920eee45b60e3f95ffc7992648b43c5f53f54b5
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 06:15:38 2026 +0000

    Fix SAN parsing from CSR - use actual_size variable
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/tls.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 800ebafc63e5e2054080f11766533ad8f1f95668
Merge: ff87a3b 4929b9c
Author: David Marín <david.marin@toptal.com>
Date:   Thu Jan 22 07:08:32 2026 +0100

    Merge branch 'master' into copilot/add-subject-alternative-names

commit ff87a3b487ec5b8f5dcdb629461f16de484f7ce9
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Thu Jan 22 05:46:56 2026 +0000

    Display SANs in CSR properties dialog
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/csr_properties_dialog.ui | 31 ++++++++++++++++++-
 src/csr_properties.c         |  7 +++++
 src/tls.c                    | 71 ++++++++++++++++++++++++++++++++++++++++++++
 src/tls.h                    |  2 ++
 4 files changed, 110 insertions(+), 1 deletion(-)

commit 4929b9c4c04e913e0cbb9a66764186277a7115ff
Merge: 99455a3 446d4c8
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Thu Jan 22 06:42:01 2026 +0100

    Merge pull request #28 from davefx/copilot/check-y2k38-certificate-issue
    
    Fix Y2K38 (Year 2038) problem in certificate handling

commit 446d4c80defabc32a4e6b5609d26d91caa9a1f06
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 19:07:45 2026 +0000

    Complete Y2K38 fix with portable timegm implementation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/test_y2k38.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

commit cd3c43b793986b81f92aa81f6877aff18754d284
Merge: 71fa582 99455a3
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 20:04:01 2026 +0100

    Merge branch 'master' into copilot/check-y2k38-certificate-issue

commit 99455a375beca9df229984f1794e293c85acb42f
Merge: b6daa8a 6b55d98
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 20:02:58 2026 +0100

    Merge pull request #32 from davefx/copilot/fix-segmentation-fault-ca-certificate
    
    Fix segmentation fault and context menu issues on CA certificate right-click

commit b6daa8a2c465190fb69132921605d6f474126437
Merge: 087000a 1bcad5c
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 19:37:30 2026 +0100

    Merge pull request #22 from davefx/copilot/disambiguate-cas-in-sign-operation
    
    Conditionally show expiration date for duplicate CA names in selection dialogs

commit 6b55d989bd56a5a2f87f57ec9c0c06f377e56c7b
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 18:34:43 2026 +0000

    Select row under cursor before showing menu and fix GTK warning
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

commit 1bcad5c31ebe379cda383fee4deff5036b8394bd
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 18:33:08 2026 +0000

    Improve string parsing safety and buffer sizing
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit 206ccdbe919623977d2ebb74c34f612c90730776
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 18:31:36 2026 +0000

    Show expiration date only for duplicate CA names, use full date format
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c        | 24 +++++++++++++++++-------
 src/ca_file.h        |  5 +++--
 src/crl.c            |  9 ++++++---
 src/new_cert.c       |  9 ++++++---
 src/new_req_window.c |  9 ++++++---
 5 files changed, 38 insertions(+), 18 deletions(-)

commit 8138c7e8fd42841d937fce19af0a3b8f432bdad0
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 18:24:38 2026 +0000

    Handle popup directly in button press handler with event to fix menu grab
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 225 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 103 insertions(+), 122 deletions(-)

commit 53be51c3ada35e281f299da0c1abceb9f94bd0c5
Merge: 72972da 087000a
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 19:20:56 2026 +0100

    Merge branch 'master' into copilot/disambiguate-cas-in-sign-operation

commit 3473b8fe03498775d1f9a2b36e8b207e0d1bf817
Merge: 918bec2 087000a
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 19:16:40 2026 +0100

    Merge branch 'master' into copilot/fix-segmentation-fault-ca-certificate

commit 087000ae3d5d405eb4f0632c693d1ce5fad41de9
Merge: dc988a2 bd0d1c2
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 19:16:15 2026 +0100

    Merge pull request #26 from davefx/copilot/fix-progress-bar-warnings
    
    Show progress bar window during certificate generation

commit 918bec2b9e48dc14e1619a6c4f79a6a4372a7d47
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:57:35 2026 +0000

    Attach menu to widget to keep it open after button release
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 4 ++++
 1 file changed, 4 insertions(+)

commit bd0d1c25a89558207993c67949900aa993b34618
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:47:47 2026 +0000

    Remove invalid activity_mode property from progress bar UI definition
    
    The activity_mode property is not valid for GtkProgressBar in GTK+. Progress bars work in activity/pulse mode simply by calling gtk_progress_bar_pulse() instead of gtk_progress_bar_set_fraction(). This invalid property was preventing the entire UI file from loading, which is why the progress bar widget could never be found.
    
    Also removed pulse_step property as it's set dynamically in code.
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/creation_process_window.ui | 2 --
 1 file changed, 2 deletions(-)

commit bc1486f3f0aed65ddd91067fa86e46da974c883d
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:42:17 2026 +0000

    Position context menu at pointer location using gtk_menu_popup_at_rect
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 42 ++++++++++++++++++++++++++++++++++++++----
 1 file changed, 38 insertions(+), 4 deletions(-)

commit 6d5da2a4906ec63caddcaea63d0f9076a8b18087
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:32:56 2026 +0000

    Add comprehensive error handling and diagnostics for UI loading
    
    - Check for errors when loading UI file with gtk_builder_add_from_file
    - Validate window widget exists before showing
    - Provide specific diagnostic messages for progress bar issues
    - Distinguish between widget not found vs. wrong widget type
    - This will help identify why the progress bar widget cannot be retrieved
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 46 ++++++++++++++++++++++++++++++++++++-------
 1 file changed, 39 insertions(+), 7 deletions(-)

commit 7b846f74bcd2e25be59ec36d0a7c6ccb652f5c5c
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:28:11 2026 +0000

    Use gtk_menu_popup_at_widget instead of gtk_menu_popup_at_pointer to fix menu positioning
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 8f2ebfa0d02c0be3fbc3d85683c014ce963bc6eb
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:23:36 2026 +0000

    Add explicit show and initial pulse for progress bar widget
    
    - Explicitly call gtk_widget_show() on progress bar widget
    - Add initial gtk_progress_bar_pulse() to start animation
    - This ensures the progress bar is visible and animating in the dialog
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit dfc24c770ae6626c720c83c941a5288592ad0c2a
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:21:24 2026 +0000

    Fix dangling pointer to GdkEvent in timeout callback causing segfault
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 5b6d2b2e769c873dc7b0f6eb643be3c3adb1f0c8
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:11:01 2026 +0000

    Ensure timer always starts and handle NULL progress bar gracefully
    
    - Timer must always start to monitor certificate creation thread status
    - Added fallback to start timer with NULL if progress bar widget is invalid
    - Updated pulse callbacks to check for valid progress bar before pulsing
    - This prevents blocking while eliminating GTK-CRITICAL warnings
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 24 ++++++++++++++++++++----
 1 file changed, 20 insertions(+), 4 deletions(-)

commit 40b1622fb244e8422040c57d8016ed61a5991679
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:08:36 2026 +0000

    Add NULL checks before freeing iter in early returns
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit 0d4a5d964ee1273ef1356eabb48f8edf85005edf
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:06:35 2026 +0000

    Add NULL checks for popup menu objects to prevent segfault when rendering context menu
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 29 ++++++++++++++++++++++++++---
 1 file changed, 26 insertions(+), 3 deletions(-)

commit aab0538c0feeca22b728af1cba65a75dc025a83b
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 14:00:43 2026 +0000

    Add validation for progress bar widget and remove premature pulse
    
    - Use separate variable for progressbar widget
    - Add GTK_IS_PROGRESS_BAR check before starting timer
    - Remove premature gtk_progress_bar_pulse call (timer handles pulsing)
    - Only start timer if progress bar widget is valid
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

commit 5f7d222364b42f648f0726d5dded4a7a0a70f8b6
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 13:59:14 2026 +0000

    Add NULL checks for cert_parent_iter and csr_parent_iter to prevent segfault on right-click
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 28 ++++++++++++++++------------
 1 file changed, 16 insertions(+), 12 deletions(-)

commit 201d2e65700f865a27c69b9ba7eb8b5bbe2199dc
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:59:32 2026 +0000

    Process GTK events immediately after showing window
    
    Add gtk_events_pending() loop to process all pending GTK events immediately after showing the window. This ensures the window is fully rendered and displayed before launching the certificate creation thread and starting the timer.
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 5f9b996a535462796f907a5b138ab2b0f790d77b
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:57:22 2026 +0000

    Initialize all iter pointers to NULL to prevent invalid free errors
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit dc988a25765c0ed34fa48ddf7290e8f153d065e7
Merge: 31a425a e571a03
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 13:45:31 2026 +0100

    Merge pull request #30 from davefx/copilot/fix-warning-uninitialized-variable
    
    Initialize max_key_length to fix -Wmaybe-uninitialized warning

commit 5c9ae751fe49c05b2a5d715f3913fcf26d771376
Merge: 4d61985 31a425a
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 13:42:01 2026 +0100

    Merge branch 'master' into copilot/fix-segmentation-fault-ca-certificate

commit e2ec59c1378ac898ae85696a3efd3d57ab1e2d90
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:39:00 2026 +0000

    Fix progress bar window display timing and visibility
    
    - Use gtk_widget_show_all() instead of gtk_widget_show() to ensure all child widgets are visible
    - Show window BEFORE starting timer and launching thread to prevent race condition
    - This ensures progress bar is fully initialized before pulse operations begin
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 4d619854e9cc5ab3ecbcbe6cc04d6816391bda5b
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:35:57 2026 +0000

    Add null checks for iter in ca_get_selected_row functions
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit 71fa58205ea70342b1b972072ebb1e1c75678a1c
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:33:32 2026 +0000

    Changes before error encountered
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/test_y2k38.c | 37 +++++++++++++++++++++++++++++++------
 1 file changed, 31 insertions(+), 6 deletions(-)

commit 9171c415d610036b12bebcf33f0beead61e5b9b8
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:32:20 2026 +0000

    Fix all memory leaks in CA tree view functions
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 31 ++++++++++++++++++++++++++++---
 1 file changed, 28 insertions(+), 3 deletions(-)

commit fefb08ffc1435cc72ea0ed71863b41ceaa75e64d
Merge: d427447 31a425a
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 13:30:15 2026 +0100

    Solving conflicts

commit 31a425ac1aa231f678396079aac0103780640772
Merge: f6ffc1f 67e2af4
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 13:28:14 2026 +0100

    Merge pull request #24 from davefx/copilot/create-appdata-file-gnomint
    
    Add AppData file for software center integration

commit 67e2af4010c6aa80fd09912becb2e3174c20fc33
Merge: 7f618ca f6ffc1f
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 13:28:04 2026 +0100

    Merge branch 'master' into copilot/create-appdata-file-gnomint

commit 72972dac95542a86dd6f1cb8520cb43345eed3c9
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:26:32 2026 +0000

    Changes before error encountered
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c        | 22 ++++++++++++++++++++++
 src/ca_file.h        |  2 ++
 src/crl.c            | 23 +++--------------------
 src/new_cert.c       | 23 +++--------------------
 src/new_req_window.c | 23 +++--------------------
 5 files changed, 33 insertions(+), 60 deletions(-)

commit 78da1bc5a5281ef7ac4a0797d469eb81fb76e03a
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:19:55 2026 +0000

    Fix memory leaks causing segmentation fault on CA certificate right-click
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit afb4d68342bbc69a88f71b61866e422bbc3c5df3
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:14:31 2026 +0000

    Address code review feedback: improve time64_check.h and fix test timezone issues
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/test_y2k38.c   | 28 ++++++++++++++++++++--------
 src/time64_check.h |  8 ++++++++
 2 files changed, 28 insertions(+), 8 deletions(-)

commit e571a035ce82a372a8fd427a258db266f4c6aa05
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:13:56 2026 +0000

    Add comment explaining max_key_length default value
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca-cli-callbacks.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9116f61e9f65d4c004381738312c2af137598edc
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:12:48 2026 +0000

    Fix uninitialized variable warning for max_key_length
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca-cli-callbacks.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 046d363b2a89e25a59ba889aa5c9e67532b61f4e
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:12:25 2026 +0000

    Remove test binary from repository
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .gitignore     |   1 +
 src/test_y2k38 | Bin 16480 -> 0 bytes
 2 files changed, 1 insertion(+)

commit 2fdcab674bda3b1a6208ae0f910bc8d3a1b219bb
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:12:12 2026 +0000

    Add Y2K38 (Year 2038) problem fix and verification
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 README             |  16 ++++++
 configure.ac       |   5 ++
 src/ca_file.c      |   1 +
 src/test_y2k38     | Bin 0 -> 16480 bytes
 src/test_y2k38.c   | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/time64_check.h |  33 +++++++++++
 src/tls.c          |   1 +
 7 files changed, 222 insertions(+)

commit aaf714629a6b4481b021f288b990012155f279a0
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:11:53 2026 +0000

    Fix Windows macro consistency in expiration formatting
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/crl.c            | 6 +++---
 src/new_cert.c       | 6 +++---
 src/new_req_window.c | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

commit d427447813660766d956d86486fa5c0b210117ab
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:11:08 2026 +0000

    Final: progress bar fix complete
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 _codeql_detected_source_root | 1 +
 1 file changed, 1 insertion(+)

commit 3be28177c6bc742af427a86bb981bd1268cbb3b7
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:10:41 2026 +0000

    Initial plan

commit b6f26818c884a88785a510d500871184df879cac
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:10:34 2026 +0000

    Address code review feedback: reuse widget variable
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit 1b1eec1ae762acb524828a3483b13c03f369b2c4
Merge: aa14618 f6ffc1f
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 13:09:18 2026 +0100

    Merge branch 'master' into copilot/add-subject-alternative-names

commit 66e409151203e45800d443741d228dbe3ff8dd9c
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:07:58 2026 +0000

    Add expiration year to CA list displays for disambiguation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .gitignore                            |  2 ++
 gconf/org.gnome.gnomint.gschema.valid |  0
 po/.intltool-merge-cache.lock         |  0
 src/ca_file.c                         |  2 +-
 src/ca_file.h                         |  3 ++-
 src/crl.c                             | 33 ++++++++++++++++++++++++++++++---
 src/new_cert.c                        | 33 ++++++++++++++++++++++++++++++---
 src/new_req_window.c                  | 33 ++++++++++++++++++++++++++++++---
 8 files changed, 95 insertions(+), 11 deletions(-)

commit 7f618ca936bae668995293c716db7ff021f37d84
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:07:00 2026 +0000

    Address code review feedback on AppData file
    
    - Use HTTPS URLs instead of HTTP for security
    - Add comment about updating release information
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/gnomint.appdata.xml.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 547b1ba16eb6a3d71c0d35cd4a845380e98c7cc8
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:06:22 2026 +0000

    Initial plan

commit f9d53a8109c3bf05a50e5b6047f942f91fac8683
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:05:21 2026 +0000

    Add AppData file for gnoMint
    
    - Created gnomint.appdata.xml.in with AppStream metadata
    - Updated gui/Makefile.am to install AppData file
    - Added appdata file to .gitignore (generated during build)
    - Validated AppData file with appstreamcli
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .gitignore                 |  1 +
 gui/Makefile.am            | 10 ++++++--
 gui/gnomint.appdata.xml.in | 59 ++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 68 insertions(+), 2 deletions(-)

commit 22cdf91c7842c77a6a66b24fe848a1e822764652
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:04:26 2026 +0000

    Fix progress bar window not being shown during certificate generation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .gitignore                            | 2 ++
 gconf/org.gnome.gnomint.gschema.valid | 0
 po/.intltool-merge-cache.lock         | 0
 src/creation_process_window.c         | 6 ++++++
 4 files changed, 8 insertions(+)

commit bc94d721ebe0530470b8d4342c9775e7177697b4
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:03:41 2026 +0000

    Initial plan

commit 59830bbea64b569b65278da42b7b7d6922b972fd
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:03:04 2026 +0000

    Initial exploration complete
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gconf/org.gnome.gnomint.gschema.valid | 0
 po/.intltool-merge-cache.lock         | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

commit f6ffc1f15ed751afdef406b736cf407ec6f25ff7
Merge: f18aa91 8e90ba4
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 13:01:39 2026 +0100

    Merge pull request #14 from davefx/copilot/make-gnomint-xdg-compliant
    
    Implement XDG Base Directory Specification compliance

commit c65206077aac509593f4191842a9d425ac545a94
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:01:00 2026 +0000

    Initial plan for AppData file implementation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gconf/org.gnome.gnomint.gschema.valid | 0
 po/.intltool-merge-cache.lock         | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

commit 953c1f445ac07a9b3c14114e0e0f628be62d5fdc
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:00:54 2026 +0000

    Initial plan for disambiguating CAs in sign operation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gconf/org.gnome.gnomint.gschema.valid | 0
 po/.intltool-merge-cache.lock         | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

commit 39b79d266be0be2f3df12b2d8d1faaa487b01c8e
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 12:00:02 2026 +0000

    Initial plan

commit aa146188d780c4c21dd70d140db985aa23c28bcf
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:58:18 2026 +0000

    Final refinements: fix buffer handling and remove dead code
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 _codeql_detected_source_root |  1 +
 src/tls.c                    | 15 ++++++---------
 2 files changed, 7 insertions(+), 9 deletions(-)

commit 7490bd0a53423f47cf7e3f58b718356fe141ac2f
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:55:55 2026 +0000

    Fix code review issues: IP address handling and memory leaks
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/tls.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 70 insertions(+), 15 deletions(-)

commit e04372d6022c3fab6d69bd920aeafd2591e69083
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:53:54 2026 +0000

    Initial plan

commit 92fb98164b9b6bfe61d5866dc4b05565b0ff5a50
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:53:24 2026 +0000

    Initial plan

commit c6734705ba7af334de81f5950e504181abc1c2ea
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:51:02 2026 +0000

    Add SAN support to UI for CA and CSR creation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gui/new_ca_window.ui  | 33 ++++++++++++++++++++++++++++++++-
 gui/new_req_window.ui | 33 ++++++++++++++++++++++++++++++++-
 src/new_ca_window.c   |  7 +++++++
 src/new_cert.c        |  3 +++
 src/new_req_window.c  |  7 +++++++
 5 files changed, 81 insertions(+), 2 deletions(-)

commit 10bb903bbaad76bcc29902fc1e758980bbe021bb
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:47:15 2026 +0000

    Add SAN support to certificate generation backend
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/tls.c | 161 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/tls.h |   4 ++
 2 files changed, 165 insertions(+)

commit 8e90ba42faf48d84e44cf0d372005dca275c37a1
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:46:43 2026 +0000

    Clean up CodeQL artifacts from repository

 .gitignore                   | 1 +
 _codeql_detected_source_root | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 29fd46057c17d5e01005702e5773fd806c324224
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:46:13 2026 +0000

    Final: XDG compliance implementation complete
    
    All changes tested and verified. No security issues detected.
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 _codeql_detected_source_root | 1 +
 1 file changed, 1 insertion(+)

commit 3886bdc2c2666cd0ed2ac500ee0db66a99430323
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:45:37 2026 +0000

    Add error handling and missing include for file migration
    
    - Add error handling for g_file_copy operations with GError
    - Add missing #include <gio/gio.h> to main.c
    - Log warnings when migration fails instead of silently failing
    - Properly free GError on failure
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/gnomint-cli.c | 11 ++++++++++-
 src/main.c        | 12 +++++++++++-
 2 files changed, 21 insertions(+), 2 deletions(-)

commit d87124e5ad29cb8faeebc4a46cb64a46f0aa6c3a
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:43:33 2026 +0000

    Initial exploration of gnoMint codebase for SAN support
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gconf/org.gnome.gnomint.gschema.valid | 0
 po/.intltool-merge-cache.lock         | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

commit fae61b1a45fca13cd670cf02c5963fc02f83bf69
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:43:02 2026 +0000

    Remove accidental test database file from commit

 .gitignore |   1 +
 help       | Bin 40960 -> 0 bytes
 2 files changed, 1 insertion(+)

commit f6cdd0ca702b9926d22dbc2fb28774cbef373043
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:42:32 2026 +0000

    Implement XDG Base Directory Specification compliance
    
    - Update main.c to use g_get_user_data_dir() for default database location
    - Update gnomint-cli.c to use g_get_user_data_dir() for default database location
    - Database now defaults to $XDG_DATA_HOME/gnomint/default.gnomint (~/.local/share/gnomint/default.gnomint)
    - Add automatic migration from old location (~/.gnomint/default.gnomint) to new XDG-compliant location
    - Ensure XDG directory is created with proper permissions (0700)
    - Add gio/gio.h include to gnomint-cli.c for GFile operations
    - Update .gitignore to exclude generated files
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .gitignore                            |   2 ++
 gconf/org.gnome.gnomint.gschema.valid |   0
 help                                  | Bin 0 -> 40960 bytes
 po/.intltool-merge-cache.lock         |   0
 src/gnomint-cli.c                     |  25 ++++++++++++++++++++++++-
 src/main.c                            |  24 +++++++++++++++++++++++-
 6 files changed, 49 insertions(+), 2 deletions(-)

commit cc1cea1eb881e8ab85179ed0d511b0f183a4f316
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:38:37 2026 +0000

    Initial plan

commit b1f4cce32dec8af03dd8e8a5deeb806d14170d99
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:38:26 2026 +0000

    Initial plan for XDG compliance implementation
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 gconf/org.gnome.gnomint.gschema.valid | 0
 po/.intltool-merge-cache.lock         | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

commit e4bc0bd9af18ef71178be94eb8a3bfeef989d85a
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:35:34 2026 +0000

    Initial plan

commit f18aa916431fdc97aa20ded8eafb9771a9f9813a
Merge: 40698b2 da40d3a
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 12:31:43 2026 +0100

    Merge pull request #12 from davefx/copilot/generate-copilot-setup-yml
    
    Fix job name in copilot-setup-steps.yml workflow

commit da40d3a378d1634919b8de7105a36f37959607a4
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:26:41 2026 +0000

    Fix job name to copilot-setup-steps in workflow file
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .github/workflows/copilot-setup-steps.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ac40cf7a33dd22b2287355c0a403e39526cf65eb
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:24:52 2026 +0000

    Initial plan

commit 40698b2c5a8b0a471d2bc1b3596821bdb313798a
Merge: a819632 0e2b617
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 12:24:10 2026 +0100

    Merge pull request #9 from davefx/copilot/remove-warnings-improve-code
    
    Fix resource leaks, buffer overflow, uninitialized variables, and compilation warnings

commit 0e2b6176e43ae1d2ec88da5f27e3c5b9b72d8305
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 12:23:08 2026 +0100

    Removing wrong link

 _codeql_detected_source_root | 1 -
 1 file changed, 1 deletion(-)

commit 01552273432e32c5a1cf04fecba000dbb6a51870
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 12:20:36 2026 +0100

    Fixing autoconf version in configure.ac

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4ecaa5997eb08b8db6b07849ea50091b81f9e770
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 11:13:04 2026 +0000

    Fix compilation warnings: deprecated GTK functions and NULL pointer checks
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca.c  |  6 ++----
 src/tls.c | 14 +++++++-------
 2 files changed, 9 insertions(+), 11 deletions(-)

commit a9f07f45e4c5d69f8ba22cdb51cdd057486531e6
Merge: 0348d69 a819632
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 12:07:52 2026 +0100

    Merge remote-tracking branch 'origin/master' into copilot/remove-warnings-improve-code

commit a819632f593047735cf293b60ac190842ac9233b
Merge: 026f4d8 c694598
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 12:07:20 2026 +0100

    Merge pull request #11 from davefx/copilot/generate-copilot-setup-yml
    
    Add GitHub Actions workflow for Copilot setup with project dependencies

commit c694598e3122f29d0edcbca4e5a077e757d1620f
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:59:57 2026 +0000

    Add security permissions to copilot-setup-steps.yml workflow
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .github/workflows/copilot-setup-steps.yml | 2 ++
 1 file changed, 2 insertions(+)

commit 501ef0e3cc17c50468e45639f0c94b1da9acb740
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:58:42 2026 +0000

    Optimize copilot-setup-steps.yml: combine dependency installation and add GnuTLS version verification
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .github/workflows/copilot-setup-steps.yml | 63 ++++++++++++-------------------
 1 file changed, 24 insertions(+), 39 deletions(-)

commit 78d710410bd9d0577c83675f2c66b92c56cc6265
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:57:03 2026 +0000

    Add copilot-setup-steps.yml workflow with all project dependencies
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .github/workflows/copilot-setup-steps.yml | 99 +++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

commit 1f0ce178647658505846d1c937b4424d8602d6c5
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:54:51 2026 +0000

    Initial plan

commit 0348d6924243b6221e45a9e13a0b09e785ba4ea3
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:40:29 2026 +0000

    Remove unnecessary g_free of uninitialized password variable
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 _codeql_detected_source_root | 1 +
 src/export.c                 | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

commit be15ff7dac67fd3e8aacc290b491452f226ec6d7
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:38:46 2026 +0000

    Fix buffer overflow vulnerability and NULL pointer dereference in certificate_properties.c
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/certificate_properties.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit bf3384caf0751d11f430a5f176cb79c46abbde16
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:34:49 2026 +0000

    Fix critical file handle leaks, uninitialized variables, and redundant allocations
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/ca_file.c |  2 +-
 src/export.c  | 19 +++++++++++++++++++
 src/tls.c     |  9 +++------
 3 files changed, 23 insertions(+), 7 deletions(-)

commit 24f329b7c1ad983a8fa03bc8a22d5f4a5b5337a9
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:28:36 2026 +0000

    Initial plan

commit 026f4d8b14b492da09fcc375cf1fca7a49a843cb
Merge: 0bcc659 9cb719a
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 11:27:42 2026 +0100

    Merge pull request #7 from davefx/copilot/customize-dev-environment
    
    Add devcontainer configuration with complete build dependencies

commit 9cb719acecd236af18cacd5f01fb513f61a60eee
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:25:14 2026 +0000

    Address code review feedback: add error handling and make UID configurable
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .devcontainer/devcontainer.json | 11 +++++------
 .devcontainer/post-create.sh    | 12 ++++++------
 2 files changed, 11 insertions(+), 12 deletions(-)

commit 015495190be712d4048f0b5cab42243b00061453
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:23:51 2026 +0000

    Fix code review feedback: update deprecated setting and optimize Dockerfile
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .devcontainer/Dockerfile        | 7 ++-----
 .devcontainer/devcontainer.json | 2 +-
 2 files changed, 3 insertions(+), 6 deletions(-)

commit 7dbf19259ea332babf50bd783adb4a221928269a
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:22:11 2026 +0000

    Add devcontainer configuration for GitHub Copilot coding agent
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 .devcontainer/Dockerfile        |  80 +++++++++++++++++++++++++++
 .devcontainer/README.md         | 118 ++++++++++++++++++++++++++++++++++++++++
 .devcontainer/devcontainer.json |  40 ++++++++++++++
 .devcontainer/post-create.sh    |  49 +++++++++++++++++
 4 files changed, 287 insertions(+)

commit fa2000325aa621dcc171c157c646746c31486ed7
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 10:19:07 2026 +0000

    Initial plan

commit 0bcc659c39740e306b5075664d6d67c2f6848249
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 11:17:00 2026 +0100

    Removing wrongly added directory

 _codeql_detected_source_root | 1 -
 1 file changed, 1 deletion(-)

commit 36fb6a03f21ff6526165611584c43ab471020230
Merge: 0689840 4fa36b5
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Wed Jan 21 11:14:08 2026 +0100

    Merge pull request #5 from davefx/copilot/adapt-code-to-modern-gtk
    
    [WIP] Adapt code to modern GTK development

commit 4fa36b54c7b4f49b279050bc56d7bfca81be34af
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 09:42:35 2026 +0000

    Replace deprecated gtk_timeout_remove with g_source_remove
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/creation_process_window.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit e29364b4d8e1d4631bb40266770d3285c28a2238
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 09:37:47 2026 +0000

    Complete GTK 3 modernization
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 _codeql_detected_source_root | 1 +
 1 file changed, 1 insertion(+)

commit b02d89b472bf3727e8142c407073afa681cf4dc1
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 09:36:25 2026 +0000

    Replace deprecated gtk_object_destroy with gtk_widget_destroy
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 src/crl.c            | 4 ++--
 src/new_ca_window.c  | 4 ++--
 src/new_cert.c       | 4 ++--
 src/new_req_window.c | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

commit 88b9755518e047564b429f895fb4d38a0b848d28
Author: David Marín <david.marin@toptal.com>
Date:   Wed Jan 21 10:03:17 2026 +0100

    Updating and fixing configure.ac

 configure.ac | 29 +++++++++++++++++++----------
 1 file changed, 19 insertions(+), 10 deletions(-)

commit 896b957f9f4ed9e9d623df0d5c89a0eb7a8070fb
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 06:04:44 2026 +0000

    Replace GConf with GSettings for modern GTK support
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 configure.ac                        | 19 +++---------
 gconf/Makefile.am                   | 21 +++----------
 gconf/org.gnome.gnomint.gschema.xml | 40 ++++++++++++++++++++++++
 src/preferences-gui.c               | 62 +++++++++++++++++--------------------
 src/preferences-gui.h               |  9 +++---
 src/preferences.c                   | 15 +++++----
 6 files changed, 88 insertions(+), 78 deletions(-)

commit 64282124f2d5c2ec0ef407236fe054040600606b
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 05:33:31 2026 +0000

    Replace deprecated GTK 2 APIs with GTK 3 equivalents
    
    Co-authored-by: davefx <292309+davefx@users.noreply.github.com>

 configure.ac                 |  4 ++--
 src/ca.c                     | 32 ++++++++++++++++----------------
 src/certificate_properties.c |  3 ++-
 src/crl.c                    |  4 ++--
 src/main.c                   | 12 ++++++------
 5 files changed, 28 insertions(+), 27 deletions(-)

commit 1d8d731c595594a9414ce833a45e41082a1cba78
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date:   Wed Jan 21 05:27:30 2026 +0000

    Initial plan

commit 06898409f3fee0b4d8a099564c5475ee51d488ac
Merge: eb97e37 763487f
Author: David Marín <292309+davefx@users.noreply.github.com>
Date:   Tue Jan 10 11:33:42 2023 +0100

    Merge pull request #3 from directrix1/master
    
    Update for Glib > 2.32

commit 763487f22fdf1d333ff5f08b9c817b782d5445a5
Author: Edward Flick <edward@syncsoft.co>
Date:   Tue Jan 10 03:42:08 2023 -0600

    Removed variable reference to enumerations in header file.

 src/ca_file.h | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit cc98f19e15af1cb400818978bafaa9b51c222ec3
Author: Edward Flick <edward@syncsoft.co>
Date:   Tue Jan 10 02:59:47 2023 -0600

    Updated mutex initialization.

 src/ca_creation.c  | 2 +-
 src/csr_creation.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit eb97e37a4662bc71c08276652e8756a5f331a71d
Merge: 0e9cfa0 93c88d4
Author: David Marín <davefx@gmail.com>
Date:   Fri Jun 8 22:43:35 2018 +0200

    Merge pull request #2 from malcolmlewis/master
    
    Allow setting of cflags and remove -Werror

commit 93c88d4dd92e2c7fa3d364048d689f3d4d0aa64f
Author: malcolmlewis <malcolmlewis@opensuse.org>
Date:   Fri Jun 8 14:24:31 2018 -0500

    Allow setting of cflags and remove -Werror
    
    The -Werror flag was removed as per the ChangeLog in February 2014 on commit: 29f551e01808928abf2f95f0b4d1dfd108225de8, this seems to have been re-added.
    Adding additional CFLAGS compile options causes build failures as it errors out.

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0e9cfa0169d4900db273cccfd7b1b9ee4b423fbf
Merge: 86e2074 74d7940
Author: David Marín <davefx@gmail.com>
Date:   Thu Apr 27 19:12:42 2017 +0200

    Merge pull request #1 from dermotduffy/fix-argument-order
    
    Fix argument order for addcsr call.

commit 74d79401f9807923d1564e7f11a1b18dc995fe52
Author: Dermot Duffy <dermot.duffy@gmail.com>
Date:   Wed Apr 26 23:34:35 2017 +0100

    Fix argument order for addcsr call.

 src/ca-cli-callbacks.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 86e2074a9934d387affed1aa34b4d61c498c8500
Author: David Marín Carreño <davefx@gmail.com>
Date:   Thu Mar 17 21:41:43 2016 +0100

    Stopping the use of deprecated functions (now it should compile in Debian)

 src/tls.c | 29 +++++++++++++++++++++++++----
 src/tls.h |  1 +
 2 files changed, 26 insertions(+), 4 deletions(-)

commit 337874a08ffd3f0376402af158b1dfdb27c93ad3
Author: David Marín Carreño <davefx@gmail.com>
Date:   Tue Mar 15 23:02:00 2016 +0100

    Preparing for tagging version 1.3.0

 ChangeLog    | 100 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 configure.ac |   4 +--
 2 files changed, 100 insertions(+), 4 deletions(-)

commit aeba061479316a4d135b8ed1a60e4f4cc5e43cf7
Author: David Marín Carreño <davefx@gmail.com>
Date:   Tue Mar 15 22:45:33 2016 +0100

    Now all certificates are signed with SHA512 instead of SHA1

 gui/certificate_properties_dialog.ui | 33 ++++++++++++++++++++++++++++++++-
 src/certificate_properties.c         |  3 +++
 src/tls.c                            | 24 +++++++++++++++++++-----
 src/tls.h                            |  1 +
 4 files changed, 55 insertions(+), 6 deletions(-)

commit 1108eb894355927bc6d093c3b810fc64eb6f69cb
Author: David Marín Carreño <davefx@gmail.com>
Date:   Tue Mar 15 19:57:39 2016 +0100

    Adding file to .gitignore

 .gitignore | 1 +
 1 file changed, 1 insertion(+)

commit 66efbc039409651643570d56f008211e63a7d500
Author: David Marín Carreño <davefx@gmail.com>
Date:   Tue Mar 15 19:53:32 2016 +0100

    Removing warnings due to variables set but not used

 configure.ac                 |  2 +-
 src/ca-cli-callbacks.c       |  2 +-
 src/ca.c                     | 36 ++++++++++++++++--------------------
 src/ca_file.c                |  4 ++--
 src/certificate_properties.c |  3 +--
 src/crl.c                    | 10 ++++------
 src/new_cert.c               | 10 ++++------
 src/new_req_window.c         | 10 ++++------
 src/tls.c                    | 10 ++++------
 9 files changed, 37 insertions(+), 50 deletions(-)

commit a3dc8720912b0097c2880c4cab9ba35b11e2fd50
Author: David Marín Carreño <davefx@gmail.com>
Date:   Tue Mar 15 19:25:07 2016 +0100

    Adding support for SHA256

 src/tls.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3b937be3ff78e957718c69a3d2183d3fab158eed
Author: David Marín <davefx@gmail.com>
Date:   Tue Mar 15 19:21:00 2016 +0100

    Update README

 README | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit ce6c59915ef6fe20c98a0c7c8c1f221249198f2c
Author: David Marín <davefx@gmail.com>
Date:   Thu Aug 6 21:40:23 2015 +0200

    Fixing some problems with 'make dist'. Now it works ok

 Makefile.am  | 17 +++++++++--------
 configure.ac |  4 ++--
 2 files changed, 11 insertions(+), 10 deletions(-)

commit 06938a9641de354deed63c1e9ce93f1695e2bd0b
Author: David Marín <davefx@gmail.com>
Date:   Thu Aug 6 20:20:20 2015 +0200

    Fixing problems while compiling in Ubuntu 15.04

 .gitignore     |   8 +--
 configure.ac   |   2 +-
 m4/intltool.m4 | 213 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 216 insertions(+), 7 deletions(-)

commit 2ea691ecaf897a616a5e8cddfda075dc1981eb40
Author: David Marín <davefx@gmail.com>
Date:   Thu Aug 6 20:06:17 2015 +0200

    Fixing and update source code base so it compiles again...

 INSTALL                      | 250 +++++++++++++++++++++++++++++++++----------
 Makefile.am                  |  21 +++-
 autogen.sh                   |  52 ++++++---
 configure.ac                 |  13 +--
 m4/Makefile.am               |   2 +-
 m4/gettext.m4                |  96 ++++++++++-------
 m4/iconv.m4                  | 164 +++++++++++++++++++++-------
 m4/intltool.m4               | 217 +------------------------------------
 m4/progtest.m4               |  31 +++---
 src/Makefile.am              |   1 +
 src/ca-cli-callbacks.c       |  61 ++++++-----
 src/ca_file.c                |   2 -
 src/certificate_properties.c |   6 +-
 src/import.c                 |  18 ++--
 src/pkey_manage.c            |   2 +-
 src/tls.c                    |   6 +-
 16 files changed, 506 insertions(+), 436 deletions(-)

commit 29f551e01808928abf2f95f0b4d1dfd108225de8
Author: Kevin Zheng <kevinz5000@gmail.com>
Date:   Wed Feb 5 17:41:13 2014 -0600

    Compile without -Werror.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d3e66ac53c9b82ded0e5974094888f0f44a047e
Author: Kevin Zheng <kevinz5000@gmail.com>
Date:   Sun Jan 26 16:42:07 2014 -0600

    Clean up deprecated functions.

 src/ca_creation.c  | 47 ++++++++++++++++++++++-------------------------
 src/ca_file.c      |  6 +++---
 src/csr_creation.c | 47 ++++++++++++++++++++++-------------------------
 src/import.c       |  2 +-
 src/main.c         |  1 -
 5 files changed, 48 insertions(+), 55 deletions(-)

commit 4fae5bb2a5df0c3f67bfcb53c98e274c01579868
Author: Kevin Zheng <kevinz5000@gmail.com>
Date:   Sun Nov 24 12:23:38 2013 -0600

    Clean up autotools and sort gitignore.

 .gitignore                   | 10 +++++-----
 Makefile.am                  |  2 +-
 configure.in => configure.ac |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

commit 69d1de0e85df77bece4de0a1eeb2c8b08f649af7
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 13:02:35 2010 +0200

    Fixing bug #2931708. Now it is not possible to enter invalid DSA keylengths

 gui/new_ca_window.ui   |  5 +----
 gui/new_req_window.ui  | 15 ++++++++-------
 src/ca-cli-callbacks.c |  9 +++++++--
 src/new_ca_window.c    | 24 ++++++++++++++++++++++++
 src/new_req_window.c   | 23 +++++++++++++++++++++++
 5 files changed, 63 insertions(+), 13 deletions(-)

commit 891a4ac513c5445f919452a13b4bb4316be8ad98
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 12:16:33 2010 +0200

    Completing Spanish translation

 po/es.po       | 285 +++++++++++++++++++++++++++++----------------------------
 po/gnoMint.pot | 279 ++++++++++++++++++++++++++++---------------------------
 2 files changed, 287 insertions(+), 277 deletions(-)

commit abf68cd278bcea59d1a2936212a8030cde637fa0
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 12:14:53 2010 +0200

    Adding SHA256 fingerprint

 gui/certificate_properties_dialog.ui | 39 ++++++++++++++++++++++++++++--------
 src/ca-cli-callbacks.c               |  1 +
 src/certificate_properties.c         |  3 +++
 src/tls.c                            | 14 +++++++++++++
 src/tls.h                            |  1 +
 5 files changed, 50 insertions(+), 8 deletions(-)

commit f072fb063d253b6f6f029dff05f1044409fd6ff1
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 11:19:44 2010 +0200

    Adding oc.po file

 po/oc.po | 3349 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 3349 insertions(+)

commit b763cbb860433308d4cfc6d4b5301c6b6fae976b
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 11:17:57 2010 +0200

    Updating Changelog file

 ChangeLog | 6627 +++++++++++++++++--------------------------------------------
 1 file changed, 1797 insertions(+), 4830 deletions(-)

commit 2dd2afe85c99637871113f4fa8d579fc2ccf18c7
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 11:14:29 2010 +0200

    Release 1.2.1 (aka 'All you need is a giant pacifier')

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6e1fb1cbb9f9416176a12a914e2ddd05a3f3e70d
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 11:11:29 2010 +0200

    Updating translations for all languages from Launchpad

 configure.in |   2 +-
 po/ca.po     |  14 ++--
 po/cs.po     |   8 +-
 po/de.po     |   4 +-
 po/fi.po     |   2 +-
 po/fr.po     |   6 +-
 po/it.po     |  34 +++++---
 po/pt_BR.po  |   2 +-
 po/ru.po     |   6 +-
 po/sk.po     |   7 +-
 po/sv.po     | 260 +++++++++++++++++++++++++++++++++++++----------------------
 11 files changed, 211 insertions(+), 134 deletions(-)

commit 9aa80baf5a9293440479eff7d6cf0911268399af
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 10:50:13 2010 +0200

    Completing Spanish translation

 po/es.po       | 5684 +++++++++++++++++++++++++++-----------------------------
 po/gnoMint.pot | 1763 +++++-------------
 2 files changed, 3260 insertions(+), 4187 deletions(-)

commit 57b4c6c40ed700598465efa93502446fbfcc0b92
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 10:49:03 2010 +0200

    Improving warning message while revoking certificates. Adding a different message while revoking a CA certificate

 src/ca.c | 30 +++++++++++++++++++++++-------
 1 file changed, 23 insertions(+), 7 deletions(-)

commit 79729c74f82a1f69452ab5e350d1f4f6dc16800e
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 10:06:31 2010 +0200

    Fixing crash when revoking a CA certificate, if revoked certificates were not visible

 src/ca.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit b0fa891567a40d2c6d1a9cb7450de5ee6a79e91f
Author: David Marín <davefx@gmail.com>
Date:   Wed Aug 11 09:32:33 2010 +0200

    Fixing use of an already freed string in ca-cli-callbacks.c. Fixes RedHat Bugzilla #584069

 src/ca-cli-callbacks.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3dd98ca24287ddda9c4802cc8397c9e82b449ac2
Author: David Marín <davefx@gmail.com>
Date:   Tue Aug 10 18:58:54 2010 +0200

    Version 1.2.0

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit edbbbbfd3d50b93a220e035e027d98992c2a07ad
Author: David Marín <davefx@gmail.com>
Date:   Tue Aug 10 17:11:07 2010 +0200

    Fixing bug #3006946

 src/ca-cli-callbacks.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6f5aef2d748f55c3d1c89a9eae3601f66c5ecc34
Author: David Marín <davefx@gmail.com>
Date:   Tue Jun 1 22:13:22 2010 +0200

    Completing .gitignore file

 .gitignore | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

commit ea6d09dc9556b98cba6dc68225b3c7621530d0c5
Author: David Marín <davefx@gmail.com>
Date:   Tue Jun 1 21:53:51 2010 +0200

    Uploading changes by Jaroslav Imrich, for Windows migration

 .gitignore                   |  8 ++++
 AUTHORS                      |  2 +-
 src/ca_file.c                | 93 ++++++++++++++++++++++++--------------------
 src/ca_policy.c              |  2 +-
 src/certificate_properties.c |  2 +-
 src/new_ca_window.c          |  2 +-
 6 files changed, 62 insertions(+), 47 deletions(-)

commit f9e9789ead5d49caa144f0556c7c340cf50f1aea
Author: David Marín <davefx@gmail.com>
Date:   Tue Jun 1 21:41:19 2010 +0200

    Commiting new patch for windows migration, by Jaroslav Imrich

 update-svncl.sh | 3 ---
 1 file changed, 3 deletions(-)

commit 66fed0ee8c132546f03072112693feac5088422c
Author: David Marín <davefx@gmail.com>
Date:   Tue Jun 1 20:10:22 2010 +0200

    Fixing bug #3006946. Now CA policies can be established again

 src/ca_policy.c | 51 +++++++++++++++++++++++++++------------------------
 1 file changed, 27 insertions(+), 24 deletions(-)

commit 1041015c248f05622311e3dde2b394c4c3e1ed33
Author: David Marín <davefx@gmail.com>
Date:   Tue Jun 1 19:28:06 2010 +0200

    Adding execute permissions

 autogen.sh | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 7ebea2e4d9923d7ab0b442b1c4134af659b76662
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Apr 1 22:35:21 2010 +0000

    Updating translations from Launchpad. Added new Slovak translation (thanks to Jaroslav Imrich)

 configure.in |    2 +-
 po/ca.po     |   58 +-
 po/de.po     |  548 ++++++----
 po/fr.po     |   31 +-
 po/it.po     |  606 ++++++-----
 po/sk.po     | 3389 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 4151 insertions(+), 483 deletions(-)

commit 4f4c95e3024481267af5440f2d815986afc877b1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Mar 29 09:06:18 2010 +0000

    Adding Microsoft Windows support (patch contributed by Jaroslav Imrich)

 AUTHORS                       |  1 +
 configure.in                  |  1 +
 src/ca-cli-callbacks.c        | 65 ++++++++++++++++++++++++++++++++++++++-----
 src/ca.c                      | 52 +++++++++++++++++++---------------
 src/ca_policy.c               |  6 ++--
 src/certificate_properties.c  | 45 ++++++++++++++++++++++++++----
 src/creation_process_window.c |  2 +-
 src/crl.c                     |  6 ++--
 src/csr_properties.c          |  2 +-
 src/dialog.c                  | 25 ++++++++++++++++-
 src/dialog.h                  |  4 +++
 src/main.c                    | 12 ++++----
 src/new_ca_window.c           | 24 ++++++++++------
 src/new_cert.c                | 24 ++++++++++------
 src/new_req_window.c          | 16 +++++------
 src/pkey_manage.c             |  8 +++++-
 src/preferences-window.c      |  4 +--
 17 files changed, 219 insertions(+), 78 deletions(-)

commit 9c332963d9225eff9a5117e20b06d4690bde9227
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Feb 16 22:27:13 2010 +0000

    Fixing bug in export from menu

 gui/main_window.ui | 1 +
 1 file changed, 1 insertion(+)

commit 5e362e2f9efdbb86468734ab2a2c29b97fcc951c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 9 21:11:22 2009 +0000

    Committing support for CRL distribution points

 ChangeLog                            |   7 ++
 gui/certificate_properties_dialog.ui | 115 ++++++++++++++++-------
 gui/new_ca_window.ui                 | 175 +++++++++++------------------------
 src/ca-cli-callbacks.c               | 127 ++++++++++++-------------
 src/ca_creation.c                    |   4 +-
 src/ca_file.c                        | 121 +++++++++++++++++-------
 src/ca_file.h                        |   6 +-
 src/ca_policy.c                      | 111 +++++++++++++++-------
 src/crl.c                            |   2 +-
 src/new_ca_window.c                  |  19 ++--
 src/new_cert.c                       |  44 ++++-----
 src/tls.c                            |  30 +++++-
 src/tls.h                            |  10 +-
 update-svncl.sh                      |   2 +-
 14 files changed, 447 insertions(+), 326 deletions(-)

commit bfc3255bfd6ce76bdd10dd54cc7dc8629b123178
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 11:43:43 2009 +0000

    Updating changelog

 ChangeLog | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 0e29b1f7810c0282e14833df74c720e0ab997e1d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 11:42:49 2009 +0000

    Releasing version 1.1.0

 ChangeLog    | 4771 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 configure.in |    3 +-
 2 files changed, 3951 insertions(+), 823 deletions(-)

commit c8d447c6b9becc0104b74d4625d1c3b90d0759a0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 11:36:50 2009 +0000

    Fixing problems in Spanish translation. Please, translators: don't translate gettext comments

 po/es.po | 135 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 62 insertions(+), 73 deletions(-)

commit b6ccb3db0817f632dd79a886e116f6f9587ec273
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 11:22:26 2009 +0000

    Updating translations from Launchpad. Thanks to all the translators

 po/ca.po |    7 +-
 po/cs.po |   25 +-
 po/es.po |   26 +-
 po/fr.po | 1327 +++++++++++++++++++++++++++++++++++---------------------------
 po/it.po |   41 +-
 5 files changed, 814 insertions(+), 612 deletions(-)

commit d1f022af20e465d4333c00e24273c15a01e394b2
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 11:12:56 2009 +0000

    Fixing gnoMint bug #2890061: gnomint-cli showpolicy command was
    failing with invalid ca-id message.

 src/ca-cli-callbacks.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit deef20d29975141b47a144ae435302cf1b26a16f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 10:57:15 2009 +0000

    Adding libgcrypt in configure, resolving Debian bug #554669

 configure.in    | 10 ++++++++++
 src/Makefile.am |  2 ++
 2 files changed, 12 insertions(+)

commit 7491d9884b46299e2afca7fdab5724c59e22c83d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 08:10:30 2009 +0000

    Building hierarchical tree using node routes instead of names

 ChangeLog | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ca.c  | 63 +++++++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 93 insertions(+), 20 deletions(-)

commit eedd45c73f359bd7a5b2e35596629f047f63ab1d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 8 07:16:44 2009 +0000

    Fixing problem when there's a duplicate in common name.

 src/ca_file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c5b96361044ec82b7f3c2f7ec790afe2cd057e25
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 7 07:51:44 2009 +0000

    Fixed problems about spinbuttons generated in gtk-ui-manager conversion

 gui/certificate_properties_dialog.ui | 18 ++++++++++++++++++
 gui/dh_parameters_dialog.ui          | 10 +++++++++-
 gui/new_ca_window.ui                 | 33 ++++++++++++++++++++++++++-------
 gui/new_cert_window.ui               | 10 +++++++++-
 gui/new_req_window.ui                | 10 +++++++++-
 5 files changed, 71 insertions(+), 10 deletions(-)

commit b3c3fa506bccd885c446d012df72377352145990
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 7 07:51:03 2009 +0000

    Avoiding SIGSEGV whenever there's a problem obtaining last assigned serial number

 src/ca_file.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 16c1d04431eb64c9b3ff1b16e7ba418f79cfa730
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 7 06:34:13 2009 +0000

    Adding string.h include for allow compiling in CentOS 5

 src/dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit 4a59653b60cb0d5d6252454b7a98689e330fc144
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Oct 11 21:17:32 2009 +0000

    Adding Catalan translation. Updating translation from Launchpad.net

 configure.in |    2 +-
 po/ca.po     | 3574 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/cs.po     |  149 +--
 po/de.po     |  344 +++---
 po/es.po     |  209 ++--
 po/fi.po     |  150 ++-
 po/fr.po     | 1533 ++++++++++++-------------
 po/it.po     |  187 +--
 po/pt_BR.po  |  150 ++-
 po/ru.po     |  433 +++----
 po/sv.po     |  231 ++--
 11 files changed, 5352 insertions(+), 1610 deletions(-)

commit 593b4ca0cdc47e6988ac2283524863a9577eec90
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Oct 11 21:16:21 2009 +0000

    Correcting loading of popup

 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d8c18580303626551d3d57e5a492954ead4a0e22
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Oct 11 11:04:59 2009 +0000

    Migrating from libglade to GtkBuilder

 configure.in                           |    4 +-
 gui/Makefile.am                        |   26 +-
 gui/certificate_popup_menu.ui          |   77 +
 gui/certificate_properties_dialog.ui   | 1320 +++++++
 gui/change_password_dialog.ui          |  236 ++
 gui/creation_process_window.ui         |  104 +
 gui/csr_popup_menu.ui                  |   84 +
 gui/csr_properties_dialog.ui           |  245 ++
 gui/dh_parameters_dialog.ui            |  124 +
 gui/export_certificate_dialog.ui       |  217 ++
 gui/get_db_password_dialog.ui          |  152 +
 gui/get_password_dialog.ui             |  146 +
 gui/get_pkey_dialog.ui                 |  158 +
 gui/gnomint.glade                      | 6247 --------------------------------
 gui/import_file_or_directory_dialog.ui |  155 +
 gui/import_password_dialog.ui          |  163 +
 gui/main_window.ui                     |  511 +++
 gui/new_ca_window.ui                   |  828 +++++
 gui/new_cert_window.ui                 |  903 +++++
 gui/new_crl_dialog.ui                  |  113 +
 gui/new_req_window.ui                  |  735 ++++
 gui/preferences_dialog.ui              |   91 +
 po/POTFILES.in                         |   20 +-
 src/ca.c                               |  493 +--
 src/ca_policy.c                        |  196 +-
 src/certificate_properties.c           |   70 +-
 src/country_table.c                    |    2 +-
 src/creation_process_window.c          |  118 +-
 src/crl.c                              |   37 +-
 src/csr_properties.c                   |   44 +-
 src/dialog.c                           |   44 +-
 src/import.c                           |   34 +-
 src/main.c                             |   51 +-
 src/main.h                             |    2 +-
 src/new_ca_window.c                    |   68 +-
 src/new_cert.c                         |  334 +-
 src/new_req_window.c                   |   79 +-
 src/pkey_manage.c                      |  104 +-
 src/preferences-window.c               |   26 +-
 39 files changed, 7239 insertions(+), 7122 deletions(-)

commit 06b3c4b887ef3e4da1fdebf141aa0cb510b89303
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Jun 5 20:27:15 2009 +0000

    Fixing bug in configure.in that affected Slackware systems

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4bb32e14a26a844e594cace35b13e3a7cb8ae223
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:23:19 2009 +0000

    Updating intltool.m4

 m4/intltool.m4 | 64 ++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 40 insertions(+), 24 deletions(-)

commit 9692ccd102531b44ad8a9044f16f7e2c57a98018
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:19:38 2009 +0000

    Uploading updated Changelog

 ChangeLog | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)

commit bf7aa2fd43aab517d860236c5e765f6f203befe0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:17:18 2009 +0000

    Uploading change to version 1.0.0

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 12d55fae850e62a040a67f180e95a516920b2884
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:15:04 2009 +0000

    Committing last Russian translation, by aquanaut

 po/ru.po | 452 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 213 insertions(+), 239 deletions(-)

commit 9a9ccf85fe678f5f66261325c9e33e2c0dfca426
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:11:37 2009 +0000

    Updating template and Spanish translation

 po/es.po       | 144 ++++++++++++++++++++++++++++++++++-----------------------
 po/gnoMint.pot | 106 ++++++++++++++++++++++++------------------
 2 files changed, 147 insertions(+), 103 deletions(-)

commit ec8260c497fd1f36f6aefd25c069c53c4ec5f3db
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:06:17 2009 +0000

    Checking if new cert expiration date is after the CA expiration date. In that case, show an info message and set the new cert expiration date to the CA expiration date.

 src/new_cert.c | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

commit c5a7b452c160ef3a6d5f30fdd5bda102dac7d22f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:04:55 2009 +0000

    Fixing compile error if GNUTLS_VERSION < 2.8

 src/tls.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ee17efc672d350eaf52c63ed07eff4ea7c0718d6
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 21:04:15 2009 +0000

    Adding new function dialog_info for showing information messages

 src/dialog.c | 23 +++++++++++++++++++++++
 src/dialog.h |  1 +
 2 files changed, 24 insertions(+)

commit 7abbb8192fbe7dd98b6a0dc9df7254739c33ba81
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jun 3 20:30:21 2009 +0000

    Enabling compilation with GnuTLS 2.8.0 (Fix provided by anonymous contributor in Sourceforge)

 src/ca-cli-callbacks.c | 2 +-
 src/tls.c              | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

commit c866228a8d79ce1b8844eddaebed155685942fb2
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 5 18:51:55 2009 +0000

    Adding forgotten crlgen function to gnomint-cli

 src/ca-cli.c | 39 ++++++++++++++++++++-------------------
 1 file changed, 20 insertions(+), 19 deletions(-)

commit c6b07378637b93438812705c30eed2ec96db27ef
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 5 18:42:53 2009 +0000

    Correcting some Spanish .po file bugs

 po/es.po | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 0ba6df3d6541ef9a14a4f1f0f5758bf609d62b96
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 5 18:10:10 2009 +0000

    Making a string translatable

 ChangeLog            | 29 +++++++++++++++++++++++++++++
 po/es.po             | 10 +++++++++-
 po/gnoMint.pot       |  8 +++++++-
 src/csr_properties.c |  2 +-
 4 files changed, 46 insertions(+), 3 deletions(-)

commit e1c18519af09d7d83ca84de6b6548f32135b8655
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 4 18:45:41 2009 +0000

    Updating TODO list

 TODO | 156 ++++++-------------------------------------------------------------
 1 file changed, 14 insertions(+), 142 deletions(-)

commit 769136c6c693581549f8f89504717f28c1bb19d7
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Apr 18 06:50:43 2009 +0000

    Updating pot file and merging with all translations before uploading to Launchpad

 po/cs.po       | 1340 ++++++++++++++++++++++++++-----------------------
 po/de.po       | 1342 ++++++++++++++++++++++++++-----------------------
 po/es.po       |    2 +-
 po/fi.po       | 1345 ++++++++++++++++++++++++++-----------------------
 po/fr.po       | 1392 ++++++++++++++++++++++++++++-----------------------
 po/gnoMint.pot |    2 +-
 po/it.po       | 1350 ++++++++++++++++++++++++++-----------------------
 po/pt_BR.po    | 1345 ++++++++++++++++++++++++++-----------------------
 po/ru.po       | 1520 +++++++++++++++++++++++++++++++-------------------------
 po/sv.po       | 1388 ++++++++++++++++++++++++++++-----------------------
 10 files changed, 5995 insertions(+), 5031 deletions(-)

commit 102f24799e3f85c9227013d54bad938a30e29f68
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Apr 18 06:36:50 2009 +0000

    Updating Slovak and Spanish translations

 po/es.po |  4 ++--
 po/sv.po | 19 ++++++++++++++++---
 2 files changed, 18 insertions(+), 5 deletions(-)

commit 464fecf7189472f5e2bc5c99cc47526dc9a82bd5
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Apr 18 06:35:14 2009 +0000

    Adding new Russian and Finnish translations

 configure.in |    2 +-
 po/fi.po     | 3209 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ru.po     | 3539 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 6749 insertions(+), 1 deletion(-)

commit b4fb91de645f7cbb73423b0bcb9ae96cbd012068
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Mar 23 19:09:58 2009 +0000

    Correcting error while adding a csr

 gui/gnomint.glade | 1 +
 1 file changed, 1 insertion(+)

commit 817e99945cad1af844f2853cec2e9218fed8deb6
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Mar 20 15:48:40 2009 +0000

    Upgrading Spanish translation

 gui/gnomint.glade |   89 +++-
 po/POTFILES.in    |    2 +-
 po/es.po          | 1368 +++++++++++++++++++++++++++++------------------------
 po/gnoMint.pot    | 1318 ++++++++++++++++++++++++++++-----------------------
 4 files changed, 1527 insertions(+), 1250 deletions(-)

commit ca5646e7c95c409499920d6357d8e66c6d78d3f4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Mar 20 10:07:17 2009 +0000

    Preparing 0.9.9 version. Making Glade file fully GTK+-2.10 compliant

 configure.in      |    3 +-
 gui/gnomint.glade | 1187 +++++++++++++++++++++++++++++++++--------------------
 2 files changed, 750 insertions(+), 440 deletions(-)

commit 6554fbc5778cf5ebd7ce71689a11d61a096497c9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Mar 17 18:50:30 2009 +0000

    Correcting behaviour when problems while opening, saving or creating file. Now the last open file is always reopened

 src/ca.c      |  73 --------------
 src/ca_file.c | 298 ++++++++++++++++++++++++++++++----------------------------
 src/main.c    |  76 ++++++++++++++-
 3 files changed, 231 insertions(+), 216 deletions(-)

commit d40685bd44ba39b5e631b31d2039f707a74699b1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Mar 16 18:25:56 2009 +0000

    Disabling Properties option when there is no item selected

 doc/gnomint-db.dia | Bin 4000 -> 3999 bytes
 src/ca.c           |  11 ++++++++++-
 src/pkey_manage.h  |   1 -
 3 files changed, 10 insertions(+), 2 deletions(-)

commit 233273d89e03bbf902eb7bd1dc4cb18559d8ff7d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Mar 10 19:14:26 2009 +0000

    Moving some callbacks from main.c to ca.c

 ChangeLog         |  233 ++++++++
 gui/gnomint.glade | 1653 +++++++++++++++++++++++++++--------------------------
 src/ca.c          |  224 ++++++++
 src/gnomint-cli.c |    1 -
 src/main.c        |  233 +-------
 5 files changed, 1286 insertions(+), 1058 deletions(-)

commit b6d5ca92db1be139143d08d3a8464a47adcb2839
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Mar 7 12:23:13 2009 +0000

    Adding functional toolbar.
    Fixing bug: extract private key action was enabled and never disabled afterwards (while a selected element exists)

 gui/Makefile.am     |    6 +-
 gui/addca.png       |  Bin 0 -> 1153 bytes
 gui/addcsr.png      |  Bin 0 -> 1098 bytes
 gui/extractpkey.png |  Bin 0 -> 1114 bytes
 gui/gnomint.glade   | 1781 +++++++++++++++++++++++++++------------------------
 gui/sign.png        |  Bin 0 -> 1283 bytes
 po/POTFILES.in      |    2 +-
 src/ca.c            |   39 +-
 8 files changed, 991 insertions(+), 837 deletions(-)

commit 4e5a48320d0e0aaa9b320fa2099ceaa09c4c4362
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Mar 1 09:07:29 2009 +0000

    Renaming new_cert_window by new_cert

 src/Makefile.am                       | 6 +++---
 src/ca-cli-callbacks.c                | 4 ++--
 src/ca.c                              | 2 +-
 src/main.c                            | 2 +-
 src/{new_cert_window.c => new_cert.c} | 6 +++---
 src/{new_cert_window.h => new_cert.h} | 2 +-
 6 files changed, 11 insertions(+), 11 deletions(-)

commit 47848b6d087ce9ea9a855092bb739db0e708ee13
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Mar 1 09:01:02 2009 +0000

    Fixing compile error

 src/export.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a740a936768e4d6566f72892ae9789153646a0bc
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Mar 1 08:01:16 2009 +0000

    Adding protection: export_pkcs12 shouldn't be called for exporting
    CSR information.

 src/export.c | 2 ++
 1 file changed, 2 insertions(+)

commit 2a1122fa9e7da6bc52478177f29309dffe85b192
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Mar 1 07:38:39 2009 +0000

    Fixing error while exporting private key of CSRs to PKCS#8 format: we
    were exporting a certificate private key instead of the CSR private
    key.

 src/export.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

commit e204f6871a0879a82e80d8b7b981a9bcf8878e2e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Feb 28 11:51:47 2009 +0000

    Correcting bug: while importing a CA certificate, if it has children
    in the database, its  grand-children get also the correct
    parent-route.
    
    In that case too, corrected a possible segv in the parent-route
    assignation to children.

 src/ca_file.c | 21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)

commit a0166fd20b790ec93da214c623a23d2cad4abddb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Feb 28 07:42:34 2009 +0000

    If the private key is not known by the application, you cannot export
    it into a PKCS#12

 src/ca.c | 2 ++
 1 file changed, 2 insertions(+)

commit 5be26fe2a561d28a4e83bd4c2859060648403cc9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Feb 23 21:34:32 2009 +0000

    Making uint160_write a platform_independent function. Correcting uint160_strdup_printf.

 src/uint160.c | 118 ++++++++++++++++++++++++++++++++++++----------------------
 src/uint160.h |   2 +-
 2 files changed, 74 insertions(+), 46 deletions(-)

commit 23b75ab8a12d483f4b08e2404c758cdbb185fce3
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Feb 23 18:30:45 2009 +0000

    Resolving bug about cyphered private key exports

 src/export.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e4fb4f57384641662496e7a8209f86b7b2b2541d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Feb 23 18:28:04 2009 +0000

    Resolving bug about cyphered private key exports

 src/ca.c | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

commit bcdd77074911387645d99780d1e3b923465d3406
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Feb 21 16:26:48 2009 +0000

    New method for ciphering passwords and private keys. More secure, it does not
    reutilize the same initial vector nor initial counter.
    
    Keeping compatibility with old method. New passwords and keys will be
    ciphered using the new method. It is recommended change database password,
    so all the private keys are reciphered using the new method.
    
    (Dummy upload. The actual change was in the previous commit)

 src/pkey_manage.c | 1 +
 1 file changed, 1 insertion(+)

commit c4a3f87bd9453c0b6163e40003426eaae7617d86
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Feb 21 16:23:13 2009 +0000

    Now, when a db is password-unprotected, the password entry is reset and it is not removed

 src/ca_file.c     |   2 +-
 src/pkey_manage.c | 185 ++++++++++++++++++++++++++++++++++++++++++++++--------
 2 files changed, 159 insertions(+), 28 deletions(-)

commit c52055394d58d140724888c31fbb68f6cfd9bbba
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Feb 21 14:29:05 2009 +0000

    Removing SQL syntax error

 src/ca_file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b61643272282d893303ffbb0458e8cc3e1af6a2e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Feb 14 11:01:01 2009 +0000

    Removing libgnomeui dependence

 configure.in | 1 -
 1 file changed, 1 deletion(-)

commit 8075f5cf5ff8ff81fc4334f219ec9bd853d8e9e4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Feb 10 19:22:31 2009 +0000

    Replacing ca_policy_[sg]et with ca_file_policy_[sg]et, and removing extra dependences

 src/ca-cli-callbacks.c | 63 +++++++++++++++++------------------
 src/ca_policy.c        | 90 ++++++++++++++++++++++----------------------------
 src/ca_policy.h        |  6 ----
 src/crl.c              |  3 +-
 src/new_ca_window.c    |  1 -
 src/new_cert_window.c  | 43 ++++++++++++------------
 src/new_req_window.c   |  1 -
 7 files changed, 92 insertions(+), 115 deletions(-)

commit 5c1908e02033cb550f78f3ecad53766d0703d330
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Feb 4 19:33:25 2009 +0000

    When the DB is password-unprotected, delete the property with the old password from the DB

 src/ca_file.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit e6a5326139652d1704b654ae8ed7a61da78f3548
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Feb 3 18:55:18 2009 +0000

    Fixing bug while upgrading password-protected database

 src/ca_file.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

commit bacb2b41690f6f77824ccbffa9d59700e32bb0c1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Jan 31 15:56:51 2009 +0000

    Removing table ca_properties. Adding new table db_properties, and view ca_properties for keeping backward/forward compatibility

 src/ca_file.c | 180 +++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 133 insertions(+), 47 deletions(-)

commit 397ef8b335286cc871bf00c32ac18792bf888183
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Jan 17 12:30:26 2009 +0000

    Advancing in cleaning of dependences

 src/Makefile.am       |   2 +
 src/country_table.c   | 565 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/country_table.h   |  26 +++
 src/main.c            |   4 +
 src/new_ca_window.c   | 536 +----------------------------------------------
 src/new_ca_window.h   |   3 -
 src/new_req_window.c  |  13 +-
 src/preferences-gui.c |  22 +-
 src/preferences-gui.h |   6 +
 9 files changed, 624 insertions(+), 553 deletions(-)

commit 7c0a8bd995b889e9fc587940f1302e93bb0a3eb4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Jan 16 20:31:22 2009 +0000

    Cleaning up the code a little more

 src/ca-cli-callbacks.c        | 15 +++++-----
 src/ca_creation.c             | 45 +++++++----------------------
 src/ca_creation.h             | 60 ++------------------------------------
 src/ca_file.c                 | 39 ++++++++++++-------------
 src/ca_file.h                 | 14 ++++-----
 src/creation_process_window.c |  4 +--
 src/creation_process_window.h |  6 ++--
 src/csr_creation.c            | 15 +++++-----
 src/csr_creation.h            |  4 +--
 src/import.c                  | 23 ++-------------
 src/new_ca_window.c           |  5 ++--
 src/new_cert_window.c         | 13 ++++-----
 src/new_cert_window.h         |  2 +-
 src/new_req_window.c          |  5 ++--
 src/pkey_manage.c             |  4 +--
 src/pkey_manage.h             |  2 +-
 src/tls.c                     | 36 +++++++++++++++++++----
 src/tls.h                     | 67 +++++++++++++++++++++++++++++++++++++++----
 18 files changed, 169 insertions(+), 190 deletions(-)

commit 84ed0e29dd8eb273fb4a1799e6506daba752397d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jan 14 19:44:27 2009 +0000

    Removing unneeded dependences

 src/new_cert_window.c | 1 -
 1 file changed, 1 deletion(-)

commit 79eb88ee2d3802a9f4e916d8d9bbcfaaddfb7e14
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jan 14 19:34:35 2009 +0000

    Removing dependences from ca.c

 src/ca.c                      | 197 ++++++++----------------------------------
 src/creation_process_window.c |   2 -
 src/export.c                  | 142 ++++++++++++++++++++++++++++++
 src/export.h                  |   3 +
 src/new_ca_window.c           |   1 -
 src/new_req_window.c          |   1 -
 6 files changed, 180 insertions(+), 166 deletions(-)

commit 916c1f7ec3b542c289927fb2f1f821598b3881b5
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Jan 13 20:14:05 2009 +0000

    Updating Copyright date.
    Removing dependence of ca.[ch] because of only ca_refresh_list.

 configure.in                  |  2 +-
 src/ca-cli-callbacks.c        |  2 +-
 src/ca-cli-callbacks.h        |  2 +-
 src/ca-cli.c                  |  2 +-
 src/ca-cli.h                  |  2 +-
 src/ca.c                      | 21 +++++++++++----------
 src/ca.h                      |  4 ++--
 src/ca_creation.c             |  2 +-
 src/ca_creation.h             |  2 +-
 src/ca_file.c                 |  2 +-
 src/ca_file.h                 |  2 +-
 src/ca_policy.c               |  2 +-
 src/ca_policy.h               |  2 +-
 src/certificate_properties.c  |  2 +-
 src/certificate_properties.h  |  2 +-
 src/creation_process_window.c |  8 ++++----
 src/creation_process_window.h |  2 +-
 src/crl.c                     |  2 +-
 src/crl.h                     |  2 +-
 src/csr_creation.c            |  2 +-
 src/csr_creation.h            |  2 +-
 src/csr_properties.c          |  2 +-
 src/csr_properties.h          |  2 +-
 src/dialog.c                  | 15 ++++++++++++++-
 src/dialog.h                  |  6 +++++-
 src/gnomint-cli.c             |  2 +-
 src/import.c                  |  7 +++----
 src/import.h                  |  2 +-
 src/main.c                    |  5 ++++-
 src/main.h                    |  2 +-
 src/new_ca_window.c           |  2 +-
 src/new_ca_window.h           |  2 +-
 src/new_cert_window.c         | 13 ++++++++-----
 src/new_cert_window.h         |  4 ++--
 src/new_req_window.c          |  2 +-
 src/new_req_window.h          |  2 +-
 src/pkey_manage.c             |  2 +-
 src/pkey_manage.h             |  2 +-
 src/preferences-gui.c         |  2 +-
 src/preferences-gui.h         |  2 +-
 src/preferences-window.c      |  2 +-
 src/preferences-window.h      |  2 +-
 src/preferences.c             |  2 +-
 src/preferences.h             |  2 +-
 src/tls.c                     |  2 +-
 src/tls.h                     |  2 +-
 src/uint160.c                 |  2 +-
 src/uint160.h                 |  2 +-
 48 files changed, 92 insertions(+), 69 deletions(-)

commit aa87cdefc5ae04c8232d835dbd1d5e502885b2e6
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jan 12 21:18:48 2009 +0000

    Tidying up the code a litte bit

 src/creation_process_window.c | 74 +++++++++++++++++++++----------------------
 src/creation_process_window.h | 25 +++++++--------
 2 files changed, 49 insertions(+), 50 deletions(-)

commit 5eccbb32db4c31fad6c58aa2307ea7ae12539215
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jan 12 21:15:08 2009 +0000

    Tidying up the code a litte bit

 gui/gnomint.glade     | 6 +++---
 po/POTFILES.in        | 4 +++-
 src/Makefile.am       | 4 ++--
 src/new_ca_window.c   | 4 ++--
 src/new_cert_window.c | 1 -
 src/new_req_window.c  | 4 ++--
 6 files changed, 12 insertions(+), 11 deletions(-)

commit a5b89ae98d616489838be8ba77e996580f9426a3
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jan 12 20:41:11 2009 +0000

    Renaming source file...

 src/{new_cert_creation_process.h => creation_process_window.h} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 2be80dbf1a92dff873e59dd6fd96662ae6900417
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jan 12 20:39:18 2009 +0000

    Renaming source file...

 src/{new_cert_creation_process.c => creation_process_window.c} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 0afc49fd87c250c72a42fe1039bb82605f67565f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 4 20:56:54 2009 +0000

    Uploading new translations from Launchpad

 configure.in |    2 +-
 po/cs.po     | 2111 ++++++++++++++++++++++++++++++++------
 po/de.po     | 2098 ++++++++++++++++++++++++++++++++------
 po/fr.po     | 1950 ++++++++++++++++++++++++++++++-----
 po/it.po     | 2114 ++++++++++++++++++++++++++++++++------
 po/pt_BR.po  | 3217 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sv.po     | 2188 ++++++++++++++++++++++++++++++++-------
 7 files changed, 12089 insertions(+), 1591 deletions(-)

commit 49c2d5da78359385d48b1bcc594c66932051bc76
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Jan 2 17:21:02 2009 +0000

    Refactoring some functions

 src/Makefile.am                            |  13 +-
 src/ca-callbacks.h                         |  49 -----
 src/{ca-callbacks.c => ca-cli-callbacks.c} | 314 ++++++++++++++-------------
 src/ca-cli-callbacks.h                     |  49 +++++
 src/ca-cli.c                               | 262 +++-------------------
 src/ca-cli.h                               |  31 ---
 src/ca.c                                   | 272 +++--------------------
 src/ca.h                                   |   8 -
 src/ca_file.c                              |   6 +-
 src/ca_file.h                              |   4 +-
 src/crl.c                                  |   4 +-
 src/dialog.c                               | 337 +++++++++++++++++++++++++++++
 src/dialog.h                               |  55 +++++
 src/export.c                               | 131 +++++++++++
 src/export.h                               |  31 +++
 src/import.c                               |  43 ++--
 src/new_cert_window.c                      |  15 +-
 src/pkey_manage.c                          |  16 +-
 18 files changed, 882 insertions(+), 758 deletions(-)

commit db93d07babe808df5f39684839e306b84fed1e45
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 25 22:16:57 2008 +0000

    Reverting error

 AUTHORS        |  4 +++-
 m4/intltool.m4 | 72 ++++++++++++++++------------------------------------------
 2 files changed, 22 insertions(+), 54 deletions(-)

commit 889ffd69e371bbd45242449bb420e8d0414a6b44
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 25 22:13:02 2008 +0000

    Removing files problematic while compiling in Ubuntu 8.04

 AUTHORS           |    4 +-
 m4/intltool.m4    |   72 +-
 m4/libtool.m4     | 7325 -----------------------------------------------------
 m4/ltoptions.m4   |  368 ---
 m4/ltsugar.m4     |  123 -
 m4/ltversion.m4   |   23 -
 m4/lt~obsolete.m4 |   92 -
 7 files changed, 54 insertions(+), 7953 deletions(-)

commit 547047afd4d4a024bb8baa889cb97e588f3969d9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Dec 22 10:29:02 2008 +0000

    Improving OpenSSL import. Now, it is less restrictive.

 src/import.c | 182 +++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 108 insertions(+), 74 deletions(-)

commit 35a9f061d81bd56c6d5c47bc7c558bc2fc036e4f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 18 06:39:08 2008 +0000

    Updating to version 0.9.1

 ChangeLog | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit b38471aeb99db976859ae5c648779f8da27785ad
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 18 06:38:31 2008 +0000

    Updating to version 0.9.1

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 46c63bfd7c96fbab5cc73e4eaa98bcab3aa82cb7
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 18 06:37:36 2008 +0000

    Fixing a missing include that made gnoMint to not compile over OpenSUSE.

 src/ca-callbacks.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit f5e273aa2a65a0c492fa75ae42d0694d136b1c51
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Dec 16 06:46:30 2008 +0000

    Updating changelog for 0.9.0

 ChangeLog | 8 ++++++++
 1 file changed, 8 insertions(+)

commit eaac52e7851f2c13926a2d829f047d47bb0c12c9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Dec 16 06:45:04 2008 +0000

    Getting ready for version 0.9.0.
    Spanish translation updated.
    Adding Ahmed Bazid and Staněk Luboš as authors.
    Changing method for showing AUTHORS (it was wrong).

 AUTHORS        |    2 +
 ChangeLog      |  108 +++++
 configure.in   |    5 +-
 po/es.po       | 1314 ++++++++++++++++++++++++++++++++++++++++----------------
 po/gnoMint.pot | 1166 +++++++++++++++++++++++++++++++++++--------------
 src/ca-cli.c   |    3 +-
 src/main.c     |   10 +-
 7 files changed, 1916 insertions(+), 692 deletions(-)

commit fce608f2d2be6f33c5a723585426c92511531553
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Dec 14 20:36:13 2008 +0000

    gnoMint-cli commands completed

 src/Makefile.am    |   1 +
 src/ca-callbacks.c | 143 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 143 insertions(+), 1 deletion(-)

commit ecbbd0ba5631d64b49211204e430a441cef85308
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Dec 14 10:04:49 2008 +0000

    Implemented gnomint-cli addcsr function. Only addca left\!

 src/Makefile.am    |   1 +
 src/ca-callbacks.c | 198 ++++++++++++++++++++++++++++++++++++++++++++++++-----
 src/ca-cli.c       |  50 ++++++++++++--
 src/ca-cli.h       |   1 +
 4 files changed, 226 insertions(+), 24 deletions(-)

commit 54027084d900da1f6cfe19168fff0123ad6a2c97
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Dec 13 07:55:37 2008 +0000

    Completing gnomint command line interface. Missing only addca and addcsr

 src/Makefile.am    |   1 +
 src/ca-callbacks.c | 336 ++++++++++++++++++++++++++++++++++++++++++++++++++---
 src/ca-cli.c       |   9 +-
 src/ca-cli.h       |   2 +-
 src/ca_file.c      |  54 +++++++++
 src/ca_file.h      |   6 +
 src/ca_policy.c    |   2 +-
 src/import.c       |  24 +++-
 src/tls.c          |  17 +++
 src/tls.h          |   2 +
 10 files changed, 433 insertions(+), 20 deletions(-)

commit 5055924c275800c6772602a1ca077eb100edb6ed
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Dec 12 07:59:00 2008 +0000

    Correcting string while importing whole directory.

 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d71b0bcf65a439af69c78885aec668463332632a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Dec 12 00:01:18 2008 +0000

    Adding delete, crlgen, dhgen, and changepassword

 gui/gnomint.glade               |   2 +-
 po/es.po                        | 880 +++++++++++++++++++++++++++++++++-------
 po/gnoMint.pot                  | 817 +++++++++++++++++++++++++++++++------
 src/Makefile.am                 |   3 +
 src/ca-callbacks.c              | 422 ++++++++-----------
 src/ca-cli.c                    |  24 +-
 src/ca-cli.h                    |   1 +
 src/ca.c                        | 272 +++++++------
 src/ca.h                        |  19 +-
 src/crl.c                       | 100 +++--
 src/crl.h                       |   4 +
 src/new_ca_window.h             |   5 +
 src/new_cert_creation_process.h |   3 +-
 src/new_cert_window.c           |  88 ++--
 src/new_cert_window.h           |   7 +
 src/new_req_window.h            |   3 +-
 16 files changed, 1891 insertions(+), 759 deletions(-)

commit a6b9f67f656bd81d896e1f03aa286726b57593b9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 11 13:49:37 2008 +0000

    Implementing more features in Command-Line Interface

 po/es.po           |  10 +-
 src/Makefile.am    |   1 +
 src/ca-callbacks.c | 676 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
 src/ca-cli.c       | 130 ++++++++++-
 src/ca-cli.h       |   4 +
 src/ca.c           | 100 ++++----
 src/ca_file.c      |  36 ++-
 src/ca_file.h      |  35 +++
 src/ca_policy.c    |  19 +-
 src/main.c         |   8 +-
 src/pkey_manage.c  |  83 ++++++-
 11 files changed, 1011 insertions(+), 91 deletions(-)

commit 5e38f33b3580e4f41c7baed7d9cf017c89c68998
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Dec 10 18:17:43 2008 +0000

    Upgrading GNUTLS_ADVANCED_FEATURES_MINIMUM_VERSION to 2.7.4

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4693a08557191a9c2695b81332f840f036e78a69
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Dec 5 07:46:39 2008 +0000

    Uploading support for basic file-operations in gnomint-cli

 src/ca-callbacks.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++----
 src/ca-cli.c       |  2 +-
 2 files changed, 59 insertions(+), 5 deletions(-)

commit ca25fea6bef16fc4b06436344fc1ebc96c50036e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 4 19:22:54 2008 +0000

    Uploading Spanish translation.

 po/es.po       | 367 +++++++++++++++++++++++++++++++++++++--------------------
 po/gnoMint.pot | 206 +++++++++++++++++++++-----------
 2 files changed, 382 insertions(+), 191 deletions(-)

commit a14baa17dde95b60b99dc2b66468d963ccbbf392
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Dec 4 19:22:23 2008 +0000

    Completing textual informative commands

 configure.in       |  2 ++
 src/ca-callbacks.c | 36 ++++++++++++++++++++++++----
 src/ca-cli.c       | 70 +++++++++++++++++++++++++-----------------------------
 src/gnomint-cli.c  |  2 ++
 4 files changed, 68 insertions(+), 42 deletions(-)

commit 4c2f78f9484e9e7eb355f1819b92bb951aa008cb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Dec 3 23:44:31 2008 +0000

    Completing command-line parser. Help implemented.

 po/POTFILES.in     |   3 +
 po/es.po           | 340 +++++++++++++++++++++++++++++++++++++++++---
 po/gnoMint.pot     | 312 ++++++++++++++++++++++++++++++++++++++--
 src/Makefile.am    |   5 +-
 src/ca-callbacks.c | 218 ++++++++++++++++++++++++++++
 src/ca-callbacks.h |  49 +++++++
 src/ca-cli.c       | 409 ++++++++++++++++-------------------------------------
 src/ca-cli.h       |  11 ++
 8 files changed, 1027 insertions(+), 320 deletions(-)

commit 7558ec2755cf68f529197aa5dc39af353809f54f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Dec 3 19:49:07 2008 +0000

    Improving the (buggy) parser a little bit

 src/ca-cli.c | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit 0dc98b5d78422636cdf7f925cd0d8741193f8fda
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Dec 3 19:44:08 2008 +0000

    Uploading initial (buggy) parser

 src/ca-cli.c | 151 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 137 insertions(+), 14 deletions(-)

commit 8a19876e64fae01910391c18230704ef830b1063
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Dec 3 07:27:54 2008 +0000

    Completing callbacks

 src/ca-cli.c | 184 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 184 insertions(+)

commit 87d1b89bafb9b66abeb817d6a5160500caef70e0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Dec 2 22:09:51 2008 +0000

    Adding callbacks

 doc/gnomint-cli.txt |    2 +
 m4/libtool.m4       | 7325 +++++++++++++++++++++++++++++++++++++++++++++++++++
 m4/ltoptions.m4     |  368 +++
 m4/ltsugar.m4       |  123 +
 m4/ltversion.m4     |   23 +
 m4/lt~obsolete.m4   |   92 +
 src/ca-cli.c        |   35 +-
 7 files changed, 7958 insertions(+), 10 deletions(-)

commit c52e2a9fa2c0d49b7d76cb08ef19101f02f3b653
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Dec 2 19:37:07 2008 +0000

    Added readline support

 ChangeLog                            |  16 +++++++++
 TODO                                 |  12 ++++---
 certs/example-ca-web-gnomint.gnomint | Bin 52224 -> 62464 bytes
 configure.in                         |  26 ++++++++++++++
 doc/gnomint-cli.txt                  |  68 +++++++++++++++++++++++++++++++++++
 src/Makefile.am                      |   1 +
 src/ca-cli.c                         |  55 ++++++++++++++++++++++++++++
 src/ca-cli.h                         |   2 ++
 src/gnomint-cli.c                    |   2 ++
 9 files changed, 177 insertions(+), 5 deletions(-)

commit 24712f5c26ebd0a36b609ac3d9cdb74a171748ce
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Dec 2 08:05:22 2008 +0000

    Starting command-line CA manager

 src/Makefile.am       | 41 +++++++++++++++++++++++------
 src/ca-cli.c          | 63 ++++++++++++++++++++++++++++++++++++++++++++
 src/ca-cli.h          | 58 ++++++++++++++++++++++++++++++++++++++++
 src/ca.h              |  7 +++++
 src/gnomint-cli.c     | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/pkey_manage.c     | 31 +++++++++++++++++++++-
 src/pkey_manage.h     |  6 ++---
 src/preferences-gui.c |  1 -
 src/preferences.c     |  2 +-
 9 files changed, 267 insertions(+), 15 deletions(-)

commit 6871ee614750fef8c80b74fdf46d6cf3bc3345ed
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Nov 19 18:29:22 2008 +0000

    Adding a web tutorial example

 certs/example-ca-web-gnomint.gnomint | Bin 0 -> 52224 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit f78def00e34171ad1d2c99117ce6caa2860f146e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 18 18:23:31 2008 +0000

    Upgrading to version 0.6.0

 ChangeLog      | 180 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in   |   4 +-
 m4/intltool.m4 |   3 +
 3 files changed, 185 insertions(+), 2 deletions(-)

commit 28b66e0561fc802a8b3e675ddb6e65646cd6a9fb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 18 18:22:01 2008 +0000

    Changing define for advanced gnutls (post 2.7.3) features

 src/ca_file.c | 2 +-
 src/tls.c     | 2 +-
 src/tls.h     | 3 +++
 3 files changed, 5 insertions(+), 2 deletions(-)

commit e6ed34c7b3e7dd1a385dc071febb0f47e63c70e9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 18 18:20:19 2008 +0000

    Added message for failure after trying to import unsupported directory

 src/import.c | 1 +
 1 file changed, 1 insertion(+)

commit 617454de74b631392bf8c28a0f5567a6e2561f22
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 18 17:57:05 2008 +0000

    Fixed buffer overrun while reading in uint160_read_escaped

 src/uint160.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 48dd1d28ee2f653d766092868d669d23e39265aa
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 18 17:34:39 2008 +0000

    Upgrading example database

 certs/example-ca.7.gnomint | Bin 0 -> 58368 bytes
 certs/example-ca.gnomint   | Bin 58368 -> 59392 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

commit 103e01653afa8b14985c7acf53d924951719a11c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 18 07:42:10 2008 +0000

    Updating translations. Added new German translation.

 configure.in   |    8 +-
 po/cs.po       |  832 ++++++++++++++++-----------
 po/de.po       | 1760 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es.po       |  430 ++++++++------
 po/fr.po       |  863 +++++++++++++++------------
 po/gnoMint.pot |  380 +++++++-----
 po/it.po       |  891 ++++++++++++++++------------
 po/sv.po       |  850 +++++++++++++++------------
 8 files changed, 4247 insertions(+), 1767 deletions(-)

commit ee99ef31a2393213ccbbb7118063dece6c5bdb4b
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 17 19:42:20 2008 +0000

    Fixed problem while showing serial from certificates

 TODO          | 4 +---
 src/uint160.c | 9 +++++++--
 2 files changed, 8 insertions(+), 5 deletions(-)

commit de86b705f83f079ee0ab5d7ed88214dc46e127e0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 17 19:10:07 2008 +0000

    Fixing error while loading from recent-file menu

 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ac28b277e1f70a5dbb936b1bbf0038ecf928138d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 17 19:08:57 2008 +0000

    Fixing potential future problem: a architecture-depending value was been saved in the database. Now this value is saved correctly serialized.

 src/ca_file.c | 56 ++++++++++++++++++++++++++++++++++--
 src/uint160.c | 91 +++++++++++++++++++++++++++++++++++++++++++----------------
 src/uint160.h |  1 +
 3 files changed, 122 insertions(+), 26 deletions(-)

commit ad5d35a2b93537050e848a9dcb14bb15d91a7ee1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Nov 12 19:27:36 2008 +0000

    Adding next serial import from OpenSSL

 TODO          |  7 +++--
 src/ca_file.c |  6 ++---
 src/import.c  | 20 +++++++++++++-
 src/uint160.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/uint160.h |  1 +
 5 files changed, 113 insertions(+), 7 deletions(-)

commit aec3de5f377a3a1606956b52238432688f1ef52e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 10 19:40:44 2008 +0000

    Adding new function ca_file_set_next_serial (needed while importing OpenSSL CA)

 src/ca_file.c | 27 +++++++++++++++++++++++++++
 src/ca_file.h |  1 +
 src/uint160.c | 16 ++++++++++++++++
 src/uint160.h |  1 +
 4 files changed, 45 insertions(+)

commit c183b1e3a4a37998812de75508e8f8b272a809ed
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 10 19:22:23 2008 +0000

    Now, a minimal CA configuration is inserted while importing a CA certificate. The just-inserted cert-id or csr-id is returned while importing a cert or csr

 src/ca_file.c      | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
 src/ca_file.h      |  6 ++++--
 src/csr_creation.c |  2 +-
 src/import.c       | 41 +++++++++++++++++++-------------------
 src/import.h       |  6 +++---
 src/main.c         |  2 +-
 6 files changed, 86 insertions(+), 29 deletions(-)

commit 62056c9fc7e771f13b6951ba5f4030db897e4c67
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 10 18:40:23 2008 +0000

    While importing a private key, if a password is needed, ask for it using a appropiate description

 TODO         |   1 +
 src/import.c | 104 +++++++++++++++++++++++++++++++++++++++++++++--------------
 src/import.h |   7 ++--
 src/main.c   |   2 +-
 4 files changed, 86 insertions(+), 28 deletions(-)

commit c806c685bb390237a6fb7d4a65c2568cf849a075
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 9 10:25:25 2008 +0000

    Uploading a new TODO file with release and develop planning

 TODO | 163 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 137 insertions(+), 26 deletions(-)

commit 9cda87232f204d37531bd8347657bb5f70c8958f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 8 23:36:56 2008 +0000

    Adding new functionality for importing private keys for CSRs (depends on currently missing functionality of gnutls: patch sent to upstream)

 configure.in  | 20 +++++++++++++++-----
 src/ca_file.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/tls.c     | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 src/tls.h     |  1 +
 4 files changed, 116 insertions(+), 5 deletions(-)

commit de3387d3010f7fe0164a682ba8fac4e0b9902bbb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 8 14:32:49 2008 +0000

    Removing all definitions of gettext macros. Using the definition in <glib/gi18n.h>

 src/ca_creation.c               | 5 +----
 src/ca_file.c                   | 4 +---
 src/ca_policy.c                 | 3 +--
 src/certificate_properties.c    | 3 +--
 src/crl.c                       | 3 +--
 src/csr_creation.c              | 5 +----
 src/csr_properties.c            | 6 +-----
 src/new_ca_window.c             | 3 +--
 src/new_cert_creation_process.c | 4 ++--
 src/new_cert_window.c           | 4 +---
 src/new_req_window.c            | 4 +---
 src/pkey_manage.c               | 5 +----
 src/preferences-gui.c           | 4 +---
 src/preferences-window.c        | 3 +--
 src/preferences.c               | 3 +--
 src/tls.c                       | 5 +----
 16 files changed, 17 insertions(+), 47 deletions(-)

commit 947de734ead8db35cc3297057477f103bf758600
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 8 09:36:19 2008 +0000

    OpenSSL CA importing almost complete. Now fully functional, only lacks a few checks, last serial and CSR private key importing

 src/import.c | 309 ++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 221 insertions(+), 88 deletions(-)

commit 39c91f7719d51509a0e63104bdb918fd73684f1f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 8 09:35:13 2008 +0000

    Avoiding multiple import of the same certificate

 src/ca_file.c | 43 ++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 40 insertions(+), 3 deletions(-)

commit a895b027d7a07ee034271871eeafabe282e6af6f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 8 09:05:30 2008 +0000

    Adding -O0 -g  when --enable-debug is supplied

 configure.in | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit 1652a34533980b9c8efbc880440dac0c18c6b390
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Nov 7 18:46:45 2008 +0000

    Advancing in OpenSSL CA importing: CA cert and private key (latter not working yet)

 src/import.c | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 163 insertions(+), 1 deletion(-)

commit 422ac763a31cc1efd6e7365dd74808754096ea37
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Nov 7 18:45:35 2008 +0000

    Updating translations

 po/es.po       | 428 +++++++++++++++++++++++++++++++++------------------------
 po/gnoMint.pot | 402 ++++++++++++++++++++++++++++++-----------------------
 2 files changed, 482 insertions(+), 348 deletions(-)

commit ed11d998ed969d6635f0fe8790965305008c3666
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 4 19:24:39 2008 +0000

    Starting slow progress to version 0.6.0. Distinction made between importing single files and CA directories

 gui/gnomint.glade | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ca.c          |  64 --------------------------
 src/ca.h          |   1 -
 src/import.c      |  86 +++++++++++++++++++++++++++++++++++
 src/import.h      |   3 ++
 src/main.c        | 132 +++++++++++++++++++++++++++++++++++++++---------------
 6 files changed, 313 insertions(+), 100 deletions(-)

commit 8a880796068246a6a029639c743fb2ff65d174cb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 3 19:15:19 2008 +0000

    Finished importing of PKCS#12 structures

 src/import.c | 315 ++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 206 insertions(+), 109 deletions(-)

commit 01530a7bdab4e7f4405cb21843436ab6e8f41b3a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Oct 30 19:11:02 2008 +0000

    Advancing in PKCS#12 import

 src/import.c | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 100 insertions(+), 7 deletions(-)

commit d2f695d0bdba8d5eb05849b31c3f8059bc0f3c27
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Oct 30 19:10:36 2008 +0000

    Fixing problem while export PKCS#12 files from an password-less database

 src/pkey_manage.c | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

commit f09487c80cf1672c0fe3bda008807c077bf7bda9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Oct 28 19:07:58 2008 +0000

    Finished PKCS#8 importing

 ChangeLog         |   28 +
 gui/gnomint.glade | 1800 ++++++++++++++++++++++++++++-------------------------
 src/ca.c          |   13 +-
 src/ca_file.c     |    2 +-
 src/import.c      |  342 +++++++---
 src/import.h      |   21 +-
 6 files changed, 1287 insertions(+), 919 deletions(-)

commit 3828d0550601798527c25cbe85fee159be0d8bf0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Oct 24 06:25:56 2008 +0000

    Adding gnutls test for getting errors

 certs/test-gnutls.c | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 90 insertions(+)

commit 9af8aaf5aba042db587ddc202e093e19f66f5bad
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Oct 21 17:48:33 2008 +0000

    Adding an example of an openssl-built certification authority

 certs/openssl-example/cacert.key                   |  54 ++++++++
 certs/openssl-example/cacert.pem                   |  40 ++++++
 ...kdhTmlaYUNpT246Q2lVZEFkOlByT3ZJbkNpQTpFUw==.pem |  40 ++++++
 ...kdhTmlaYUNpT246Q2lVZEFkOlByT3ZJbkNpQTpFUw==.pem |  40 ++++++
 ...3JHYU5pWmFDaU9uOkNpVWRBZDpQck92SW5DaUE6RVM=.pem |  39 ++++++
 certs/openssl-example/crl/crl.pem                  |  19 +++
 certs/openssl-example/index.txt                    |   3 +
 certs/openssl-example/index.txt.attr               |   1 +
 ...kdhTmlaYUNpT246Q2lVZEFkOlByT3ZJbkNpQTpFUw==.pem |  54 ++++++++
 ...kdhTmlaYUNpT246Q2lVZEFkOlByT3ZJbkNpQTpFUw==.pem |  54 ++++++++
 ...3JHYU5pWmFDaU9uOkNpVWRBZDpQck92SW5DaUE6RVM=.pem |  54 ++++++++
 ...3JHYU5pWmFDaU9uOkNpVWRBZDpQck92SW5DaUE6RVM=.pem |  54 ++++++++
 certs/openssl-example/newcerts/01.pem              |  40 ++++++
 certs/openssl-example/newcerts/02.pem              |  39 ++++++
 certs/openssl-example/newcerts/03.pem              |  40 ++++++
 certs/openssl-example/openssl.cnf                  | 151 +++++++++++++++++++++
 ...kdhTmlaYUNpT246Q2lVZEFkOlByT3ZJbkNpQTpFUw==.pem |  29 ++++
 ...kdhTmlaYUNpT246Q2lVZEFkOlByT3ZJbkNpQTpFUw==.pem |  29 ++++
 ...3JHYU5pWmFDaU9uOkNpVWRBZDpQck92SW5DaUE6RVM=.pem |  29 ++++
 ...3JHYU5pWmFDaU9uOkNpVWRBZDpQck92SW5DaUE6RVM=.pem |  29 ++++
 certs/openssl-example/serial                       |   1 +
 21 files changed, 839 insertions(+)

commit c2d6205232489e070304832486683a10ab3bd7c1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Oct 20 17:11:46 2008 +0000

    Added Italian translation

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c3727237331616c4efe07d61322e3110509214f4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Oct 20 17:11:06 2008 +0000

    Updating changes from Launchpad

 po/fr.po |   57 ++-
 po/it.po | 1634 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sv.po |   30 +-
 3 files changed, 1678 insertions(+), 43 deletions(-)

commit 5ac91ffa324b429969451bae1d3c0b470cd19470
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Oct 8 08:43:25 2008 +0000

    Updating files for building Debian packages

 debian/changelog                   |   6 ++
 debian/conffiles.ex                |   7 --
 debian/control                     |   6 +-
 debian/copyright                   |  30 ++++++-
 debian/cron.d.ex                   |   4 -
 debian/emacsen-install.ex          |  45 -----------
 debian/emacsen-remove.ex           |  15 ----
 debian/emacsen-startup.ex          |  19 -----
 debian/gnomint.doc-base.EX         |  22 ------
 debian/init.d.ex                   |  74 ------------------
 debian/{manpage.1.ex => manpage.1} |  26 +++----
 debian/manpage.sgml.ex             | 156 -------------------------------------
 debian/manpage.xml.ex              | 148 -----------------------------------
 debian/menu.ex                     |   2 -
 debian/postinst.ex                 |  42 ----------
 debian/postrm.ex                   |  38 ---------
 debian/preinst.ex                  |  38 ---------
 debian/prerm.ex                    |  38 ---------
 debian/rules                       |   0
 debian/watch.ex                    |  22 ------
 20 files changed, 45 insertions(+), 693 deletions(-)

commit 7f815c46ee32424390bed02b3f7dbe5875df50eb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Oct 2 18:06:10 2008 +0000

    Implemented PKCS7 importing. Cannot test, as I haven't found yet any PKCS7 file in the internet

 src/import.c | 399 ++++++++++++++++++++++++++++-------------------------------
 1 file changed, 186 insertions(+), 213 deletions(-)

commit bcef3d1575e6dcf879fdaf2d9e78657f90b9ba04
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Oct 2 17:12:59 2008 +0000

    Fixing bug that made CRL importing not work.

 src/import.c      | 2 +-
 src/pkey_manage.c | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

commit 7ab7c169e70bca0db4caa109a9c6734285cc86ee
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Oct 1 18:17:56 2008 +0000

    Updating to version 0.5.4

 ChangeLog      | 250 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in   |   2 +-
 m4/intltool.m4 |  69 ++++------------
 3 files changed, 267 insertions(+), 54 deletions(-)

commit 15d7cc7d00557623d19b2b53b549112c2eb52c16
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Oct 1 18:04:34 2008 +0000

    Beeing more verbose when having a failure when creating a CA certificate

 po/es.po                        | 214 +++++++++++++++++++++-------------------
 po/gnoMint.pot                  | 206 ++++++++++++++++++++------------------
 src/ca_creation.c               |   8 +-
 src/new_cert_creation_process.c |   3 +-
 src/tls.c                       |  12 ++-
 5 files changed, 237 insertions(+), 206 deletions(-)

commit a79b53b424263cb466d701292045020969089942
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Oct 1 18:02:28 2008 +0000

    Fixing problem with expiration time, related to UTC-localtime difference

 src/new_ca_window.c   | 2 +-
 src/new_cert_window.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 58601239eb0c2d9d14185474e902de1e0d0b0cad
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Oct 1 17:31:44 2008 +0000

    Fixing segmentation fault in some architectures, and modern compilers

 src/ca_file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f067e4b7caefaa346b51e10f373fd2cfb0202c2
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Oct 1 17:29:26 2008 +0000

    Reducing function names. Fixing warning

 src/certificate_properties.c | 114 +++++++++++++++++++++----------------------
 1 file changed, 57 insertions(+), 57 deletions(-)

commit bdbab6a1199267e3f7efcab6bb9b3ff00ac3f72c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 30 17:56:50 2008 +0000

    Advancing in CRL importing

 src/ca_file.c | 80 +++++++++++++++++++++++++++++++++++++++++++++---
 src/ca_file.h |  7 +++--
 src/import.c  | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 3 files changed, 175 insertions(+), 9 deletions(-)

commit 42b0e5bb54fbb2d1dd2c14f87ada9271d80744ed
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 30 06:37:57 2008 +0000

    Finished import of uncrypted private keys

 src/ca_file.c | 74 +++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 44 insertions(+), 30 deletions(-)

commit c301c2272d920688dc0d2ee73a0fdb7d51192939
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 29 17:43:41 2008 +0000

    Advancing in private key import

 src/ca_file.c | 48 ++++++++++++++++++++++++++++++++
 src/ca_file.h |  2 ++
 src/import.c  | 53 ++++++++++++++++++++++++++++++++++-
 src/tls.c     | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/tls.h     |  2 ++
 5 files changed, 193 insertions(+), 1 deletion(-)

commit 2ef86211fc96e19cb5c11cb3169156b63ba90eb5
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 29 16:47:29 2008 +0000

    Adding graphic files. Completing svnignore

 gui/gnomint14x14.png   | Bin 0 -> 755 bytes
 gui/gnomint192x192.png | Bin 0 -> 9493 bytes
 gui/gnomint64x64.png   | Bin 0 -> 5208 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

commit 1695491d4c74f139b63625a145c2cd3f87a88bc4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 26 14:51:52 2008 +0000

    Certificate import finished

 src/ca.c      |  1 +
 src/ca_file.c | 45 ++++++++++++++++++++++++++++++++++-----------
 src/import.c  |  9 +++++++--
 3 files changed, 42 insertions(+), 13 deletions(-)

commit 56135514c79733127ffe7ccb73b09b790369ac54
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 26 06:11:59 2008 +0000

    Advancing in certificate import

 src/ca.c      |   2 +-
 src/ca_file.c | 258 ++++++++++++++++++++++++++++------------------------------
 src/import.c  |   8 +-
 src/tls.c     |  76 +++++++++++++----
 src/tls.h     |   3 +
 src/uint160.c |   6 +-
 src/uint160.h |   6 +-
 7 files changed, 196 insertions(+), 163 deletions(-)

commit 82f4d32b49debef308be205a1a50adea5b72711a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 25 06:30:01 2008 +0000

    If the signing CA has not subject key identifier extension, don't
    generate issuer key identifier extension. If it has, use it to
    generate issuer key identifier extension, instead of forging a new
    issuer key id with the gnutls method (that could be distinct from the
    one in the extension)

 src/tls.c | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

commit 4f9c9ac354a9eed0bebdfaca2a3c823682673803
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Sep 24 18:19:14 2008 +0000

    Database now ready for importing hierarchies of certificates

 src/ca_file.c | 282 ++++++++++++++++++++++++++++++++++++----------------------
 src/ca_file.h |   2 -
 2 files changed, 178 insertions(+), 106 deletions(-)

commit fbdbcc981fe561ee4d4f293a0cf002ccef8c51ad
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Sep 24 06:56:27 2008 +0000

    Adding po template

 po/gnoMint.pot | 1617 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1617 insertions(+)

commit f5f8c486a5f5a6aaabed52cf865b20f16d3c2282
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Sep 24 06:54:46 2008 +0000

    Upgrading translations from Launchpad. Added language sv.

 configure.in |    2 +-
 po/cs.po     |  840 +++++++++++++++++-------------
 po/es.po     |  778 +++++++++++++++-------------
 po/fr.po     | 1258 ++++++++++++++++++++++++++++++++-------------
 po/sv.po     | 1621 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 3414 insertions(+), 1085 deletions(-)

commit e999c01cd75ac269e9e73daa77cab629bc91906a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 23 18:25:34 2008 +0000

    Keeping subject_key_id in certificate database. Some errors with NULL values: still not finished.

 src/ca.c      | 33 ++++++++++++++++-----
 src/ca_file.c | 92 +++++++++++++++++++++++++++++++++++++++++++++++------------
 src/import.c  | 47 +++++++-----------------------
 src/import.h  | 12 ++++----
 src/tls.c     | 31 ++++++++++++++++++++
 src/tls.h     |  3 ++
 6 files changed, 149 insertions(+), 69 deletions(-)

commit 08e74d7e643dfc4896ec9f30d27aff4784789d15
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 19 17:58:27 2008 +0000

    Fixing error: only the first certificate in database could sign CSRs
    in password-protected databases.

 src/new_cert_window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 923d8bc57e49e6d33014c28d73164764a7b165a7
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 19 06:27:00 2008 +0000

    Another batch of configure changes, thanks to Staněk Luboš

 Makefile.am       |   5 +--
 configure.in      | 122 ++++++++++++++++++++----------------------------------
 gconf/Makefile.am |   2 -
 src/Makefile.am   |   3 --
 4 files changed, 46 insertions(+), 86 deletions(-)

commit d27e92bd61af0ea97d1691f6664e5c796ecb1fda
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 19 06:23:10 2008 +0000

    Starting support for importing certificates

 po/POTFILES.in  |   6 +
 src/Makefile.am |   6 +-
 src/ca.c        | 114 +++----------------
 src/ca_file.c   | 151 ++++++++++++++++++++++++-
 src/ca_file.h   |   7 +-
 src/import.c    | 333 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/import.h    |  33 ++++++
 7 files changed, 549 insertions(+), 101 deletions(-)

commit 3f88ad541b8adfd6c3cfa0e124067719084a6628
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 19 06:06:17 2008 +0000

    Fixing segmentation fault when the CSR or the CA cert have NULL fields

 src/new_cert_window.c | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)

commit 6a620be4c0a1587f0519ebf30e8b5d15d69b650b
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 18 18:27:44 2008 +0000

    Making compliant to RFC5280: now authority key identifier and subject
    key identifiers are set properly

 src/tls.c | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

commit a40ff401c54347d17f8aa71da98b47bb45ad573f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Sep 17 06:46:34 2008 +0000

    Now the CA used when inheriting fields for a CSR is remembered, and used as default when signing it.

 src/ca.c              |  2 --
 src/ca_file.c         |  5 +++--
 src/new_cert_window.c | 49 +++++++++++++++++++++++++++++++++++++++++++------
 3 files changed, 46 insertions(+), 10 deletions(-)

commit 6d7860078071b2879ff0e9c53e68f9239ec800bc
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 16 18:18:10 2008 +0000

    First steps for saving the CA used for generating CSRs, so it will be the default while signing the CSRs

 src/ca.c              | 36 ++++++++++++++++++++++--------------
 src/ca_creation.c     |  2 ++
 src/ca_creation.h     |  3 ++-
 src/ca_file.c         | 39 +++++++++++++++++++++++++++++++--------
 src/new_cert_window.c |  9 ++++++++-
 src/new_cert_window.h |  3 +--
 src/new_req_window.c  | 33 ++++++++++++++++++++-------------
 7 files changed, 86 insertions(+), 39 deletions(-)

commit d4aafb5828d1386517234615716c4eb9b7a1af40
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 16 18:17:01 2008 +0000

    Finishing implementation of dependences between certificate uses and certificate purposes

 gui/gnomint.glade | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 612839e0f90c1b9e933b0c24eb96a2fe7128bee0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 16 18:08:18 2008 +0000

    Fixing configure.in and src/Makefile.am:
    * fixes AM_INIT_AUTOMAKE
    * adds some test discovered by autoscan
    * removes wrong gnutls and libsqlite test
    * defines required versions of particular libraries
    * adds proper gnutls and sqlite test including appropriate CFLAGS and LIBS, exports this info for use in Makefile
    * removes installations dirs, they are defined the standard way
    * modifies the summary output
    * removes second compiler flags from Makefile.am
    
    Thanks to Staněk Luboš <lubek@users.sourceforge.net> for the patch

 configure.in    | 129 ++++++++++++++++++++++++++++++--------------------------
 src/Makefile.am |  10 ++++-
 2 files changed, 78 insertions(+), 61 deletions(-)

commit 10c303b2f74e81d13c294f954eea2b80e9a4ed7e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 16 16:53:28 2008 +0000

    Finishing implementation of dependences between certificate uses and certificate purposes

 src/new_cert_window.c | 215 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/new_cert_window.h |   3 +
 2 files changed, 218 insertions(+)

commit a6483184d94307d0a6a0b16c1efcc6113c74f113
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 16 06:45:44 2008 +0000

    Progress in uses-purposes dependencies. CA properties window finished. New cert window pending.

 src/ca_policy.c | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 123 insertions(+), 7 deletions(-)

commit 9082f32524f84da17f4c62fa3782409bb810a11e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 15 18:20:05 2008 +0000

    Starting to implement dependences between certificate purposes and uses

 src/ca_policy.c | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 87 insertions(+), 9 deletions(-)

commit 8d1133db8c28d73b53718b4f2a9994d5476373ff
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 15 17:50:43 2008 +0000

    Fixing bug #2100270. Now it is possible to generate CRLs for all the CAs in the hierarchy

 gui/gnomint.glade | 1739 ++++++++++++++++++++++++++++-------------------------
 src/Makefile.am   |    2 +
 src/ca.c          |  145 +----
 src/ca.h          |    4 +-
 src/ca_file.c     |    4 +-
 src/ca_file.h     |    2 +-
 src/crl.c         |  383 ++++++++++++
 src/crl.h         |   28 +
 8 files changed, 1338 insertions(+), 969 deletions(-)

commit 6eadf5c7e399f496b65ba6c6cd1c05fac9a83e5d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 12 10:23:35 2008 +0000

    Uploading forgotten main.h

 src/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit f75d5a62c6ed5bae867545213019e01337bbf404
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Sep 12 10:22:23 2008 +0000

    Uploading forgotten main.h

 src/main.h | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

commit 3f25c7bf0abcf90a7c306501ac70cd3c9615e245
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 11 17:31:05 2008 +0000

    Updating src/, so now it compiles with the new default compilation options

 src/ca.c                        | 50 +++++++++++++++++++---
 src/ca.h                        | 42 +++++++++++++++---
 src/ca_creation.h               |  2 +
 src/ca_file.c                   | 68 +++++++++++++++++------------
 src/ca_policy.c                 |  3 ++
 src/ca_policy.h                 |  4 ++
 src/certificate_properties.c    | 95 +++++++++++++++++++++++++++++------------
 src/certificate_properties.h    |  1 +
 src/csr_creation.h              |  1 +
 src/csr_properties.c            |  2 +-
 src/csr_properties.h            |  2 +
 src/main.c                      | 14 ++++--
 src/new_ca_window.c             |  4 +-
 src/new_ca_window.h             | 23 +++++++++-
 src/new_cert_creation_process.c |  6 ++-
 src/new_cert_creation_process.h | 10 +++++
 src/new_cert_window.c           |  6 ++-
 src/new_cert_window.h           | 17 +++++++-
 src/new_req_window.c            | 12 +++++-
 src/new_req_window.h            | 19 +++++++++
 src/pkey_manage.c               | 28 +++++++-----
 src/pkey_manage.h               |  7 +++
 src/preferences-gui.h           |  7 +++
 src/preferences-window.c        |  2 +-
 src/preferences-window.h        |  2 +
 25 files changed, 334 insertions(+), 93 deletions(-)

commit 6f77664d57b1cb223a687a428471e519c7c1cf5a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 11 16:24:30 2008 +0000

    Standarizing name of the project: it's gnoMint, not Gnomint

 README     |  2 +-
 TODO       | 20 ++++++++++----------
 autogen.sh |  4 ++--
 3 files changed, 13 insertions(+), 13 deletions(-)

commit cfa61731712d9c7836b024a1d3e05cf659b68eac
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 11 16:20:07 2008 +0000

    Patch for improving standard compliance

 src/ca.h                        |  8 ++++----
 src/ca_creation.h               | 10 +++++-----
 src/ca_file.c                   |  4 ++++
 src/ca_file.h                   | 10 +++++-----
 src/ca_policy.c                 |  1 +
 src/certificate_properties.c    |  1 +
 src/csr_creation.h              |  8 ++++----
 src/csr_properties.c            |  1 +
 src/new_ca_window.h             |  2 +-
 src/new_cert_creation_process.c |  1 +
 src/new_cert_window.c           |  1 +
 src/new_req_window.c            |  1 +
 src/new_req_window.h            |  2 +-
 src/pkey_manage.h               |  2 +-
 src/preferences-gui.c           |  1 +
 src/preferences-gui.h           | 16 ++++++++--------
 src/preferences-window.c        |  1 +
 src/preferences-window.h        |  2 +-
 src/preferences.c               |  1 +
 src/preferences.h               |  4 ++--
 src/tls.h                       |  2 +-
 src/uint160.h                   |  2 +-
 22 files changed, 47 insertions(+), 34 deletions(-)

commit 07e7bea6e254832492d4ec3197a3b1e25b19b508
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 11 06:33:02 2008 +0000

    Fixing problem with permissions of a just created file. Now created in 0600 mode.
    Fixing problem with certificates insertion into the database inserted in last commit

 src/ca_file.c | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

commit 449712edf4594b6bea35fbd3cb7e9c1b54565194
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Sep 11 06:30:56 2008 +0000

    Removing deprecated functions. Patch by Staněk Luboš

 src/ca_policy.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit 3250a6e2138793a1878eeb11af6effb7150723ef
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 9 07:14:57 2008 +0000

    Fixing CRL problem: now, expired certificates appear only in the first CRL released after the expiration date, according to RFC 5280 (page 13)

 certs/example-ca.6.gnomint | Bin 0 -> 43008 bytes
 certs/example-ca.gnomint   | Bin 58368 -> 58368 bytes
 src/ca.c                   |  18 +++++-----
 src/ca_file.c              |  83 +++++++++++++++++++++++++++++++++++++++------
 src/ca_file.h              |   2 +-
 5 files changed, 83 insertions(+), 20 deletions(-)

commit 119fdbb6f61bb1bcdc27aa6a13eb1f9d8e6ca3f4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 9 06:58:49 2008 +0000

    Adding missing file in subversion repository

 m4/Makefile.am | 9 +++++++++
 1 file changed, 9 insertions(+)

commit ca5def738929fbfc4e3f6f3fe2932b906d88828b
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 8 15:31:15 2008 +0000

    Updating version to 0.5.3

 ChangeLog    | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |  4 ++--
 2 files changed, 71 insertions(+), 2 deletions(-)

commit beba303b6a7f4a364561783200236e3ee7b29fb1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 8 14:41:27 2008 +0000

    Now exporting full certificate path when exporting public PEM

 certs/example-ca.gnomint | Bin 43008 -> 58368 bytes
 src/ca.c                 |  95 +++++++++++++++++++++++++++++++----------------
 src/ca_file.c            |   6 ++-
 3 files changed, 66 insertions(+), 35 deletions(-)

commit 09d413ea69202dce06676820ca5df37a2c13cd23
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Sep 6 16:34:00 2008 +0000

    Fixing problem with m4 macros. Patch by Staněk Luboš.

 Makefile.am     |  11 +-
 configure.in    |   1 +
 m4/codeset.m4   |  21 ++++
 m4/gettext.m4   | 381 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 m4/glibc21.m4   |  30 +++++
 m4/iconv.m4     | 180 ++++++++++++++++++++++++++
 m4/intltool.m4  | 234 ++++++++++++++++++++++++++++++++++
 m4/isc-posix.m4 |  24 ++++
 m4/lcmessage.m4 |  30 +++++
 m4/progtest.m4  |  92 ++++++++++++++
 10 files changed, 1001 insertions(+), 3 deletions(-)

commit b7e5acbba152b4352a5764914e6e5e6d3efbe71a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Sep 6 16:31:32 2008 +0000

    Enabling the generation of DH parameters from gnoMint

 gui/gnomint.glade | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 116 insertions(+), 1 deletion(-)

commit 5f73a9f2429aa06c863c1572dbb9f54910a00370
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Sep 6 10:20:19 2008 +0000

    Updating Spanish translation

 po/POTFILES.in |   1 +
 po/es.po       | 320 ++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 182 insertions(+), 139 deletions(-)

commit c8752d0f67837a677c77d64910723e21577e87a9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Sep 6 10:04:11 2008 +0000

    Enabling the generation of DH parameters from gnoMint

 src/ca.c  | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/tls.c | 30 ++++++++++++++++++++++
 src/tls.h |  2 ++
 3 files changed, 119 insertions(+)

commit fc0d983e05d14ffcf392bb4a0c6469fa6386bcf8
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Sep 6 06:50:55 2008 +0000

    Fixing segmentation fault introduced in revision 165

 src/ca_file.c | 36 +++++++++++++++++-------------------
 1 file changed, 17 insertions(+), 19 deletions(-)

commit 3f8c86c6fc6baf3f8ce2310936c3fe7d83f1f715
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 2 18:27:14 2008 +0000

    Updating Spanish translation

 po/es.po | 477 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 266 insertions(+), 211 deletions(-)

commit b0344169cdabc37747229fafc8e99779ac75559d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 2 18:21:26 2008 +0000

    Correcting little problem with previous patch. Thanks again to Staněk Luboš <lubek@users.sourceforge.net>

 mime/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3e6f92e7478c6aa8bd581610df83e6a4ab351ce1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 2 18:19:26 2008 +0000

    Applying patch for fixing i18n, and Czech translation. Thanks to Staněk Luboš <lubek@users.sourceforge.net>

 INSTALL                                      |  236 ++++
 Makefile.am                                  |    4 +-
 configure.in                                 |   18 +-
 gconf/Makefile.am                            |   17 +-
 gconf/{gnomint.schema => gnomint.schemas.in} |    2 +-
 gui/Makefile.am                              |   14 +-
 gui/{gnomint.desktop => gnomint.desktop.in}  |    5 +-
 mime/Makefile.am                             |   12 +-
 mime/{gnomint.xml => gnomint.xml.in}         |    0
 po/POTFILES.in                               |    6 +-
 po/cs.po                                     | 1511 ++++++++++++++++++++++++++
 src/ca_file.c                                |    4 -
 12 files changed, 1791 insertions(+), 38 deletions(-)

commit cc4ecca5fa571f7b35bfc0fcc2930adb1f849f5e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 2 18:08:10 2008 +0000

    Fixing problem while generating DSA-keyed CSRs

 gui/gnomint.glade | 1645 +++++++++++++++++++++++++++--------------------------
 1 file changed, 823 insertions(+), 822 deletions(-)

commit 04d8f9dc281d33642e79474fcefddd54959e84ec
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Sep 2 17:33:47 2008 +0000

    Fixing tracker request #2075599. Now the order of lists and trees is OK when more than 10 certs

 src/ca_file.c | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 121 insertions(+), 11 deletions(-)

commit b07f5851596e8d0f356bc78b7edae9308d281950
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Sep 1 16:43:20 2008 +0000

    Updating version to 0.5.2

 ChangeLog    | 27 +++++++++++++++++++++++++++
 configure.in |  4 ++--
 2 files changed, 29 insertions(+), 2 deletions(-)

commit c82186a08152c55257220a11fe546f01b6eb9cd9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 28 17:47:32 2008 +0000

    New preference for exporting just created certificates to gnome-keyring-manager. Closes bug #1842705

 gconf/Makefile.am        |    1 +
 gui/gnomint.glade        | 1652 +++++++++++++++++++++++-----------------------
 src/Makefile.am          |    2 +
 src/main.c               |    3 +-
 src/new_cert_window.c    |   28 +
 src/preferences-window.c |   73 ++
 src/preferences-window.h |   25 +
 7 files changed, 958 insertions(+), 826 deletions(-)

commit 37d7504842f4be9329eedd886c973e505e989600
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Aug 27 18:07:17 2008 +0000

    Adding gconf support for saving some preferences, as view preferences, window size. Adding preferences window

 Makefile.am           |    2 +-
 configure.in          |   14 +
 gconf/Makefile.am     |   23 +
 gconf/gnomint.schema  |   58 ++
 gui/gnomint.glade     | 2724 +++++++++++++++++--------------------------------
 src/Makefile.am       |   13 +-
 src/ca.c              |   47 +-
 src/ca.h              |    4 +
 src/main.c            |   38 +
 src/preferences-gui.c |  122 +++
 src/preferences-gui.h |   40 +
 src/preferences.c     |   53 +
 src/preferences.h     |   31 +
 13 files changed, 1355 insertions(+), 1814 deletions(-)

commit 7a7fef2bf5b033dcd638e09b9b788bcd8846c943
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 13:23:49 2008 +0000

    Updating Spanish translation

 po/es.po | 269 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 137 insertions(+), 132 deletions(-)

commit 7745d27dd783a5f69efabcf3289ce3e18ce40ba3
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 13:09:21 2008 +0000

    Updating changelog and adding update-svncl.sh for version 0.5.1

 ChangeLog       | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 update-svncl.sh |  3 +++
 2 files changed, 68 insertions(+)

commit 218bf5862a9db77794dbd092f6b795101f48d5f7
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 13:01:27 2008 +0000

    Upgrading to version 0.5.1

 configure.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7fbe6416ef2ad8bcd26f0b97709b09fe77b10620
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 13:00:37 2008 +0000

    Updating example CA for being valid against version 0.5.x

 certs/example-ca.gnomint | Bin 50176 -> 43008 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 7f5995c14aadb39561d076f3321e10a46e32b197
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 11:09:36 2008 +0000

    Fixing problem when creating a new CSR that must import field values from CA

 src/new_req_window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5f7e75abf099d6f7c6fa55cb2dbe486807dbdb31
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 10:59:49 2008 +0000

    Fixing bug that made impossible to change the policy of a CA

 src/ca_policy.c | 38 +++++++++++++++++---------------------
 1 file changed, 17 insertions(+), 21 deletions(-)

commit e343ead451fabda42db4ec9dd4789f9c533fb1cb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 10:59:09 2008 +0000

    Removing some warnings due to gui changes

 src/ca.c | 7 -------
 1 file changed, 7 deletions(-)

commit 7a816031e019222aebf2e306c92041bf7adbd16f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 23 10:13:07 2008 +0000

    Adding support for recent files

 configure.in      |    2 +-
 gui/gnomint.glade | 1845 +++++++++++++++++++++++++++--------------------------
 src/main.c        |  154 ++++-
 3 files changed, 1073 insertions(+), 928 deletions(-)

commit c2f983db661b664300ad8645d63d80e3dcf96656
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 21 16:26:01 2008 +0000

    Correcting date in version 0.5.0

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1bcc7c4fa231febf02d7f9865a2de53a329079a1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 21 16:13:36 2008 +0000

    Updating to version 0.5.0

 ChangeLog    | 219 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 configure.in |   4 +-
 2 files changed, 217 insertions(+), 6 deletions(-)

commit 0538b4ed567b9cffe2d9515370e05b5e2a60b612
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 21 15:46:47 2008 +0000

    Fixing problem while signing CSRs which private key resides in an external file. The file was lost. Now the file info is kept while moving info from CSR to Certificate

 src/ca_file.c         | 10 ++++++----
 src/ca_file.h         |  3 ++-
 src/new_cert_window.c |  6 +++---
 src/pkey_manage.c     |  8 +++++---
 4 files changed, 16 insertions(+), 11 deletions(-)

commit 1e3f63177309fb14b8666c0886d4e0a8b92fc0a5
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Aug 20 18:12:32 2008 +0000

    Allowing the creation of new databases.
    Fixing problems while creating CSRs or s-s CAs, if the DB is pwd-protected, and the user cancels the password-entry window.
    Fixing some minor problems in Spanish translation.

 gui/gnomint.glade    |  10 +--
 po/es.po             | 206 +++++++++++++++++++++++++++++----------------------
 src/main.c           |  75 ++++++++++++++++++-
 src/new_ca_window.c  |  13 +++-
 src/new_req_window.c |  12 ++-
 5 files changed, 215 insertions(+), 101 deletions(-)

commit 8b8f3f7628eccb977a0aa67e078df8695c9d2d3a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Aug 20 16:40:52 2008 +0000

    Fixed problem with serial number assignation when creating a new database (not importing an old one)

 src/ca_creation.c |  1 +
 src/ca_file.c     | 20 +++++++++++++-------
 src/ca_file.h     |  2 +-
 src/tls.c         |  5 +++++
 4 files changed, 20 insertions(+), 8 deletions(-)

commit 886760b2bbeed07cb949c746ed1b56eaaf79c010
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Aug 19 18:39:08 2008 +0000

    Fixed problems related with DB password protection

 gui/gnomint.glade               | 1855 +++++++++++++++++++--------------------
 src/ca_creation.h               |    9 +-
 src/ca_file.c                   |    2 -
 src/new_ca_window.c             |   27 +-
 src/new_cert_creation_process.c |   24 -
 src/pkey_manage.c               |   10 +-
 src/uint160.c                   |    7 +
 7 files changed, 952 insertions(+), 982 deletions(-)

commit c28d5173580632c2d053ae828b8957359b8d9136
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Aug 18 18:08:16 2008 +0000

    Making possible to generate multiple rooted files, so now a file is not tied to a self-signed certificate.
    Now, gnoMint open ~/.gnomint/default.gnomint by default.
    Some problems need to be fixed yet.

 configure.in                    |   1 +
 gui/gnomint.glade               | 204 ++++++--------
 po/es.po                        | 574 +++++++++++++++++++++++-----------------
 src/ca.c                        |   4 +-
 src/ca.h                        |   2 +-
 src/ca_creation.c               |   6 +-
 src/ca_file.c                   | 292 ++++++++++----------
 src/ca_file.h                   |  16 +-
 src/main.c                      |  19 +-
 src/new_cert_creation_process.c |  67 ++---
 10 files changed, 609 insertions(+), 576 deletions(-)

commit 5cfd57b2011aa7280f4da66d417c318083ecf845
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Aug 18 17:14:10 2008 +0000

    Adding mimetype and desktop file

 Makefile.am         |  2 +-
 gui/Makefile.am     |  9 +++++++--
 gui/gnomint.desktop | 11 +++++++++++
 mime/Makefile.am    |  7 +++++++
 mime/gnomint.xml    |  8 ++++++++
 5 files changed, 34 insertions(+), 3 deletions(-)

commit 45b78dc26128ca87c5edb493bca6fac1e760be43
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 7 21:53:37 2008 +0000

    Fixing problems with the new 20-byte serial numbers. Now it seems OK, but more test must be taken

 src/Makefile.am       |   2 +-
 src/ca_file.c         | 126 ++++++++++++++++++++++++++++++--------------------
 src/ca_file.h         |   4 +-
 src/new_cert_window.c |   3 +-
 src/tls.c             |  10 +++-
 src/uint160.c         |  21 +++++----
 6 files changed, 102 insertions(+), 64 deletions(-)

commit c4961b993e1737b3812b5497f4e84c0ca0db3a38
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 7 18:17:41 2008 +0000

    Fixing uint160_read function

 src/uint160.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 82941de785fc685cdf30ed65c3cd6a03d1bb877b
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Aug 7 18:13:20 2008 +0000

    Highly unstable commit: working in natively support 20byte-serials

 certs/example-ca.gnomint     | Bin 46080 -> 50176 bytes
 src/Makefile.am              |   5 +-
 src/ca.c                     |  58 ++++---------
 src/ca.h                     |   5 --
 src/ca_creation.h            |   3 +-
 src/ca_file.c                | 190 ++++++++++++++++++++++++++++++++-----------
 src/ca_file.h                |   4 +-
 src/certificate_properties.c |  28 +++----
 src/certificate_properties.h |   2 +-
 src/new_cert_window.c        |   6 +-
 src/new_req_window.c         |   6 +-
 src/tls.c                    |  34 ++++----
 src/tls.h                    |   3 +-
 src/uint160.c                |  93 +++++++++++++++++++--
 src/uint160.h                |   5 ++
 15 files changed, 298 insertions(+), 144 deletions(-)

commit 2970fe3b3c438d951af67b08ca589acf02429ad8
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Aug 6 16:44:06 2008 +0000

    Fixing date in header of files

 src/Makefile.am                 | 12 +++++++++---
 src/ca.c                        |  2 +-
 src/ca.h                        |  2 +-
 src/ca_creation.c               |  2 +-
 src/ca_creation.h               |  2 +-
 src/ca_file.c                   |  2 +-
 src/ca_file.h                   |  2 +-
 src/ca_policy.c                 |  2 +-
 src/ca_policy.h                 |  2 +-
 src/certificate_properties.c    |  2 +-
 src/certificate_properties.h    |  2 +-
 src/csr_creation.c              |  2 +-
 src/csr_creation.h              |  2 +-
 src/csr_properties.c            |  2 +-
 src/csr_properties.h            |  2 +-
 src/main.c                      |  2 +-
 src/new_ca_window.c             |  2 +-
 src/new_ca_window.h             |  2 +-
 src/new_cert_creation_process.c |  2 +-
 src/new_cert_creation_process.h |  2 +-
 src/new_cert_window.c           |  2 +-
 src/new_cert_window.h           |  2 +-
 src/new_req_window.c            |  2 +-
 src/new_req_window.h            |  2 +-
 src/pkey_manage.c               |  2 +-
 src/pkey_manage.h               |  2 +-
 src/tls.c                       |  2 +-
 src/tls.h                       |  2 +-
 src/uint160.c                   |  2 +-
 src/uint160.h                   |  2 +-
 30 files changed, 38 insertions(+), 32 deletions(-)

commit c322bb8d59bc355f5c8acb5cd0d92af4eeb55a63
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Aug 6 15:50:23 2008 +0000

    Adding new class for managing 160-bit (20 octets)

 src/uint160.c | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/uint160.h |  45 ++++++++++++++++
 2 files changed, 209 insertions(+)

commit 60c9565de45ec5fc29ff246fb4d5448f8559e169
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Aug 5 17:54:01 2008 +0000

    Fixing problems with assigned serial numbers if there are multiple CAs

 src/ca_file.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit a621ea6270d5d35b2d6ac35ee7508af7fe4580a0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Aug 5 16:23:14 2008 +0000

    Now you can create a full hierarchy of Certification Authorities and their certificates

 certs/example-ca.gnomint | Bin 41984 -> 46080 bytes
 gui/gnomint.glade        |   3 +
 src/ca.c                 |   3 -
 src/new_cert_window.c    | 336 +++++++++++++++++++++++++++++++++++++----------
 src/new_req_window.c     |  11 ++
 5 files changed, 284 insertions(+), 69 deletions(-)

commit 8c08b9cabdce8238a523cec13e89b1b67ca2a7e2
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Aug 4 21:13:58 2008 +0000

    Autofilling of CSR fields. And now showing a full hierarchy of certificates.

 certs/example-ca.gnomint | Bin 29696 -> 41984 bytes
 src/ca.c                 | 102 ++++++++++++++++++++++++++++++++++++-----------
 src/ca_file.c            |   9 +++--
 src/new_req_window.c     |  63 ++++++++++++++++++-----------
 4 files changed, 124 insertions(+), 50 deletions(-)

commit 958c704435e972bd7994948b5d18a8b06601234f
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Aug 4 18:17:40 2008 +0000

    Progressing in changes for inheriting values from CA subject

 certs/example-ca.gnomint |  Bin 29696 -> 29696 bytes
 configure.in             |    2 +-
 gui/gnomint.glade        | 1834 +++++++++++++++++++++++-----------------------
 src/ca.c                 |    5 +
 src/ca_file.c            |    6 +-
 src/ca_file.h            |    2 +-
 src/ca_policy.c          |    3 +-
 src/new_cert_window.c    |    5 +-
 src/new_req_window.c     |  178 +++--
 9 files changed, 1065 insertions(+), 970 deletions(-)

commit 64d36e4a3c46fa2b617ff7013b6a112593dd6307
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Aug 4 04:33:59 2008 +0000

    Committing changes, so now the CA tree is shown correctly while creating a CSR

 gui/gnomint.glade    | 1838 +++++++++++++++++++++++++-------------------------
 src/ca.c             |    6 +-
 src/ca.h             |    6 +
 src/ca_file.c        |    2 +-
 src/new_req_window.c |   71 +-
 5 files changed, 993 insertions(+), 930 deletions(-)

commit 2c5c4cf754a0de6a9a6600e7fdb2e75e27020e12
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Aug 2 12:01:49 2008 +0000

    Completing data model of the CA view

 certs/example-ca.gnomint | Bin 27648 -> 29696 bytes
 src/ca.c                 |   2 +-
 src/ca_file.c            |  27 ++++++------
 src/ca_file.h            |   2 +-
 src/new_req_window.c     | 106 +++++++++++++++++++++++++++++++++--------------
 src/tls.c                |   2 +-
 6 files changed, 91 insertions(+), 48 deletions(-)

commit c580c89b7b54dd3c579c16d8e8ac1b358671c286
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Aug 1 15:23:28 2008 +0000

    Adding new sqlite function for concatening values, so we can get a tree-ordered list of certificates directly from a SQL sentence

 src/ca_file.c | 102 +++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 79 insertions(+), 23 deletions(-)

commit a23e42c41a6a1e2a0c28e3f54152ffdc58c5f1ce
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Aug 1 15:22:29 2008 +0000

    Commenting unfinished code, so it now compiles again

 src/new_req_window.c | 48 ++++++++++++++++++++++++------------------------
 1 file changed, 24 insertions(+), 24 deletions(-)

commit 564a51c4c3cb56fe08e877a0e84a34c5b6af547d
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Aug 1 04:34:00 2008 +0000

    Commiting yesterday changes. Working on showing a hierarchical view of the CAs in DB

 gui/gnomint.glade     |  82 ++---
 src/Makefile.am       |   4 +
 src/ca.c              |   4 +-
 src/ca_file.c         | 102 +++++-
 src/ca_file.h         |   1 +
 src/main.c            |   6 +-
 src/new_ca_window.c   | 819 +++++++++++++++++++++++++++++++++++++++++++
 src/new_ca_window.h   |  27 ++
 src/new_cert_window.c | 938 --------------------------------------------------
 src/new_cert_window.h |   4 -
 src/new_req_window.c  | 264 ++++++++++++++
 src/new_req_window.h  |  26 ++
 12 files changed, 1281 insertions(+), 996 deletions(-)

commit 4bc36cfa34343544cc22654a51afb0a1186edbe4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jul 30 21:00:49 2008 +0000

    Updating today's changes: improving translations and fixing the database version leap

 certs/example-ca.5.gnomint   | Bin 0 -> 22528 bytes
 certs/example-ca.gnomint     | Bin 19456 -> 27648 bytes
 src/ca_file.c                |  85 ++++++++++++++++------
 src/certificate_properties.c | 168 +++++++++++++++++++++++++------------------
 4 files changed, 164 insertions(+), 89 deletions(-)

commit eac64093f4ba72f2f010cf150b08ca7490ed6e9e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jul 30 17:55:55 2008 +0000

    Updating Spanish translation

 po/es.po | 645 +++++++++++++++++++++++++++++++++++++++++++++++----------------
 1 file changed, 487 insertions(+), 158 deletions(-)

commit 030ac2da9c9a818f5deaf396e86f3261f8063ce3
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Jul 30 17:14:02 2008 +0000

    Adding example ca file

 certs/example-ca.gnomint     | Bin 0 -> 19456 bytes
 src/certificate_properties.c |  34 +++++++++++++++++++++++++---------
 2 files changed, 25 insertions(+), 9 deletions(-)

commit 700c48a36bbab0c7dfece4079c365684a202f1b1
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Jul 29 18:19:18 2008 +0000

    Updating: now is possible to create more than a CA in one DB. Only the first one is usable yet, though.

 gui/gnomint.glade     | 1821 +++++++++++++++++++++++++------------------------
 src/ca.h              |    4 +
 src/ca_creation.h     |    4 +-
 src/ca_file.c         |   64 +-
 src/ca_file.h         |    1 +
 src/ca_policy.c       |    7 +
 src/csr_properties.c  |    6 +-
 src/new_cert_window.c |   66 +-
 src/tls.c             |    6 +-
 9 files changed, 1055 insertions(+), 924 deletions(-)

commit 8223e19bf06c59e515d5469e040bc501219f0c2e
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jul 28 18:03:12 2008 +0000

    Committing today's changes: adding support for inherit subject fields from certification authorities. Adding interface for selecting from multiple CAs

 gui/gnomint.glade     | 1851 +++++++++++++++++++++++++++----------------------
 po/es.po              |    2 +-
 src/ca_policy.c       |  117 +++-
 src/new_cert_window.c |   26 +-
 4 files changed, 1132 insertions(+), 864 deletions(-)

commit 510dfb79c94516471ef66ad6454548cf550372d9
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jul 28 16:18:57 2008 +0000

    First version of interface for new features

 gui/gnomint.glade | 2136 +++++++++++++++++++++++++++++++----------------------
 1 file changed, 1254 insertions(+), 882 deletions(-)

commit 6232fd0321b9e989b25c7ce55d535c6077a37b51
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jul 28 14:12:01 2008 +0000

    Adding French language (thanks to Ahmed Baizid <ahmed@baizid.org>)

 configure.in |    2 +-
 po/fr.po     | 1187 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1188 insertions(+), 1 deletion(-)

commit d7f15c83f69ce8989530bd1dca4a4b38a90b1321
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 6 01:47:08 2008 +0000

    Fixing compiler optimization

 configure.in | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit fe963876775ae5107b6c8e6097c7c3992e7e8b5b
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 6 01:41:37 2008 +0000

    Checking for libgnutls >= v2.0

 configure.in | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit e65f9ed16ab8df1d971eca19f50f6dc36a9dca36
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 6 00:54:01 2008 +0000

    Fixing typo in organizational word, patch by aluminium@users.sourceforge.net

 gui/gnomint.glade | 4 ++--
 po/es.po          | 4 ----
 2 files changed, 2 insertions(+), 6 deletions(-)

commit e7daa1a6aebc7d69548e7a3bb612d1bf16600890
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 6 00:53:14 2008 +0000

    Including detailed certificate view, patch by aluminium@users.sourceforge.net

 gui/gnomint.glade            |  35 +-
 src/certificate_properties.c | 900 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 903 insertions(+), 32 deletions(-)

commit 07ab00947c636f60dde67bb92a412cec3e28f0cf
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 6 00:42:39 2008 +0000

    Deleting gnomint.pot from subversion repository, as it's automatically generated

 po/gnomint.pot | 1126 --------------------------------------------------------
 1 file changed, 1126 deletions(-)

commit 75fc40be98b23242ac87877dacaebe3af7a0bc48
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Jan 6 00:39:53 2008 +0000

    Adding pkey_manage.c to POTFILES.in

 po/POTFILES.in | 1 +
 1 file changed, 1 insertion(+)

commit 335ce4a4bdcf2767c1f87924743a6eba0461718c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Jan 5 14:17:29 2008 +0000

    Allowing -O2 optimization

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a55da99106749e44b87f16bf12d304d4a79d392
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Dec 16 17:45:22 2007 +0000

    Applying patch from sf.net, fixing some uninitialized variables warnings

 ChangeLog         | 86 +++++++++++++++++++++++++++++++++++++++++++++++++------
 src/ca.c          |  4 +--
 src/pkey_manage.c |  2 +-
 3 files changed, 80 insertions(+), 12 deletions(-)

commit 317cccf7bb921dea96af0c270488a59b26e89b35
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 19 18:22:32 2007 +0000

    Actualizado plan de pruebas

 doc/test_plan.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9e64ab786b061557d0005ffc13f492337dc56c71
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 19 17:53:11 2007 +0000

    Updating changelog for version 0.4

 ChangeLog | 31 ++++++++++++++++++++++++-------
 1 file changed, 24 insertions(+), 7 deletions(-)

commit e4c040764bf90534f9b055107e5ffa4796cd661c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 19 17:50:29 2007 +0000

    Preparing for gnoMint version 0.4.0

 configure.in      |   4 +-
 doc/test_plan.txt |  14 +-
 po/es.po          | 528 +++++++++++++++++++++++++++++-------------------------
 po/gnomint.pot    | 452 ++++++++++++++++++++++++----------------------
 4 files changed, 525 insertions(+), 473 deletions(-)

commit 51fde23fbc128c692f891fa996698e8e1e23a8d7
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 19 17:10:02 2007 +0000

    Allowing to extract private keys from database. Retrieving external private keys when needed

 doc/test_plan.txt     |   52 +-
 gui/gnomint.glade     | 1807 ++++++++++++++++++++++++++-----------------------
 src/ca.c              |  101 ++-
 src/ca_file.c         |   64 +-
 src/ca_file.h         |    5 +-
 src/new_cert_window.c |   37 +-
 src/pkey_manage.c     |  280 +++++++-
 src/pkey_manage.h     |   13 +-
 src/tls.c             |  153 +++--
 src/tls.h             |    6 +
 10 files changed, 1545 insertions(+), 973 deletions(-)

commit 6c4fe2eb448b03188208a85cc81820f588a6fa80
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Nov 16 16:35:50 2007 +0000

    Tidying up a bit.

 src/Makefile.am                      |   4 +-
 src/ca.c                             | 126 +++++++++-------
 src/ca_creation.c                    |   5 +-
 src/ca_file.c                        | 268 ++++++++++++++++++++++++++++-------
 src/ca_file.h                        |  25 +++-
 src/ca_policy.c                      |  27 +---
 src/csr_creation.c                   |   5 +-
 src/new_cert_creation_process.c      |  16 ---
 src/new_cert_window.c                |  54 ++++---
 src/pkey_cipher.h                    |  36 -----
 src/{pkey_cipher.c => pkey_manage.c} |  54 +++----
 src/pkey_manage.h                    |  57 ++++++++
 12 files changed, 441 insertions(+), 236 deletions(-)

commit 8cad98f4b3b449584ea8605ec93b2060cc121127
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Nov 14 17:20:02 2007 +0000

    Actualizando traducción.
    Solucionados algunos fallos

 po/es.po       | 552 +++++++++++++++++++++++++++++++++++++--------------------
 po/gnomint.pot | 517 +++++++++++++++++++++++++++++++++++------------------
 src/ca.c       |  13 +-
 src/ca_file.c  |  49 ++---
 4 files changed, 741 insertions(+), 390 deletions(-)

commit 6ffb5a7a9d72b48e7f1d3ebdc99c81654a990057
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed Nov 14 13:55:45 2007 +0000

    Allowing whole database password protection that affects to private keys

 doc/ca-db-password-protection.txt |  22 ++
 doc/ca-properties.txt             |  12 +
 doc/gnomint-db.dia                | Bin 0 -> 4000 bytes
 TEST => doc/test_plan.txt         |   0
 gui/gnomint.glade                 | 677 +++++++++++++++++++++++++++++++++++---
 src/Makefile.am                   |   7 +-
 src/ca.c                          | 481 ++++++++++++++++++++++-----
 src/ca.h                          |   2 +-
 src/ca_creation.c                 |  37 ++-
 src/ca_creation.h                 |   8 +
 src/ca_file.c                     | 343 ++++++++++++++++++-
 src/ca_file.h                     |   9 +-
 src/certificate_properties.c      |   5 +-
 src/certificate_properties.h      |   2 +-
 src/csr_creation.c                |  19 +-
 src/main.c                        |   5 +
 src/new_cert_window.c             |  88 ++++-
 src/pkey_cipher.c                 | 405 +++++++++++++++++++++++
 src/pkey_cipher.h                 |  36 ++
 src/tls.c                         |   6 +-
 20 files changed, 2016 insertions(+), 148 deletions(-)

commit 5d9349318502b741de6a32108724bb5aa35b36dd
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 13 09:27:45 2007 +0000

    Adding new tests for new features

 TEST | 28 +++++++++++++++++-----------
 1 file changed, 17 insertions(+), 11 deletions(-)

commit ddc090c10d08d683afa0c573f1da1ad642e416bd
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue Nov 13 09:16:39 2007 +0000

    Committing test plan

 TEST | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit 29f7fbd66da62664ad77d29f3deacf30571813a4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 12 15:47:35 2007 +0000

    Disabling non-available pop-up options

 src/ca.c | 25 ++++++++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

commit e94174eef86e8a8c62a33b6d31bc980fd25b8877
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Nov 12 15:33:09 2007 +0000

    Adding pop-up menu support for managing CSRs and Certs

 gui/gnomint.glade | 172 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
 src/ca.c          |  80 ++++++++++++++++++++++---
 src/ca.h          |   2 +-
 src/main.c        |   6 ++
 4 files changed, 251 insertions(+), 9 deletions(-)

commit cc5e28c3e5e50c720e0b6770396e5e14bec6a6e4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 3 08:19:17 2007 +0000

    Preparing for version 0.3.2

 ChangeLog      |  21 ++++++
 NEWS           |   5 ++
 configure.in   |   4 +-
 po/gnomint.pot | 230 +++++++++++++++++++++++++++++++--------------------------
 4 files changed, 152 insertions(+), 108 deletions(-)

commit cc8a683633207bc8dbd83853d665a1b7d94dfed3
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 3 08:02:17 2007 +0000

    Fixing DB upgrading from version 3 to 4

 src/ca_file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f22557ea00e5a7134a71d7022e3b5828ce58ee87
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Nov 1 22:07:03 2007 +0000

    Updating Spanish translation

 po/es.po | 232 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 125 insertions(+), 107 deletions(-)

commit 0dd2b8ca0865053e417781398d27125d46b89b41
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Nov 1 22:00:43 2007 +0000

    Updating to version 0.3.1, prior to official release

 ChangeLog    | 440 +++++++++++++++++++----------------------------------------
 NEWS         |  74 ++++++++++
 configure.in |   4 +-
 3 files changed, 216 insertions(+), 302 deletions(-)

commit 5210efa1de6d3f4f2357ab5f72473825fd6cd774
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Nov 1 21:07:06 2007 +0000

    * Fixing problem with certificates serial number: all the certs
      were being created with serial 0.
    
    * Allowing the definition of time between two CRL updates.

 gui/gnomint.glade               | 299 +++++++++++++++++++++++++---------------
 src/ca.c                        |   5 +-
 src/ca_file.c                   |  12 ++
 src/ca_file.h                   |   1 +
 src/ca_policy.c                 |  26 +++-
 src/new_cert_creation_process.c |   1 +
 src/new_cert_window.c           |   2 +
 7 files changed, 235 insertions(+), 111 deletions(-)

commit 6e1cdce679267c432de5f502d2fd60bc8ad9f8fd
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu Nov 1 17:32:39 2007 +0000

    Fixing CRL generation problems. Currently, the CRL expiration time is 1 day

 ChangeLog | 161 +++++++++++++++++++++++++++++++++++++++-----------------------
 src/tls.c |  50 ++++++++++++-------
 2 files changed, 135 insertions(+), 76 deletions(-)

commit aa6e20d0cbf5180b29ef4c579523dd94d079123c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jul 30 18:38:00 2007 +0000

    Changing license messages in all files. Starting support for generating CRLs (not working yet)

 gui/gnomint.glade               |  51 +++-
 po/es.po                        | 410 +++++++++++++++++++-------------
 po/gnomint.pot                  | 390 +++++++++++++++++-------------
 src/ca.c                        | 512 ++++++++++++++++++++++++++++++----------
 src/ca.h                        |   6 +-
 src/ca_creation.c               |   6 +-
 src/ca_creation.h               |   6 +-
 src/ca_file.c                   | 227 +++++++++++++++---
 src/ca_file.h                   |  13 +-
 src/ca_policy.c                 |   6 +-
 src/ca_policy.h                 |   6 +-
 src/certificate_properties.c    |   6 +-
 src/certificate_properties.h    |   6 +-
 src/csr_creation.c              |   6 +-
 src/csr_creation.h              |   6 +-
 src/csr_properties.c            |   6 +-
 src/csr_properties.h            |   6 +-
 src/main.c                      |   8 +-
 src/new_cert_creation_process.c |   6 +-
 src/new_cert_creation_process.h |   6 +-
 src/new_cert_window.c           |   6 +-
 src/new_cert_window.h           |   6 +-
 src/tls.c                       | 101 +++++++-
 src/tls.h                       |  13 +-
 24 files changed, 1281 insertions(+), 534 deletions(-)

commit 12e9ca3e0bf71d2740c53e713cde7026658f75f4
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon Jul 30 14:28:55 2007 +0000

    Preparing version 0.1.6. Now gnoMint can export PKCS#12 structures

 COPYING              | 912 +++++++++++++++++++++++++++++++++++----------------
 configure.in         |   4 +-
 gui/gnomint.glade    |   6 +
 po/es.po             |  97 ++++--
 po/gnomint.pot       |  84 +++--
 src/ca.c             | 142 +++++++-
 src/csr_properties.c |   4 +-
 src/tls.c            | 205 ++++++++++++
 src/tls.h            |   3 +
 9 files changed, 1104 insertions(+), 353 deletions(-)

commit ee031d1cd1af05755217e5617670b85ad1967090
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 22 23:19:31 2007 +0000

    Fixing compilation bugs in x86-64

 src/ca_policy.c              | 3 ++-
 src/certificate_properties.c | 5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)

commit c546f4a5873dccccd7a4ffb19d5f6a64a003ff3a
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 21 20:15:47 2007 +0000

    Fixing one problem introduced in last correction for x86-64 arch

 src/tls.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f3301217615e77569b2a6da466749ff2a84c2d11
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri May 18 18:12:43 2007 +0000

    Using size_t where it is needed (in Fedora amd64 arch, it seems to be
    a problem)

 src/tls.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 2ab6471378c61a5faafeb02cfb987076946d2e16
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Thu May 17 18:55:26 2007 +0000

    Perhaps fixing another compilation problem in amd64 arch

 src/ca.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2c9614c288fe37e11e2a647455faf4dfb08e4c99
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Wed May 16 17:42:23 2007 +0000

    Possibly fixing compilation errors in amd64 arch

 src/ca.c  | 2 +-
 src/tls.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 4c76b6c2e22e00e4a5b375c3f5b522bd618ca466
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 15:17:02 2007 +0000

    Updating to version 0.1.5 prior to official release

 ChangeLog    | 139 ++++++++++++++++++++++++++++++++++++++---------------------
 configure.in |   4 +-
 2 files changed, 91 insertions(+), 52 deletions(-)

commit 1423ae321bbc0c9a9328169a95f7d1e576d492a0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 14:37:33 2007 +0000

    Updating Spanish translation

 po/POTFILES.in |    1 +
 po/es.po       |   94 ++--
 po/gnomint.pot | 1370 ++++++++++----------------------------------------------
 3 files changed, 294 insertions(+), 1171 deletions(-)

commit 961439cf396a77e1237de7044db137b59e07e558
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 11:03:03 2007 +0000

    Commiting database version 3, with certs and csr's containing their DNs and parent's DNs in the database

 src/ca_file.c | 236 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 197 insertions(+), 39 deletions(-)

commit 688f1f7b21581be6a34b6dc59a95382b52e3b0fb
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 11:01:50 2007 +0000

    Showing database errors when creating or importing CSRs

 src/ca.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit 4696cf32237011c8cfcd8ccc21d79721dff6d889
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 10:51:49 2007 +0000

    Saving DN in tlscsr structure

 src/tls.c | 14 ++++++++++++++
 src/tls.h |  1 +
 2 files changed, 15 insertions(+)

commit 58bf80810242c6d621c90dd7180bfd544a651027
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 10:10:27 2007 +0000

    Showing progress when creating CSR's key pair

 src/new_cert_creation_process.c | 1 +
 1 file changed, 1 insertion(+)

commit 2f1df470115c855daa0ae3b0f46aeb31f4b593b2
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Tue May 15 10:08:09 2007 +0000

    Adding support for retrieving DN from PEMs

 src/tls.c | 27 +++++++++++++++++++++++++++
 src/tls.h |  2 ++
 2 files changed, 29 insertions(+)

commit 610794d4b603ab805bab7c19ae6b0db439505eda
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 21:34:17 2007 +0000

    Allowing the save of CSR without private key. Adding support for importing CSRs in PEM and DER formats

 src/ca.c      | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 src/ca_file.c | 14 +++++++---
 2 files changed, 97 insertions(+), 6 deletions(-)

commit 64ea272c77e809a51caf6a0f02863c8aebe639a3
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 21:33:16 2007 +0000

    Fixing visualizing error

 src/csr_properties.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit e9fd213f0470fe0110802bd3a6ec16cb131a2022
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 21:32:21 2007 +0000

    Fixing aligning errors

 gui/gnomint.glade | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d630166ef5c6edebbeb21e3ceb7ff8e850334400
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 19:13:53 2007 +0000

    Improving code safety

 src/ca_file.c | 2 ++
 1 file changed, 2 insertions(+)

commit 873388e5e1349863e3abb439381361931b2d1359
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 19:12:57 2007 +0000

    Reverting old behaviour: CA are created with a minimal set of correct properties for creating useful certificates

 src/new_cert_creation_process.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 2c38cd031138049245de470591b9607405a0d37b
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 16:36:15 2007 +0000

    Starting CSR importing support

 gui/gnomint.glade | 21 +++++++++++++++++++++
 src/ca.c          | 25 +++++++++++++++++++++++++
 src/ca.h          |  1 +
 src/main.c        | 42 ++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 89 insertions(+)

commit f23d6e0465f8f003e6760b3b454db7d2604aea28
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 15:21:13 2007 +0000

    Fixing problem when exporting private key of CSRs

 src/ca.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 37d7773335fb7cacf26950a1271eda1804959f31
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 13:09:24 2007 +0000

    Updating changelog

 ChangeLog | 108 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 60 insertions(+), 48 deletions(-)

commit d2f739faae6e600ddcd52d4d8a6dcb59a34e8881
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 12:58:13 2007 +0000

    Fixing compilation error for release 0.1.4

 src/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit a90b20825c01e03ee905014ec74ce5cd5636ce9c
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 12:53:03 2007 +0000

    Updating changelog for 0.1.4 version

 ChangeLog | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 100 insertions(+), 3 deletions(-)

commit b4aa8a321aa55cda9ff60243ee2630c58bb1e4af
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Mon May 14 12:27:51 2007 +0000

    Adding support for stablishing a set of policies for certificate generation

 configure.in                    |    6 +-
 gui/gnomint.glade               | 1647 +++++++++++++++++++++++---------------
 po/es.po                        | 1643 +++++++++++++++++---------------------
 src/Makefile.am                 |    2 +
 src/ca.c                        |   20 +-
 src/ca.h                        |    3 +-
 src/ca_creation.c               |    2 +-
 src/ca_creation.h               |    2 +-
 src/ca_file.c                   |    6 +-
 src/ca_file.h                   |    2 +-
 src/ca_policy.c                 |  239 ++++++
 src/ca_policy.h                 |   25 +
 src/certificate_properties.c    |   30 +-
 src/certificate_properties.h    |    2 +-
 src/csr_creation.c              |    2 +-
 src/csr_creation.h              |    2 +-
 src/csr_properties.c            |    2 +-
 src/csr_properties.h            |    2 +-
 src/main.c                      |    8 +-
 src/new_cert_creation_process.c |    2 +-
 src/new_cert_creation_process.h |    2 +-
 src/new_cert_window.c           | 1652 +++++++++++++++++++++------------------
 src/new_cert_window.h           |    2 +-
 src/tls.c                       |   32 +-
 src/tls.h                       |    3 +-
 25 files changed, 2955 insertions(+), 2383 deletions(-)

commit 6a54be835d55c0bcd285ad2bbc8544aae345af61
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 19 22:55:57 2006 +0000

    Fixing some typo problems in country names

 src/new_cert_window.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 9b5a4f32f8cba744c40ac5e4a43206259e45bf45
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 19 22:40:20 2006 +0000

    Updating country list, so now it uses iso_3166 translation. Bug reported by Florian K. Steinel

 configure.in          |   4 +-
 gui/gnomint.glade     |  51 +++---
 po/es.po              | 116 ++++++------
 po/gnomint.pot        | 114 +++++++-----
 src/new_cert_window.c | 487 +++++++++++++++++++++++++-------------------------
 5 files changed, 403 insertions(+), 369 deletions(-)

commit 97cc0c5b7b912fead5ba5f87621e94e0dd3fc530
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Nov 19 22:18:34 2006 +0000

    Supporting SQLite 3 now, as SQLite 2 is deprecated. Adding tool-script for converting existing databases

 src/Makefile.am        |  4 ++-
 src/ca.c               |  8 +++---
 src/ca_creation.c      |  2 +-
 src/ca_file.c          | 69 +++++++++++++++++++++++++-------------------------
 src/ca_file.h          |  2 +-
 src/csr_creation.c     |  2 +-
 src/gnomint-upgrade-db | 50 ++++++++++++++++++++++++++++++++++++
 7 files changed, 94 insertions(+), 43 deletions(-)

commit 03296de44c66ba26edf91b03511558e7460e57f8
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sat Nov 11 10:45:15 2006 +0000

    Updating DB version to 2, with support for CA policies.
    Adding support for upgrading from earlier DB versions.

 src/ca_file.c | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 src/ca_file.h |  2 ++
 2 files changed, 70 insertions(+), 1 deletion(-)

commit 6744f83f127f4cdddfadb0d2bb9793945502a135
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Nov 10 13:26:54 2006 +0000

    Releasing 0.1.3 version

 configure.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f5d622777ee93064d8404c8acc161781f53d9d71
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Nov 10 13:19:28 2006 +0000

    * Allowing uncrypted private key export.
    * Requiring minimum length for private-key export passphrase
    * Checking confirmation for private-key export passphrase
    * Fixing focus grab when asking for passphrase
    * Updated Spanish translation

 gui/gnomint.glade | 750 +++++++++++++++++++++++++++++++-----------------------
 po/es.po          | 224 +++++++++-------
 po/gnomint.pot    | 189 ++++++++------
 src/ca.c          | 163 ++++++++++--
 4 files changed, 817 insertions(+), 509 deletions(-)

commit f092d0774ab041634621f4d380c3c4169693d278
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Fri Nov 10 10:40:10 2006 +0000

    Replacing /bin/sh by /bin/bash, fixing Ubuntu/Debian error as they link /bin/sh to /bin/dash instead of /bin/bash

 autogen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6330f352c7db2f194eaee05ddde33743b08463d0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Oct 15 08:30:57 2006 +0000

    Moving everything to trunk directory

 AUTHORS                         |    1 +
 BUGS                            |    0
 COPYING                         |  340 ++++
 ChangeLog                       |  179 ++
 INSTALL                         |    0
 MAINTAINERS                     |    1 +
 Makefile.am                     |   24 +
 NEWS                            |    0
 README                          |    1 +
 TODO                            |   40 +
 autogen.sh                      |   24 +
 certs/davefx.pem                |   33 +
 configure.in                    |  179 ++
 debian/changelog                |   12 +
 debian/compat                   |    1 +
 debian/conffiles.ex             |    7 +
 debian/control                  |   14 +
 debian/copyright                |   10 +
 debian/cron.d.ex                |    4 +
 debian/dirs                     |    2 +
 debian/docs                     |    4 +
 debian/emacsen-install.ex       |   45 +
 debian/emacsen-remove.ex        |   15 +
 debian/emacsen-startup.ex       |   19 +
 debian/gnomint-default.ex       |   10 +
 debian/gnomint.doc-base.EX      |   22 +
 debian/init.d.ex                |   74 +
 debian/manpage.1.ex             |   59 +
 debian/manpage.sgml.ex          |  156 ++
 debian/manpage.xml.ex           |  148 ++
 debian/menu.ex                  |    2 +
 debian/postinst.ex              |   42 +
 debian/postrm.ex                |   38 +
 debian/preinst.ex               |   38 +
 debian/prerm.ex                 |   38 +
 debian/rules                    |  107 ++
 debian/watch.ex                 |   22 +
 gnomint.spec.in                 |   14 +
 gui/Makefile.am                 |   10 +
 gui/ca-stamp-16.png             |  Bin 0 -> 885 bytes
 gui/ca-stamp.png                |  Bin 0 -> 4411 bytes
 gui/gnomint.glade               | 4049 +++++++++++++++++++++++++++++++++++++++
 gui/gnomint.png                 |  Bin 0 -> 4411 bytes
 gui/key-16.png                  |  Bin 0 -> 537 bytes
 po/ChangeLog                    |   66 +
 po/POTFILES.in                  |   14 +
 po/es.po                        | 1752 +++++++++++++++++
 po/gnomint.pot                  | 1684 ++++++++++++++++
 src/Makefile.am                 |   40 +
 src/ca.c                        |  981 ++++++++++
 src/ca.h                        |   27 +
 src/ca_creation.c               |  190 ++
 src/ca_creation.h               |   74 +
 src/ca_file.c                   |  329 ++++
 src/ca_file.h                   |   53 +
 src/certificate_properties.c    |  142 ++
 src/certificate_properties.h    |   23 +
 src/csr_creation.c              |  191 ++
 src/csr_creation.h              |   35 +
 src/csr_properties.c            |   91 +
 src/csr_properties.h            |   23 +
 src/main.c                      |  280 +++
 src/new_cert_creation_process.c |  300 +++
 src/new_cert_creation_process.h |   26 +
 src/new_cert_window.c           | 1078 +++++++++++
 src/new_cert_window.h           |   28 +
 src/tls.c                       |  892 +++++++++
 src/tls.h                       |   96 +
 68 files changed, 14199 insertions(+)

commit f9cdaf2b2ae8b56a445be8a602baea8a853fb3f0
Author: davefx <davefx@8ce44e8e-8d12-0410-9598-ae135bd4683b>
Date:   Sun Oct 15 08:22:29 2006 +0000

    Adding directory for main gnomint trunk
