diff libtomcrypt/src/pk/dsa/dsa_shared_secret.c @ 1471:6dba84798cd5

Update to libtomcrypt 1.18.1, merged with Dropbear changes
author Matt Johnston <matt@ucc.asn.au>
date Fri, 09 Feb 2018 21:44:05 +0800
parents f849a5ca2efc
children
line wrap: on
line diff
--- a/libtomcrypt/src/pk/dsa/dsa_shared_secret.c	Thu Feb 08 23:11:40 2018 +0800
+++ b/libtomcrypt/src/pk/dsa/dsa_shared_secret.c	Fri Feb 09 21:44:05 2018 +0800
@@ -5,22 +5,20 @@
  *
  * The library is free for all purposes without any express
  * guarantee it works.
- *
- * Tom St Denis, [email protected], http://libtom.org
  */
 #include "tomcrypt.h"
 
 /**
   @file dsa_shared_secret.c
   DSA Crypto, Tom St Denis
-*/  
+*/
 
 #ifdef LTC_MDSA
 
 /**
   Create a DSA shared secret between two keys
   @param private_key      The private DSA key (the exponent)
-  @param base             The base of the exponentiation (allows this to be used for both encrypt and decrypt) 
+  @param base             The base of the exponentiation (allows this to be used for both encrypt and decrypt)
   @param public_key       The public key
   @param out              [out] Destination of the shared secret
   @param outlen           [in/out] The max size and resulting size of the shared secret
@@ -48,7 +46,7 @@
       mp_clear(res);
       return err;
    }
-   
+
    x = (unsigned long)mp_unsigned_bin_size(res);
    if (*outlen < x) {
       *outlen = x;
@@ -66,7 +64,7 @@
 }
 
 #endif
-/* $Source$ */
-/* $Revision$ */
-/* $Date$ */
+/* ref:         $Format:%D$ */
+/* git commit:  $Format:%H$ */
+/* commit time: $Format:%ai$ */