SSCP · Question #1166
A digital signature is made with?
The correct answer is A. A private key from an asymmetric key pair, and includes a hash of the message being signed. A digital signature is created by signing a message's hash with the sender's private key, ensuring message integrity, authenticity, and non-repudiation.
Question
A digital signature is made with?
Options
- AA private key from an asymmetric key pair, and includes a hash of the message being signed
- BA public key from an asymmetric key pair, and includes a hash of the message being signed
- CA private key from a symmetric key pair, and includes a hash of the message being signed
- DA public key from a symmetric key pair, and includes a hash of the message being signed
How the community answered
(53 responses)- A91% (48)
- B2% (1)
- C6% (3)
- D2% (1)
Why each option
A digital signature is created by signing a message's hash with the sender's private key, ensuring message integrity, authenticity, and non-repudiation.
A digital signature utilizes the signer's private key to encrypt a hash of the message, ensuring only the legitimate sender could have produced it and verifying message integrity upon decryption with the public key. This process is fundamental to asymmetric cryptography, where the private key is kept secret and used for signing, while the public key is shared and used for verification.
Signing with a public key is incorrect because the public key is widely distributed and cannot guarantee the authenticity or non-repudiation of the sender.
Symmetric key cryptography uses the same key for encryption and decryption, making it unsuitable for digital signatures where a distinct private key is needed for signing and a public key for verification.
Using a public key from a symmetric key pair is contradictory as symmetric cryptography does not involve public/private key pairs.
Concept tested: Digital signatures and asymmetric cryptography
Source: https://learn.microsoft.com/en-us/windows/win32/seccrypto/digital-signatures
Topics
Community Discussion
No community discussion yet for this question.