Encrypted data is corrupt

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

  1. procedure TForm1.Button1Click(Sender: TObject);
  2. Var Request: TScHttpWebRequest;
  3.     Response: TScHttpWebResponse;
  4. begin
  5.      Request:= TScHttpWebRequest.Create('https://jsonplaceholder.typicode.com/users');
  6.      Try
  7.         Response:= Request.GetResponse;
  8.         If Request.IsSecure Then Memo1.Lines.Text:= Response.ReadAsString;
  9.         Response.Free;
  10.      Except On Error: Exception Do
  11.             Begin
  12.                  Memo1.Lines.Text:= 'Error:' + sLineBreak +
  13.                                     Error.Message;
  14.             End;
  15.      End;
  16.      Request.Free;
  17. End;

And it seems to be a component bug, because accessing the https://jsonplaceholder.typicode.com/users resource works fine when accessed by a web browser.

How can I fix this error to continue testing?