OnGetPassword is an event that requests the password for unlocking the private key stored in a file. You can simply set the Password variable with the proper password or you can add some dialog box that prompts user for the password.
procedure TForm1.IdServerInterceptOpenSSL1GetPassword(var Password: String);
begin
Password := 'aaaa';
end;