Looks like no one added any tags here yet for you.
How does an SSL/TLS connection work during initiation?
An SSL/TLS connection is initiated when a client contacts a server, starting with a handshake. The server sends its digital certificate and public key for the client to confirm its identity. They then agree on an encryption algorithm and generate symmetric session keys.
What is a Digital Signature process and verification method?
A digital signature is created by hashing a message to produce a digest, which is then encrypted with the sender's private key. Upon receipt, the message and digital signature are decrypted with the receiver's private key, and the digital signature is decrypted with the sender's public key. The decrypted message is hashed again to produce a new digest. If the new digest matches the original, the message integrity is confirmed.