comparison dcrypt/crypto/errors/LimitReachedError.d @ 15:0de48552be35

Added LimitReachedError and PBKDF2. Fixed some errors with the previous commit in PRNGFromHash, etc. Re-implemented HMAC. Changed the name() format of HMAC and PBKDF2.
author Thomas Dixon <reikon@reikon.us>
date Wed, 19 Nov 2008 19:30:52 -0500
parents
children ad687db713a4
comparison
equal deleted inserted replaced
14:5ce3012f1def 15:0de48552be35
1 /**
2 * This file is part of the dcrypt project.
3 *
4 * Copyright: Copyright (C) dcrypt contributors 2008. All rights reserved.
5 * License: MIT
6 * Authors: Thomas Dixon
7 */
8
9 module dcrypt.crypto.errors.LimitReachedError;
10
11 class LimitReachedError : Exception {
12 this(char[] msg) { super(msg); }
13 }