Encrypted data is corrupt
I am considering purchasing a SecureBridge license to use in an older project developed with Delphi 7, I have installed the trial version.
But this code gives error: Encrypted data is corrupt
- procedure TForm1.Button1Click(Sender: TObject);
- Var Request: TScHttpWebRequest;
- Response: TScHttpWebResponse;
- begin
- Request:= TScHttpWebRequest.Create('https://jsonplaceholder.typicode.com/users');
- Try
- Response:= Request.GetResponse;
- If Request.IsSecure Then Memo1.Lines.Text:= Response.ReadAsString;
- Response.Free;
- Except On Error: Exception Do
- Begin
- Memo1.Lines.Text:= 'Error:' + sLineBreak +
- Error.Message;
- End;
- End;
- Request.Free;
- End;
How can I fix this error to continue testing?