1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
------------------------------------------------------------------
2021-09-25 02:57:37 +0200 Martin Preuss
Rewrote OS test.
autotools are sometimes unnerving: Compiling libchipcard inside my
git repository works, but created tarballs don't work (they always
reconfigure and forget our own m4 macros while doing it leaving aclocal.m4
without our own macros).
------------------------------------------------------------------
2021-09-25 02:18:38 +0200 Martin Preuss
Use pkg-config to find gwenhywfar.
------------------------------------------------------------------
2021-09-25 00:46:07 +0200 Martin Preuss
Improved doxygen setup.
------------------------------------------------------------------
2021-09-25 00:45:23 +0200 Martin Preuss
Fixed a doxygen tag.
------------------------------------------------------------------
2021-09-25 00:45:07 +0200 Martin Preuss
Build: Add visibility flags, export important symbols in modules.
------------------------------------------------------------------
2021-09-25 00:16:48 +0200 Martin Preuss
Some doxygen fixes. Change version settings.
- gwenbuild works from within a build dir, so the paths need to be adjusted
accordingly
- set project version in "version" attribute of <project> element
- no longer define/set "PACKAGE" and "VERSION" (automatically set by gwenbuild)
- increased required gwenbuild version to 5.7.2.1
------------------------------------------------------------------
2021-09-24 18:45:09 +0200 Martin Preuss
Updated COPYING file.
------------------------------------------------------------------
2021-09-24 18:43:21 +0200 Martin Preuss
Removed chipcard-config.in.in.
------------------------------------------------------------------
2021-09-24 18:42:18 +0200 Martin Preuss
Removed chipcard.m4.
------------------------------------------------------------------
2021-09-24 16:30:53 +0200 Martin Preuss
Remove chipcard-config and chipcard.m4 (we exclusively use pkgconfig now).
------------------------------------------------------------------
2021-09-24 16:30:13 +0200 Martin Preuss
Fixed a bug in Makefile.am (double definition).
------------------------------------------------------------------
2021-09-24 16:18:53 +0200 Martin Preuss
CT: Fixed a bug (don't check pinstatus if you have none).
------------------------------------------------------------------
2021-09-24 16:18:16 +0200 Martin Preuss
Base: Fixed a bug (was not setting selected dfNode).
------------------------------------------------------------------
2021-09-24 15:37:18 +0200 Martin Preuss
BUILD: "VERSION" needs to be a DEFINE, not a var to maintain compatibility with autotools.
------------------------------------------------------------------
2021-09-24 15:36:24 +0200 Martin Preuss
BUILD: Added current build folder to include list.
Generated files are always written outside the source tree into subfolders
of the build tree, so the current build dir needs to be added to the include list.
------------------------------------------------------------------
2021-09-24 13:32:32 +0200 Martin Preuss
BUILD: Added missing files to src/libchipcard/0BUILD.
------------------------------------------------------------------
2021-09-24 01:06:36 +0200 Martin Preuss
Minor fixes.
------------------------------------------------------------------
2021-09-24 00:40:37 +0200 Martin Preuss
BUILD: Fixed version variables.
------------------------------------------------------------------
2021-09-24 00:28:15 +0200 Martin Preuss
client: No longer search for README file, look for card.xml instead.
This file should also always be installed, so better use that file to
lookup the correct data path.
Maybe we will later load all paths from path manager...
------------------------------------------------------------------
2021-09-24 00:21:45 +0200 Martin Preuss
BUILD: Let gwbuild also install driver data.
------------------------------------------------------------------
2021-09-24 00:03:32 +0200 Martin Preuss
Updated de.po.
------------------------------------------------------------------
2021-09-24 00:01:14 +0200 Martin Preuss
Fixed header install folders.
------------------------------------------------------------------
2021-09-23 23:12:50 +0200 Martin Preuss
Added chapter about dependencies to README.
------------------------------------------------------------------
2021-09-23 23:10:04 +0200 Martin Preuss
Added some chapters to README, esp. about building from sources.
------------------------------------------------------------------
2021-09-23 23:04:20 +0200 Martin Preuss
BUILD: gwenbuild now build the full project.
------------------------------------------------------------------
2021-09-23 22:44:27 +0200 Martin Preuss
BUILD: Cleanup gwbuild files.
Remove unneeded elements from 0BUILD files.
------------------------------------------------------------------
2021-09-23 22:32:23 +0200 Martin Preuss
BUILD: gwenbuild now also builds the crypttoken plugins.
------------------------------------------------------------------
2021-09-23 22:01:06 +0200 Martin Preuss
BUILD: Added targets for gettext and astyle.
------------------------------------------------------------------
2021-09-23 21:56:31 +0200 Martin Preuss
BUILD: More work on 0BUILD files, now compiles libchipcard.so.
------------------------------------------------------------------
2021-09-23 21:40:39 +0200 Martin Preuss
Initial setup for gwbuild.
------------------------------------------------------------------
2021-09-23 19:41:01 +0200 Martin Preuss
Removed some unused defines. Minor reformatting.
------------------------------------------------------------------
2021-09-23 19:33:02 +0200 Martin Preuss
Cleaned up code for pin entry on crypt tokens.
------------------------------------------------------------------
2021-09-23 19:32:23 +0200 Martin Preuss
Removed calls to no longer existing LC_Crypt_Token_ResultToError().
------------------------------------------------------------------
2021-09-23 16:35:28 +0200 Martin Preuss
No longer use deprecated functions GWEN_Gui_ShowBox() and GWEN_Gui_HideBox().
------------------------------------------------------------------
2021-09-23 16:35:00 +0200 Martin Preuss
Removed unused reader flags.
------------------------------------------------------------------
2021-09-23 16:20:45 +0200 Martin Preuss
Fixed compiler warnings.
------------------------------------------------------------------
2021-09-23 15:46:19 +0200 Martin Preuss
More cleanup.
- removed unneeded files
- no longer install files which aren't part of the API
- cut big code files into smaller ones
------------------------------------------------------------------
2021-09-23 14:02:13 +0200 Micha Lenk
src/libchipcard/Makefile.am: Add missing typedefs and typefiles targets
------------------------------------------------------------------
2021-09-23 12:11:49 +0200 Martin Preuss
Removed type LC_CLIENT_RESULT, return GWEN_ERROR codes on error.
Like with AqBanking there is no need for an extra error code type.
------------------------------------------------------------------
2021-09-23 00:52:51 +0200 Martin Preuss
Removed no longer needed code and defs.
------------------------------------------------------------------
2021-09-23 00:52:36 +0200 Martin Preuss
Use GWEN_DATE also LC_KvkCard_ReadCardData() and LC_KvkCard_ReadCardData().
------------------------------------------------------------------
2021-09-23 00:31:51 +0200 Martin Preuss
Updated libtest.c (we now always use PC/SC).
------------------------------------------------------------------
2021-09-23 00:28:00 +0200 Martin Preuss
Updated apidoc.
------------------------------------------------------------------
2021-09-23 00:26:07 +0200 Martin Preuss
Removed ancient installation instructions (was referring to libchipcard2).
------------------------------------------------------------------
2021-09-23 00:20:04 +0200 Martin Preuss
Removed docs we no longer used.
------------------------------------------------------------------
2021-09-23 00:16:59 +0200 Martin Preuss
Very much simplified README.
There no longer is a ressource manager, we simply use the pcsc daemon or
service, so most lines of the README no longer apply.
------------------------------------------------------------------
2021-09-23 00:03:22 +0200 Martin Preuss
BUILD: Add Makefile targets "typefiles" and "typedefs".
------------------------------------------------------------------
2021-09-23 00:02:35 +0200 Martin Preuss
Removed folder "etc".
------------------------------------------------------------------
2021-09-22 23:48:49 +0200 Martin Preuss
EGK: Use GWEN_DATE instead of GWEN_TIME when reading dates.
------------------------------------------------------------------
2021-09-22 23:48:04 +0200 Martin Preuss
Changed string libchipcard5 to libchipcard6. Remove libchipcard_symlinkdir.
------------------------------------------------------------------
2021-09-22 23:21:25 +0200 Martin Preuss
Added initial language file (no translations, yet).
------------------------------------------------------------------
2021-09-22 23:17:01 +0200 Martin Preuss
BUILD: Added I18N commands to Makefile.am and configure.ac.
------------------------------------------------------------------
2021-09-22 22:44:07 +0200 Martin Preuss
client: Enable translation code.
To be able to translate text we need to call GWEN_I18N_BindTextDomain_Dir()
and GWEN_I18N_BindTextDomain_Codeset().
However, we also need to add I18N code to toplevel Makefile.am (we could
take those parts from Makefile.am of AqBanking/AqFinance).
------------------------------------------------------------------
2021-09-20 00:49:46 +0200 Martin Preuss
Added some entries to TODO file, removed others.
------------------------------------------------------------------
2021-09-20 00:26:24 +0200 Martin Preuss
Ported starcos types.xml to typemaker2.
------------------------------------------------------------------
2021-09-20 00:17:29 +0200 Martin Preuss
Added missing include.
------------------------------------------------------------------
2021-09-20 00:17:15 +0200 Martin Preuss
Ported hidata.xml to typemaker2.
Use GWEN_DATE instead of GWEN_TIME for date fields.
------------------------------------------------------------------
2021-09-19 23:32:26 +0200 Martin Preuss
Ported typefiles to typemaker2.
------------------------------------------------------------------
2021-09-19 23:10:22 +0200 Martin Preuss
Added type prefix to all card and app files to facilitate moving them all into one folder later.
------------------------------------------------------------------
2021-09-19 22:49:15 +0200 Martin Preuss
Removed no longer needed definitions. Changed LC_LOGDOMAIN string to "libchipcard".
------------------------------------------------------------------
2021-09-19 22:48:24 +0200 Martin Preuss
Use typemaker2 instead of typemaker for pininfo type.
------------------------------------------------------------------
2021-09-19 22:47:28 +0200 Martin Preuss
BUILD: Added checks for typemaker2 and xmlmerge.
------------------------------------------------------------------
2021-09-19 22:07:28 +0200 Martin Preuss
Initial commit for libchipcard6.
- changed the structure of libchipcards sources
- no longer use symlink folder
------------------------------------------------------------------
2021-09-19 17:43:52 +0200 Martin Preuss
Removed unneeded files.
------------------------------------------------------------------
2021-09-19 17:16:28 +0200 Martin Preuss
Cleanup .gitignores, removed old testdata.
------------------------------------------------------------------
2021-09-19 16:54:46 +0200 Martin Preuss
Prepared cleanup of .gitignore.
------------------------------------------------------------------
2021-09-19 16:54:23 +0200 Martin Preuss
gource: Increased video size.
------------------------------------------------------------------
2021-09-18 16:44:33 +0200 Martin Preuss
Base: Simplify _updateReaderStates.
------------------------------------------------------------------
2021-09-18 15:04:35 +0200 Martin Preuss
Base: Finished basic cleanup.
- removed all non-needed declarations from private client_p.h so that it can be
included by other c-files
- compile client_cmd.c and client_xml.c on its own (needs the step above)
- fixed some compiler warnings
- removed some unneeded includes
------------------------------------------------------------------
2021-09-18 14:28:35 +0200 Martin Preuss
Base: More cleanup of client*.{c,h}. Make more functions private.
------------------------------------------------------------------
2021-09-18 14:27:07 +0200 Martin Preuss
Base: Removed lc_client__config and LC_CLIENT::dbConfig.
------------------------------------------------------------------
2021-09-18 14:25:03 +0200 Martin Preuss
Base: Added missing include.
------------------------------------------------------------------
2021-09-18 14:09:35 +0200 Martin Preuss
Base: Added client_xml.h
------------------------------------------------------------------
2021-09-18 13:59:58 +0200 Martin Preuss
Base: Added file client_xml.h
------------------------------------------------------------------
2021-09-18 13:56:26 +0200 Martin Preuss
Base: Moved public functions up in file.
------------------------------------------------------------------
2021-09-18 13:35:17 +0200 Martin Preuss
Base: Moved/renamed more functions in client*.{c,h}.
- LC_Client_GetReaderAndDriverType
- LC_Client_FindCommandInCardFamily
- LC_Client_FindCommandInCardTypes
- LC_Client_FindResultInNode
- LC_Client_FindResult
- LC_Client_FindResponseInNode
- LC_Client_FindResponse
- LC_Client__BuildApdu
- LC_Client_ParseResult
- LC_Client_ParseResponse
- LC_Client_ParseAnswer
------------------------------------------------------------------
2021-09-18 13:03:26 +0200 Martin Preuss
Base: Moved/renamed functions in client*.{c,h}
- LC_Client__FindCommandInCardNode
- LC_Client_FindCommandInCardNode
------------------------------------------------------------------
2021-09-18 13:02:31 +0200 Martin Preuss
Base: Updated/added copyright header.
------------------------------------------------------------------
2021-09-18 12:15:04 +0200 Martin Preuss
Base: Started cleaning up header and source files.
- remove and rename LC_Client__SampleXmlFiles
- remove and rename LC_Client_MergeXMLDefs
------------------------------------------------------------------
2021-09-17 17:45:33 +0200 Martin Preuss
Prepared release 5.1.6.
------------------------------------------------------------------
2021-09-11 18:09:45 +0200 Martin Preuss
chiptanusb ct plugin: Use correct log domain. Removed _p.h file, add *.h file.
------------------------------------------------------------------
2021-09-11 18:08:30 +0200 Martin Preuss
chiptanusb CT plugin: Create correct plugin object (fixes #213).
The crypt token functions inside gwen expect the plugin to be derived
from GWEN_Crypt_Token_Plugin.
------------------------------------------------------------------
2021-03-01 21:32:18 +0100 Micha Lenk
README.cards: Add a hint about its required presence on target systems
------------------------------------------------------------------
2021-02-26 14:13:37 +0100 Micha Lenk
Fix several autoconf/automake warnings
------------------------------------------------------------------
2021-02-26 13:23:32 +0100 Micha Lenk
Fix off-by-one errors
------------------------------------------------------------------
2020-01-27 21:01:32 +0100 Micha Lenk
Add missing include
The missing include of ctype.h was found via the following warning by the
Debian buildd log scanner.
main.c: In function ‘_readBytesHex’:
main.c:347:9: warning: implicit declaration of function ‘toupper’ [-Wimplicit-function-declaration]
347 | c = toupper(c);
| ^~~~~~~
------------------------------------------------------------------
2020-01-18 10:57:31 +0100 Herbert Ellebruch
Correct ATR for Tanjackbluetooth, Description building APDU for chiptan USB
------------------------------------------------------------------
2020-01-17 20:14:18 +0100 Martin Preuss
Changed prefix to "/usr/local".
------------------------------------------------------------------
2020-01-12 17:15:49 +0100 Martin Preuss
Prepared release 5.1.5rc2.
------------------------------------------------------------------
2020-01-12 15:42:03 +0100 Martin Preuss
Result of "make format".
------------------------------------------------------------------
2020-01-12 15:31:52 +0100 Martin Preuss
Merge branch 'he-202001-chiptanusb'
------------------------------------------------------------------
2020-01-12 15:12:14 +0100 Martin Preuss
Added ".gitignore".
------------------------------------------------------------------
2020-01-11 15:12:14 +0100 Herbert Ellebruch
First Version Chiptan USB with Chipcard Reader
------------------------------------------------------------------
2020-01-09 14:08:37 +0100 Martin Preuss
Fixed a compiler warning.
------------------------------------------------------------------
2020-01-09 14:08:26 +0100 Martin Preuss
Prepared source tree for Herberts ChipTanUSB implementation.
------------------------------------------------------------------
2019-09-19 18:14:07 +0200 Geert Janssens
Rewrite chipcard-config to use pkg-config
------------------------------------------------------------------
2019-09-19 18:08:48 +0200 Geert Janssens
Update chipcard.m4 to use pkg-config instead of chipcard-config
This follows the same strategy as used in gwenhywfar.m4.
A more step by step conversion can be found in gwen's git repository.
Note this required the creation of package config files for server and client.
------------------------------------------------------------------
2019-09-19 18:06:46 +0200 Geert Janssens
Update gwenhywfar.pc to use pkg-config rather than gwenhywfar-config
This is copied verbatime from the gwenhywhar project.
------------------------------------------------------------------
2019-10-29 22:04:41 +0100 Holger Magnussen
Bug fix for EF_NOTEPAD with short keyinfo
Small bug fix for cards where the key information in the EF_NOTEPAD of the card is done according to the short variant of the standard.
------------------------------------------------------------------
2019-10-29 10:40:41 +0100 Martin Preuss
Prepared release 5.1.4rc1.
|