Developing and testing features or extensions for Microsoft Edge
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This is a secure 128-bit SSL Encrypted Payment how to fix
Developing and testing features or extensions for Microsoft Edge
Answer accepted by question author
AI answer
The text “This is a secure 128-bit SSL Encrypted Payment” is only a message; it does not itself make a page secure. To “fix” or validate this in Microsoft Edge or a web app, the site must actually use HTTPS with a valid certificate and modern TLS/SSL configuration.
To ensure the payment page is really secure:
https:// and shows a closed padlock icon.http://, it is not encrypted, regardless of any text claiming “secure 128-bit SSL.”http://..., switch to https://... as required by the server.https:// (recommended for payment pages), orhttp:// is rejected with HTTP 403.4, forcing https://.In summary, to “fix” this, ensure the site is actually served over HTTPS with a valid certificate and, if needed, configure IIS to require SSL instead of just displaying a static security message.
References:
Hello @victor luna ,
Thank you for sharing your question
If you are only visiting the payment page in Edge, the safest check is not the page text itself. The important part is whether the page opens over https:// and Edge does not show a certificate warning. If the page was opened from an email, text message, or popup, I would avoid paying there and instead go to the company’s official website directly. Microsoft’s guidance on safer online payment and scam avoidance is here:
https://support.microsoft.com/topic/making-safer-financial-transactions-online-d8e8972b-dc56-4ea2-a…
If you own or manage the site, then this is a web-server configuration issue rather than an Edge issue. I would recommend verifying these:
https://, not http://.https://.If this is an IIS-hosted site, Microsoft’s guidance for enabling SSL and enforcing secure connections is here:
https://learn.microsoft.com/troubleshoot/developer/webapps/iis/www-authentication-authorization/ena…
If you are testing locally in Visual Studio/IIS Express, Microsoft also documents enabling SSL for the project, using the SSL URL, and trusting the local development certificate:
https://learn.microsoft.com/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-4…
If you can clarify whether you are the site owner or an end user, I can narrow the answer further.
If you found my response helpful or informative, I would greatly appreciate it if you could follow this guidance or provide feedback.
Thank you.