diff dcrypt/crypto/padding/X923.d @ 10:cd376996cdb3

Renamed SymmetricCipher back to Cipher (we don't support any other kind atm, I'll deal with it when we do.). Added BlockCipherWrapper for the encryption of arbitrary streams with or without padding. Removed hashByName, and replaced it with createHash. Re-did the high-level API, and filled out Crypto. Added cipher creation via createCipher. Added dsk to the CONTRIBUTORS file for helping with the design of the high-level API.
author Thomas Dixon <reikon@reikon.us>
date Wed, 20 Aug 2008 20:08:07 -0400
parents 0e08791a1418
children 8b5eaf3c2979
line wrap: on
line diff
--- a/dcrypt/crypto/padding/X923.d	Mon Aug 18 01:19:18 2008 -0400
+++ b/dcrypt/crypto/padding/X923.d	Wed Aug 20 20:08:07 2008 -0400
@@ -22,18 +22,16 @@
     /* Assumes input_ is a multiple of the underlying
      * block cipher's block size.
      */
-    uint padBlock(void[] input_, uint inOff) {
-        ubyte[] input = cast(ubyte[]) input_;
-
-        ubyte len = (input.length - inOff);
+    ubyte[] pad(uint len) {
+        ubyte[] output = new ubyte[len];
         
-        input[inOff..input.length-1] = 0;
-        input[input.length-1] = len;
+        output[0..len-1] = 0;
+        output[output.length-1] = cast(ubyte)len;
 
-        return len;
+        return output;
     }
     
-    uint padLength(void[] input_) {
+    uint unpad(void[] input_) {
         ubyte[] input = cast(ubyte[]) input_;
         
         ubyte len = input[input.length-1];