diff libtomcrypt/src/pk/dsa/dsa_shared_secret.c @ 1511:5916af64acd4 fuzz

merge from main
author Matt Johnston <matt@ucc.asn.au>
date Sat, 17 Feb 2018 19:29:51 +0800
parents 6dba84798cd5
children
line wrap: on
line diff
--- a/libtomcrypt/src/pk/dsa/dsa_shared_secret.c	Tue Jan 23 23:27:40 2018 +0800
+++ b/libtomcrypt/src/pk/dsa/dsa_shared_secret.c	Sat Feb 17 19:29:51 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$ */