summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* added missing file.gnutls_2_99_3Nikos Mavrogiannopoulos2011-06-181-1/+1
|
* bumped version.Nikos Mavrogiannopoulos2011-06-184-3/+8
|
* Added new PKCS #11 flags to force an object being private or not.Nikos Mavrogiannopoulos2011-06-1811-80/+160
| | | | | Those are GNUTLS_PKCS11_OBJ_FLAG_MARK_PRIVATE and GNUTLS_PKCS11_OBJ_FLAG_MARK_NOT_PRIVATE. p11tool supports now the --no-private and --private options.
* Limit the number of attempts with the same PIN, to avoid attempting again ↵Nikos Mavrogiannopoulos2011-06-171-2/+5
| | | | and again with a wrong PIN.
* When writing an object with CKA_TRUSTED set CKA_PRIVATE explicitly to FALSE, ↵Nikos Mavrogiannopoulos2011-06-171-1/+8
| | | | to allow the SO to write it. Reported by Rickard Bellgrim.
* updatedNikos Mavrogiannopoulos2011-06-161-0/+1
|
* removed unneeded test.Nikos Mavrogiannopoulos2011-06-161-6/+1
|
* Enforce the GNUTLS_PKCS11_OBJ_FLAG_LOGIN_SO even if ↵Nikos Mavrogiannopoulos2011-06-161-1/+1
| | | | GNUTLS_PKCS11_OBJ_FLAG_LOGIN is specified.
* Use common code for PKCS #11 callbacks across clients.Nikos Mavrogiannopoulos2011-06-163-67/+13
| | | | Require SO login to write a trusted object.
* bit fields changed to unsigned.Nikos Mavrogiannopoulos2011-06-162-4/+4
|
* Moved null check before initialization.Nikos Mavrogiannopoulos2011-06-162-5/+3
|
* removed unreachable code warningNikos Mavrogiannopoulos2011-06-161-2/+0
|
* eliminated wipemem().Nikos Mavrogiannopoulos2011-06-164-15/+4
|
* corrected uninitialized variable warning.Nikos Mavrogiannopoulos2011-06-161-1/+1
|
* The CKA_SUBJECT must be specified for a certificate.Rickard Bellgrim2011-06-161-2/+15
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* When setting the TRUSTED flag login as security officer.Nikos Mavrogiannopoulos2011-06-153-1/+9
|
* write label in PKCS #11 privkey.Nikos Mavrogiannopoulos2011-06-151-0/+8
|
* define ck_bool_t to be compatible with PKCS #11 bool type.Nikos Mavrogiannopoulos2011-06-157-8/+5
|
* ignore more warnings.Nikos Mavrogiannopoulos2011-06-151-0/+1
|
* Use pkcs11.h specification file from p11-kit.Stef Walter2011-06-093-1359/+2
| | | | | | * Remove one included briefly in gnutls. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Fix up compiler warnings.Stef Walter2011-06-095-12/+6
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Added missing fileNikos Mavrogiannopoulos2011-06-091-0/+1357
|
* document new config file format and path.Nikos Mavrogiannopoulos2011-06-071-6/+5
|
* The attached patch ports gnutls to p11-kit.Stef Walter2011-06-0726-4286/+962
| | | | | p11-kit is added as a dependency. p11-kit itself has no dependencies outside of basic libc stuff. The source code for p11-kit is available both in git and tarball form. [3] If the gnutls dependency on p11-kit is disabled (via a configure option) then the PKCS#11 support is disabled. This is useful in bare bones embedded systems or places where very minimal dependencies are limited.
* updatedNikos Mavrogiannopoulos2011-06-071-13/+13
|
* Return error code when an object is not found.Nikos Mavrogiannopoulos2011-06-072-2/+2
| | | | | | Only request for token insertion if the expected data is not found. Based on patch by Stef Walter.
* Depend on automake 1.11.Nikos Mavrogiannopoulos2011-06-071-1/+1
|
* tests: Build eagain-cli with correct librariesStef Walter2011-06-071-1/+1
| | | | | | * Add -ldl -lpthread to linker flags Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls-cli: Fix uninitialized variable when PKCS#11 uris in use.Stef Walter2011-06-071-1/+1
| | | | | | | * When PKCS#11 URIs are in use previously tried to free uninitialized memory. Initialize to zero. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* pkcs11: Accept CKR_USER_ALREADY_LOGGED_IN as successful result for PAP LoginStef Walter2011-06-071-2/+2
| | | | | | | | | | * When doing CKF_PROTECTED_AUTHENTICATION_PATH login, accept CKR_USER_ALREADY_LOGGED_IN as a successful result. * Another code path, or another consumer of the same PKCS#11 module may have already logged in. * This is what the non PAP code path already does. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Remove unused variablesStef Walter2011-06-067-19/+6
| | | | | | * GCC 4.6.0 prints a warning, and build failes with -Wunused Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* use gnutls_assert_val() in EGD errors.Nikos Mavrogiannopoulos2011-06-061-2/+2
|
* Corrected fail() shell function. Reported by Andreas Metzler.Nikos Mavrogiannopoulos2011-06-055-54/+56
|
* Corrected typo. Reported by Andreas Metzler.Nikos Mavrogiannopoulos2011-06-051-1/+1
|
* regenerated makefile.Nikos Mavrogiannopoulos2011-06-051-105/+57
|
* documentation fix.Nikos Mavrogiannopoulos2011-06-051-4/+5
|
* pclmul is not used on intel 32-bit systems.Nikos Mavrogiannopoulos2011-06-053-993/+8
|
* When AES and GCM acceleration is available increase the priority of AES-GCM ↵Nikos Mavrogiannopoulos2011-06-053-9/+55
| | | | ciphersuites in performance and normal cases.
* prevent compilation of gcrypt support since it is incomplete.Nikos Mavrogiannopoulos2011-06-052-0/+4
|
* do not use NETTLE_LIBS to include hogweed and gmp.Nikos Mavrogiannopoulos2011-06-056-65/+4
| | | | removed ENABLE_CAMELLIA and NETTLE_GCM.
* improved benchmark.Nikos Mavrogiannopoulos2011-06-051-23/+36
|
* Updated documentation.Nikos Mavrogiannopoulos2011-06-0536-7830/+94
| | | | Removed all .pdf files. They were not needed.
* Avoid memory allocations when requesting the supported ciphersuites.Nikos Mavrogiannopoulos2011-06-053-190/+92
|
* more verbose if the PCLMUL instruction is detected.Nikos Mavrogiannopoulos2011-06-051-0/+1
|
* Added debugging ability to cipher-test.Nikos Mavrogiannopoulos2011-06-051-0/+10
|
* more cleanup.Nikos Mavrogiannopoulos2011-06-051-26/+0
|
* Added new TODO items.Nikos Mavrogiannopoulos2011-06-041-0/+5
|
* removed completed items from todo listNikos Mavrogiannopoulos2011-06-041-10/+0
|
* reinstated MAC-ALL semantics.Nikos Mavrogiannopoulos2011-06-041-1/+1
|
* more files to ignore.Nikos Mavrogiannopoulos2011-06-041-1/+5
|