]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
*** empty log message ***
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 2 Jun 2004 08:11:43 +0000 (08:11 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 2 Jun 2004 08:11:43 +0000 (08:11 +0000)
doc/TODO
lib/gnutls_pk.c

index d9988a97349cbc48c7ac37b0339d640d8db55213..82acfa70686ed6650195c247f30a16c775668984 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -3,6 +3,9 @@ anything), contact the developer's mailing list (gnutls-dev@lists.gnupg.org),
 in order to avoid having people working on the same thing. 
 
 Current list:
+* Make the current ciphering code a bit more abstract to
+  allow easy integration with TLS hardware.
+* Allow verifying of certificates on their reception.
 * Verify added CRLs
 * Document the format for the supported DN attributes.
 * Add support for Certificate Extensions Profile for Qualified 
index 241ebd0c808986efa7294c60003ce1c262318ed7..ffcff5dc9d7bf28e660a4ef2e854b7be0b88d057 100644 (file)
@@ -57,7 +57,7 @@ int _gnutls_pkcs1_rsa_encrypt(gnutls_datum * ciphertext,
        size_t k, psize;
        size_t mod_bits;
 
-       mod_bits = _gnutls_mpi_get_nbits(params[0]);    
+       mod_bits = _gnutls_mpi_get_nbits(params[0]);
        k = mod_bits / 8;
        if ( mod_bits % 8 != 0) k++;