我是加密/解密例程的新手。 我正在尝试使用我希望将我的应用程序迁移到的Lockbox3,以便解密使用DCPCrypt加密的字符串。 假设我有这个功能来加密:
function TfrmMain.Encrypt(value: string): string;
var
CipherR : TDCP_rijndael;
m, sm, Key, IV: string;
Data: string;
begin
Key := PadWithZeros(m, KeySize);
IV := PadWithZeros(sm, BlockSize);
Data := PadWithZeros(value, BlockSize);
m := 'SOMEWORDSOMEWORD';
sm := 'WORDSOMEWORDSOME';
Key := PadWithZeros(m, KeySize);
IV := PadWithZeros(sm, BlockSize);
CipherR := TDCP_rijndael.Create(Self);
if Length(m) <= 16 then
CipherR.Init(Key[1], 128, @IV[1])
else if Length(m) <= 24 then
CipherR.Init(Key[1], 192, @IV[1])
else
CipherR.Init(Key[1], 256, @IV[1]);
CipherR.EncryptCBC(Data[1], Data[1], Length(Data));
CipherR.Free;
FillChar(Key[1], Length(Key), 0);
code := Base64EncodeStr(Data);
Result := code;
end;
我现在要解密使用Lockbox3以这种方式加密的字符串,但是我应该使用加密函数中使用的值作为m和sm,我知道如何做到 - 如果可以的话。 我想使用sm值来设置Codec1.Password但这不起作用。
有什么想法吗? 感谢大家的任何建议。
答案 0 :(得分:0)
怎么样......
function TfrmMain.Encrypt( const value: string): string;
var
Codec: TCodec;
Lib : TCyptographicLibrary;
Ciphertext: ansistring;
begin
Codec := TCodec.Create( nil);
Lib := TCyptographicLibrary.Create( nil);
Codec.CryptoLibrary := Lib;
Codec.StreamCipherId := BlockCipher_ProgId;
Codec.BlockCipherId := 'native.AES-256'; // AES-256 cipher
Codec.ChainModeId := CBC_ProgId; // CBC chaining
Codec.Password := 'WORDSOMEWORDSOME';
Codec.EncryptString( Value, Ciphertext); // Assumes UNICODE supporting compiler.
result := Ciphertext; // Implicit utf8string --> unicode string coersion here.
Codec.Burn;
Lib.Free;
Codec.Free;
end;
function TfrmMain.ShowCiphertextOfSomeWords;
begin
ShowMessage( 'base64 of ciphertext = ' + Encrypt( 'SOMEWORDSOMEWORD'))
end;
所有这些都显示在捆绑的演示程序和在线帮助中。捆绑的演示程序和在线帮助应该是您的第一个参考点。请在访问Stackoverflow或论坛之前检查这些内容,因为回答者会倾向于重复已经为您的利益而写的内容。