Run util/openssl-format-source -v -c .
[openssl.git] / crypto / des / rand_key.c
index 23981655685800ea24a459af3b7694d9df26eb99..b75cc5f9b0fa3c53c37e9608136cc335b578e0fe 100644 (file)
@@ -7,7 +7,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/rand.h>
 
 int DES_random_key(DES_cblock *ret)
-       {
-       do
-               {
-               if (RAND_bytes((unsigned char *)ret, sizeof(DES_cblock)) != 1)
-                       return (0);
-               } while (DES_is_weak_key(ret));
-       DES_set_odd_parity(ret);
-       return (1);
-       }
+{
+    do {
+        if (RAND_bytes((unsigned char *)ret, sizeof(DES_cblock)) != 1)
+            return (0);
+    } while (DES_is_weak_key(ret));
+    DES_set_odd_parity(ret);
+    return (1);
+}