Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fpc hot Fixes #58

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DEC - Delphi Encryption Compendium
Version 6.5

Copyright (c) 2018 - 2020 Norman Gallery (ng931884 [at] gmx [dot] de)
Copyright (c) 2016 - 2022 Markus Humm (markus [dot] humm [at] googlemail [dot] com) (main contact)
Copyright (c) 2016 - 2023 Markus Humm (markus [dot] humm [at] googlemail [dot] com) (main contact)
Copyright (c) 2008 - 2019 Frederik A. Winkelsdorf (winkelsdorf [at] gmail [dot] com)
Copyright (c) 1999 - 2008 Hagen Reddmann (HaReddmann [at] T-Online [dot] de)

Expand All @@ -27,6 +27,7 @@ Gloegg
pierangelodalben
denovosoftware
alexrayne
Stevie

Parts of the work loosely based on the works of Wolfgang Erhardt, who is
unfortunately dead already.
Expand Down
1 change: 1 addition & 0 deletions Source/DECCipherInterface.pas
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
under the License.
*****************************************************************************}
unit DECCipherInterface;
{$INCLUDE DECOptions.inc}

interface

Expand Down
2 changes: 1 addition & 1 deletion Source/DECHashBase.pas
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ TDECHashClass = class of TDECHash;
TDECHash = class(TDECObject) // does not find methods of the interface as it
// searches for AnsiString instead of RawByteString
// and thus does not find that
private
protected
{$ELSE}
TDECHash = class(TDECObject, IDECHash)
strict private
Expand Down