diff dcrypt/crypto/padding/RFC1321.d @ 27:8b5eaf3c2979

Fixed error in hash message padding reported by Glenn Haecker.
author Thomas Dixon <reikon@reikon.us>
date Sat, 09 May 2009 23:29:20 -0400
parents cd376996cdb3
children ad687db713a4
line wrap: on
line diff
--- a/dcrypt/crypto/padding/RFC1321.d	Sun Mar 01 13:06:48 2009 -0500
+++ b/dcrypt/crypto/padding/RFC1321.d	Sat May 09 23:29:20 2009 -0400
@@ -14,12 +14,15 @@
  * This class implements the padding described in RFC1321 (MD5 spec).
  * Ex. [... 0x80, 0x00 ... 0x00]
  */
-class RFC1321 : BlockCipherPadding {
-    char[] name() {
+class RFC1321 : BlockCipherPadding
+{
+    char[] name()
+    {
         return "RFC1321";   
     }
 
-    ubyte[] pad(uint len) {
+    ubyte[] pad(uint len)
+    {
         ubyte[] output = new ubyte[len];
         
         output[0] = 0x80;
@@ -28,7 +31,8 @@
         return output;
     }
     
-    uint unpad(void[] input_) {
+    uint unpad(void[] input_)
+    {
         ubyte[] input = cast(ubyte[]) input_;
         
         uint len = input.length;
@@ -37,8 +41,7 @@
             if (input[len] != 0) break;
             
         if (input[len] != 0x80)
-            throw new  InvalidPaddingError(
-                    name()~": Incorrect padding.");
+            throw new  InvalidPaddingError(name()~": Incorrect padding.");
                     
         return (input.length - len);
     }