📄 lbproc.pas
字号:
end;
{ -------------------------------------------------------------------------- }
procedure LQCEncryptFileCBC(const InFile, OutFile : string;
const Key : TKey128; Encrypt : Boolean);
var
InStream, OutStream : TStream;
begin
InStream := TFileStream.Create(InFile, fmOpenRead or fmShareDenyWrite);
try
OutStream := TFileStream.Create(OutFile, fmCreate);
try
LQCEncryptStreamCBC(InStream, OutStream, Key, Encrypt);
finally
OutStream.Free;
end;
finally
InStream.Free;
end;
end;
{ -------------------------------------------------------------------------- }
procedure LQCEncryptStream(InStream, OutStream : TStream;
const Key : TKey128; Encrypt : Boolean);
var
I : LongInt;
Block : TLQCBlock;
BlockCount : LongInt;
begin
{get the number of blocks in the file}
BlockCount := (InStream.Size div SizeOf(Block));
{when encrypting, make sure we have a block with at least one free}
{byte at the end. used to store the odd byte count value}
if Encrypt then
Inc(BlockCount);
{process all except the last block}
for I := 1 to BlockCount - 1 do begin
if InStream.Read(Block, SizeOf(Block)) <> SizeOf(Block) then
raise ECipherException.Create(SInvalidFileFormat);
EncryptLQC(Key, Block, Encrypt);
OutStream.Write(Block, SizeOf(Block));
if Assigned(LbOnProgress) then {!!.06a}
if InStream.Position mod LbProgressSize = 0 then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
if Encrypt then begin
FillChar(Block, SizeOf(Block), #0);
{set actual number of bytes to read}
I := (InStream.Size mod SizeOf(Block));
if InStream.Read(Block, I) <> I then
raise ECipherException.Create(SInvalidFileFormat);
{store number of bytes as last byte in last block}
PByteArray(@Block)^[SizeOf(Block)-1] := I;
{encrypt and save full block}
EncryptLQC(Key, Block, Encrypt);
OutStream.Write(Block, SizeOf(Block));
end else begin
{encrypted file is always a multiple of the block size}
if InStream.Read(Block, SizeOf(Block)) <> SizeOf(Block) then
raise ECipherException.Create(SInvalidFileFormat);
EncryptLQC(Key, Block, Encrypt);
{get actual number of bytes encoded}
I := PByteArray(@Block)^[SizeOf(Block)-1];
{save valid portion of block}
OutStream.Write(Block, I);
end;
if Assigned(LbOnProgress) then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
{ -------------------------------------------------------------------------- }
procedure LQCEncryptStreamCBC(InStream, OutStream : TStream;
const Key : TKey128; Encrypt : Boolean);
var
I : LongInt;
Block : TLQCBlock;
IV : TLQCBlock;
Work : TLQCBlock;
BlockCount : LongInt;
{$IFDEF LINUX}
fd : pIOFile;
{$ENDIF}
begin
{get the number of blocks in the file}
BlockCount := (InStream.Size div SizeOf(Block));
if Encrypt then begin
{set up an initialization vector (IV)}
{$IFDEF MSWINDOWS}
Block[0] := timeGetTime;
Block[1] := timeGetTime;
{$ENDIF}
{$IFDEF LINUX}
fd := fopen( '/dev/random', 'r' );
fread( @Block[0], SizeOf( byte ), SizeOf( Block[0] ), fd );
fread( @Block[1], SizeOf( byte ), SizeOf( Block[1] ), fd );
fclose( fd );
{$ENDIF}
EncryptLQC(Key, Block, Encrypt);
OutStream.Write(Block, SizeOf(Block));
IV := Block;
end else begin
{read the frist block to prime the IV}
InStream.Read(Block, SizeOf(Block));
Dec(BlockCount);
IV := Block;
end;
{when encrypting, make sure we have a block with at least one free}
{byte at the end. used to store the odd byte count value}
if Encrypt then
Inc(BlockCount);
{process all except the last block}
for I := 1 to BlockCount - 1 do begin
if InStream.Read(Block, SizeOf(Block)) <> SizeOf(Block) then
raise ECipherException.Create(SInvalidFileFormat);
if Encrypt then begin
EncryptLQCCBC(Key, IV, Block, Encrypt);
IV := Block;
end else begin
Work := Block;
EncryptLQCCBC(Key, IV, Block, Encrypt);
IV := Work;
end;
OutStream.Write(Block, SizeOf(Block));
if Assigned(LbOnProgress) then {!!.06a}
if InStream.Position mod LbProgressSize = 0 then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
if Encrypt then begin
FillChar(Block, SizeOf(Block), #0);
{set actual number of bytes to read}
I := (InStream.Size mod SizeOf(Block));
if InStream.Read(Block, I) <> I then
raise ECipherException.Create(SInvalidFileFormat);
{store number of bytes as last byte in last block}
PByteArray(@Block)^[SizeOf(Block)-1] := I;
{encrypt and save full block}
EncryptLQCCBC(Key, IV, Block, Encrypt);
OutStream.Write(Block, SizeOf(Block));
end else begin
{encrypted file is always a multiple of the block size}
if InStream.Read(Block, SizeOf(Block)) <> SizeOf(Block) then
raise ECipherException.Create(SInvalidFileFormat);
EncryptLQCCBC(Key, IV, Block, Encrypt);
{get actual number of bytes encoded}
I := PByteArray(@Block)^[SizeOf(Block)-1];
{save valid portion of block}
OutStream.Write(Block, I);
end;
if Assigned(LbOnProgress) then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
{ == LockBox Stream Cipher (LSC) =========================================== }
procedure LSCEncryptFile(const InFile, OutFile : string;
const Key; KeySize : Integer);
var
Context : TLSCContext;
InStream : TStream;
OutStream : TStream;
BytesRead : LongInt;
Buf : array[1..2048] of Byte;
begin
InitEncryptLSC(Key, KeySize, Context);
InStream := TFileStream.Create(InFile, fmOpenRead or fmShareDenyWrite);
try
OutStream := TFileStream.Create(OutFile, fmCreate);
try
repeat
BytesRead := InStream.Read(Buf, SizeOf(Buf));
if BytesRead > 0 then begin
EncryptLSC(Context, Buf, BytesRead);
OutStream.WriteBuffer(Buf, BytesRead);
if Assigned(LbOnProgress) then {!!.06a}
if InStream.Position mod LbProgressSize = 0 then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
until BytesRead < SizeOf(Buf);
finally
OutStream.Free;
end;
finally
if Assigned(LbOnProgress) then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
InStream.Free;
end;
end;
{ == Random Number Generation (RNG) Ciphers ================================ }
procedure RNG32EncryptFile(const InFile, OutFile : string; Key : LongInt);
var
Context : TRNG32Context;
InStream : TStream;
OutStream : TStream;
BytesRead : LongInt;
Buf : array[1..2048] of Byte;
begin
InitEncryptRNG32(Key, Context);
InStream := TFileStream.Create(InFile, fmOpenRead or fmShareDenyWrite);
try
OutStream := TFileStream.Create(OutFile, fmCreate);
try
repeat
BytesRead := InStream.Read(Buf, SizeOf(Buf));
if BytesRead > 0 then begin
EncryptRNG32(Context, Buf, BytesRead);
OutStream.WriteBuffer(Buf, BytesRead);
if Assigned(LbOnProgress) then {!!.06a}
if InStream.Position mod LbProgressSize = 0 then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
until BytesRead < SizeOf(Buf);
finally
OutStream.Free;
end;
finally
if Assigned(LbOnProgress) then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
InStream.Free;
end;
end;
{ -------------------------------------------------------------------------- }
procedure RNG64EncryptFile(const InFile, OutFile : string;
KeyHi, KeyLo : LongInt);
var
Context : TRNG64Context;
InStream : TStream;
OutStream : TStream;
BytesRead : LongInt;
Buf : array[1..2048] of Byte;
begin
InitEncryptRNG64(KeyHi, KeyLo, Context);
InStream := TFileStream.Create(InFile, fmOpenRead or fmShareDenyWrite);
try
OutStream := TFileStream.Create(OutFile, fmCreate);
try
repeat
BytesRead := InStream.Read(Buf, SizeOf(Buf));
if BytesRead > 0 then begin
EncryptRNG64(Context, Buf, BytesRead);
OutStream.WriteBuffer(Buf, BytesRead);
if Assigned(LbOnProgress) then {!!.06a}
if InStream.Position mod LbProgressSize = 0 then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
until BytesRead < SizeOf(Buf);
finally
OutStream.Free;
end;
finally
if Assigned(LbOnProgress) then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
InStream.Free;
end;
end;
{ == Triple DES ============================================================ }
procedure TripleDESEncryptFile(const InFile, OutFile : string;
const Key : TKey128; Encrypt : Boolean);
var
InStream, OutStream : TStream;
begin
InStream := TFileStream.Create(InFile, fmOpenRead or fmShareDenyWrite);
try
OutStream := TFileStream.Create(OutFile, fmCreate);
try
TripleDESEncryptStream(InStream, OutStream, Key, Encrypt);
finally
OutStream.Free;
end;
finally
InStream.Free;
end;
end;
{ -------------------------------------------------------------------------- }
procedure TripleDESEncryptFileCBC(const InFile, OutFile : string;
const Key : TKey128; Encrypt : Boolean);
var
InStream, OutStream : TStream;
begin
InStream := TFileStream.Create(InFile, fmOpenRead or fmShareDenyWrite);
try
OutStream := TFileStream.Create(OutFile, fmCreate);
try
TripleDESEncryptStreamCBC(InStream, OutStream, Key, Encrypt);
finally
OutStream.Free;
end;
finally
InStream.Free;
end;
end;
{ -------------------------------------------------------------------------- }
procedure TripleDESEncryptStream(InStream, OutStream : TStream;
const Key : TKey128; Encrypt : Boolean);
var
I : LongInt;
Block : TDESBlock;
Context : TTripleDESContext;
BlockCount : LongInt;
begin
InitEncryptTripleDES(Key, Context, Encrypt);
{get the number of blocks in the file}
BlockCount := (InStream.Size div SizeOf(Block));
{when encrypting, make sure we have a block with at least one free}
{byte at the end. used to store the odd byte count value}
if Encrypt then
Inc(BlockCount);
{process all except the last block}
for I := 1 to BlockCount - 1 do begin
if InStream.Read(Block, SizeOf(Block)) <> SizeOf(Block) then
raise ECipherException.Create(SInvalidFileFormat);
EncryptTripleDES(Context, Block);
OutStream.Write(Block, SizeOf(Block));
if Assigned(LbOnProgress) then {!!.06a}
if InStream.Position mod LbProgressSize = 0 then {!!.06a}
LbOnProgress (InStream.Position, InStream.Size); {!!.06a}
end;
if Encrypt then begin
FillChar(Block, SizeOf(Block), #0);
{set actual number of bytes to read}
I := (InStream.Size mod SizeOf(Block));
if InStream.Read(Block, I) <> I then
raise ECipherException.Create(SInvalidFileFormat);
{store number of bytes as last byte in last block}
PByteArray(@Block)^[SizeOf(Block)-1] := I;
{encrypt and save full block}
EncryptTripleDES(Context, Block);
OutStream.Write(Block, SizeOf(Block));
end else begin
{encrypted file is always a multiple of the block size}
if InStream.Read(Block, SizeOf(Block)) <> SizeOf(Block) then
raise ECipherException.Create(SInvalidFileFormat);
EncryptTripleDES(Context, Block);
{get actual number of bytes encoded}
I := PByteArray(@Block)^[SizeOf(Block)-1];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -