Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Server Http and Https
#2
HTTPS is basically the same as HTTP but is run over an encrypted byte stream. once the SSL/TLS protocols establish the secure streams (both direction), what goes over that stream is HTTP. so you need to learn how to make a secure network connection, first. that should involve some authentication where the server's certificate is authenticated by the client. you need to decide if the client is to be authenticated over SSL/TLS (the client must have its own certificate, too) or over HTTP (client sends a userid and password) or is simply not authenticated (most HTTPS web sites do this) at all. you will learn about certificate authority and stuff like that.
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Messages In This Thread
Server Http and Https - by JohnnyCoffee - Sep-18-2022, 08:03 PM
RE: Server Http and Https - by Skaperen - Nov-18-2022, 03:00 AM
RE: Server Http and Https - by Skaperen - Feb-10-2023, 12:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Paramiko Server -- Exception (server): Error reading SSH protocol banner ujlain 3 10,846 Jul-24-2023, 06:52 AM
Last Post: Gribouillis
  HTTP Server JohnnyCoffee 1 3,565 Mar-22-2021, 01:50 AM
Last Post: Larz60+
  http server whit proxy jrcruz 0 3,134 Feb-13-2019, 10:02 AM
Last Post: jrcruz
  Add password to HTTP.server edgarfinchley 1 16,219 Aug-09-2018, 03:17 PM
Last Post: nilamo
  python -m http.server giving invalid syntax echowit 5 9,548 May-17-2018, 02:13 PM
Last Post: echowit
  newbie here - need help with building very basic http server BenSalem 0 2,882 Aug-14-2017, 08:06 AM
Last Post: BenSalem
  HTTPS connect with HTTPS proxy in between sagk 3 5,647 Jun-01-2017, 05:24 AM
Last Post: sagk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020