Hello
Initial problem solved. It was the lack of SNI: https://security.stackexchange.com/quest...ng-tls-1-2
Solved in this way:
However, I have no acces to https://indy.fulgan.com/SSL/ yet. Any news?
Thanks and good health
Initial problem solved. It was the lack of SNI: https://security.stackexchange.com/quest...ng-tls-1-2
Solved in this way:
Code:
procedure TForm.OnStatusInfoEx(ASender: TObject; const AsslSocket: PSSL;
const AWhere, Aret: TIdC_INT; const AType, AMsg: String);
begin
SSL_set_tlsext_host_name(AsslSocket, 'api.server.com');
end;
Code:
TheHandler := TIdSSLIOHandlerSocketOpenSSL.Create(nil);
TheHandler.OnStatusInfoEx := OnStatusInfoEx;
However, I have no acces to https://indy.fulgan.com/SSL/ yet. Any news?
Thanks and good health