Skip to content

Commit 027d57e

Browse files
committed
Preparation for applying pull request #53
1 parent 0da30da commit 027d57e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Source/DECHashBase.pas

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ TDECHashClass = class of TDECHash;
4949
TDECHash = class(TDECObject) // does not find methods of the interface as it
5050
// searches for AnsiString instead of RawByteString
5151
// and thus does not find that
52+
private
5253
{$ELSE}
5354
TDECHash = class(TDECObject, IDECHash)
54-
{$ENDIF}
5555
strict private
56+
{$ENDIF}
5657
/// <summary>
5758
/// Raises an EDECHashException hash algorithm not initialized exception
5859
/// </summary>

Source/DECHashInterface.pas

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
under the License.
1616
*****************************************************************************}
1717
unit DECHashInterface;
18+
{$INCLUDE DECOptions.inc}
1819

1920
interface
2021

@@ -385,6 +386,9 @@ interface
385386
write SetRounds;
386387
end;
387388

389+
/// <summary>
390+
/// Interface for passwordn hash algorithms
391+
/// </summary>
388392
IDECHashPassword = Interface(IDECHash)
389393
['{B4D8A80C-1F42-46F8-9288-D71ECCFE6F02}']
390394
/// <summary>

0 commit comments

Comments
 (0)