Browse Source

Fix Indentation

Ibrahim Kteish 10 years ago
parent
commit
840cd480fd
1 changed files with 3 additions and 3 deletions
  1. 3 3
      CryptoSwift/SHA2.swift

+ 3 - 3
CryptoSwift/SHA2.swift

@@ -124,9 +124,9 @@ final class SHA2 : HashProtocol {
         
         // hash values
         var hh = [UInt32]()
-		variant.h.forEach {(h) -> () in
-			hh.append(UInt32(h))
-		}
+        variant.h.forEach {(h) -> () in
+            hh.append(UInt32(h))
+        }
 		
         // append message length, in a 64-bit big-endian integer. So now the message length is a multiple of 512 bits.
         tmpMessage.appendBytes((message.length * 8).bytes(64 / 8));