comparison dcrypt/crypto/errors/ShortBufferError.d @ 28:ad687db713a4

Further reworked the code for hash padding. Replaced all instances of 'char[]' with 'string' and removed a few 'const' modifiers as per Glenn Haecker's patch for D2 compatibility. Updated CONTRIBUTORS file.
author Thomas Dixon <reikon@reikon.us>
date Sun, 10 May 2009 22:38:48 -0400
parents 0e08791a1418
children
comparison
equal deleted inserted replaced
27:8b5eaf3c2979 28:ad687db713a4
7 */ 7 */
8 8
9 module dcrypt.crypto.errors.ShortBufferError; 9 module dcrypt.crypto.errors.ShortBufferError;
10 10
11 class ShortBufferError : Exception { 11 class ShortBufferError : Exception {
12 this(char[] msg) { super(msg); } 12 this(string msg) { super(msg); }
13 } 13 }