Overview
Comment: | Added additional OS support for loading libraries (mostly untested) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f7f7813de096fd232fe8639783444a41 |
User & Date: | rkeene on 2010-10-10 13:39:01 |
Other Links: | manifest | tags |
Context
2010-10-10
| ||
15:27 | Began TEA-ifying TclPKCS11 check-in: 16597afcf3 user: rkeene tags: trunk | |
13:39 | Added additional OS support for loading libraries (mostly untested) check-in: f7f7813de0 user: rkeene tags: trunk | |
05:36 | Updated test driver to not give false errors if a non-PIN related decryption error occurs check-in: be76ba4355 user: rkeene tags: trunk | |
Changes
Modified Makefile from [ed33656445] to [454cbc79b9].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | CC = gcc |
︙ |
Modified tclpkcs11.c from [05f498a3e1] to [e61975e985].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + - + + + + + + + + | #include <unistd.h> #include <stdlib.h> #include <string.h> #ifdef HAVE_DLFCN_H |
︙ | |||
281 282 283 284 285 286 287 | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | - + | break; } } return(outbufidx); } |
︙ | |||
382 383 384 385 386 387 388 | 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 464 465 466 467 468 | - + - + - + + + + + - + - + - + + + + - + - + - + + + + + + + + + + + + + | return(CKR_OK); } /* * Platform Specific Functions */ static void *tclpkcs11_int_load_module(const char *pathname) { |
︙ |