فهرست منبع

Minor cleanup.

Martijn Laan 11 ماه پیش
والد
کامیت
d5927102fa
1فایلهای تغییر یافته به همراه2 افزوده شده و 3 حذف شده
  1. 2 3
      Components/PBKDF2.pas

+ 2 - 3
Components/PBKDF2.pas

@@ -14,7 +14,6 @@ interface
 uses
 uses
   System.SysUtils;
   System.SysUtils;
 
 
-
 function PBKDF2SHA256(const Password, Salt: TBytes; const Iterations, KeyLength: Integer): TBytes; overload;
 function PBKDF2SHA256(const Password, Salt: TBytes; const Iterations, KeyLength: Integer): TBytes; overload;
 function PBKDF2SHA256(const Password: String; const Salt: TBytes; const Iterations, KeyLength: Integer): TBytes; overload;
 function PBKDF2SHA256(const Password: String; const Salt: TBytes; const Iterations, KeyLength: Integer): TBytes; overload;
 
 
@@ -71,7 +70,7 @@ end;
 
 
 {$C+}
 {$C+}
 
 
-procedure TestPBKDF2SHA;
+procedure TestPBKDF2SHA256;
 
 
   function AnsiStringToBytes(const S: AnsiString): TBytes;
   function AnsiStringToBytes(const S: AnsiString): TBytes;
   begin
   begin
@@ -109,7 +108,7 @@ begin
 end;
 end;
 
 
 initialization
 initialization
-  TestPBKDF2SHA;
+  TestPBKDF2SHA256;
 
 
 {$ENDIF}
 {$ENDIF}