In the TDECHashAuthentication source code there are no implementation of DigestSize, and the exception raised from here:
class function TDECHash.DigestSize: UInt32;
begin
// C++ does not support virtual static functions thus the base cannot be
// marked 'abstract'. This is our workaround:
raise EDECAbstractError.Create(GetShortClassName);
end;
I'm having
Abstract error: TDECHashAuthentication is not implemented
error when calling PBKDF2 functionIn the TDECHashAuthentication source code there are no implementation of DigestSize, and the exception raised from here:
Please help, how to make working PBKDF2 ?
[help wanted, delphi, question]