Run util/openssl-format-source -v -c .
[openssl.git] / crypto / dh / dh_rfc5114.c
index 0d04a6a00fb8638cce04bbf09e7397c6081da496..4a84ced6ec69a483c9c10480c02c43e73577a8bb 100644 (file)
@@ -1,5 +1,6 @@
-/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
- * project 2011.
+/*
+ * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
+ * 2011.
  */
 /* ====================================================================
  * Copyright (c) 2011 The OpenSSL Project.  All rights reserved.
@@ -9,7 +10,7 @@
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer. 
+ *    notice, this list of conditions and the following disclaimer.
  *
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in
 #include <openssl/bn.h>
 
 #define make_dh_bn(x) \
-       const extern BIGNUM _bignum_dh##x##_p;\
-       const extern BIGNUM _bignum_dh##x##_g;\
-       const extern BIGNUM _bignum_dh##x##_q;
+        const extern BIGNUM _bignum_dh##x##_p;\
+        const extern BIGNUM _bignum_dh##x##_g;\
+        const extern BIGNUM _bignum_dh##x##_q;
 
-/* Macro to make a DH structure from BIGNUM data. NB: although just copying
+/*
+ * Macro to make a DH structure from BIGNUM data. NB: although just copying
  * the BIGNUM static pointers would be more efficient we can't as they get
  * wiped using BN_clear_free() when DH_free() is called.
  */
 
 #define make_dh(x) \
 DH * DH_get_##x(void) \
-       { \
-       DH *dh; \
-       dh = DH_new(); \
-       if (!dh) \
-               return NULL; \
-       dh->p = BN_dup(&_bignum_dh##x##_p); \
-       dh->g = BN_dup(&_bignum_dh##x##_g); \
-       dh->q = BN_dup(&_bignum_dh##x##_q); \
-       if (!dh->p || !dh->q || !dh->g) \
-               { \
-               DH_free(dh); \
-               return NULL; \
-               } \
-       return dh; \
-       }
+        { \
+        DH *dh; \
+        dh = DH_new(); \
+        if (!dh) \
+                return NULL; \
+        dh->p = BN_dup(&_bignum_dh##x##_p); \
+        dh->g = BN_dup(&_bignum_dh##x##_g); \
+        dh->q = BN_dup(&_bignum_dh##x##_q); \
+        if (!dh->p || !dh->q || !dh->g) \
+                { \
+                DH_free(dh); \
+                return NULL; \
+                } \
+        return dh; \
+        }
 
 make_dh_bn(1024_160)
 make_dh_bn(2048_224)
@@ -95,5 +97,3 @@ make_dh_bn(2048_256)
 make_dh(1024_160)
 make_dh(2048_224)
 make_dh(2048_256)
-
-