Skip to content
Snippets Groups Projects
TODO 889 B
Newer Older
  • Learn to ignore specific revisions
  • Niels Möller's avatar
    Niels Möller committed
    Public key support, analogous to that provided by RSAREF. Suggested by
    
    Niels Möller's avatar
    Niels Möller committed
    Dan Egnor. Signatures are done now, but RSA encryption is still
    missing. References:
    
    Niels Möller's avatar
    Niels Möller committed
    
      http://download.gale.org/rsaref20.tar.Z
      http://www.openssl.org/docs/crypto/evp.html
      http://www.openssl.org/docs/crypto/rsa.html
    
    More feedback modes, in order of decreasing priority:  CBC-MAC, OFB,
    
    and CFB. Suggested by Rafael 'Dido' Sevilla. References:
    
    Niels Möller's avatar
    Niels Möller committed
    
      http://csrc.nist.gov/encryption/modes/Recommendation/Modes01.pdf
    
    Niels Möller's avatar
    Niels Möller committed
    Valgrind reports errors on the des-compat test program. Investigate.
    
    Niels Möller's avatar
    Niels Möller committed
    
    
    Change the convention for declaring function pointers. Instead of for
    example
    
      typedef void *
      nettle_realloc_func(void *ctx, void *p, unsigned length);
    
    use
    
      typedef void
      nettle_realloc_func(void *ctx, void *p, unsigned length);
    
    Niels Möller's avatar
    Niels Möller committed
    
    The make rules for building position independent *_p.o files doesn't
    get dependencies right.