nerdexam
F5

101 · Question #688

A messaging system digitally signs messages to ensure non-repudiation of the sender. Which component should the receiver use to validate the message?

The correct answer is A. Public Key. Digital signatures use asymmetric cryptography where the sender signs with their private key and the receiver validates using the sender's public key to confirm authenticity and non-repudiation.

Section 4: Security Basics

Question

A messaging system digitally signs messages to ensure non-repudiation of the sender. Which component should the receiver use to validate the message?

Options

  • APublic Key
  • BSSL extension
  • CA negotiated security algorithm
  • Dprivate Key

How the community answered

(62 responses)
  • A
    77% (48)
  • B
    3% (2)
  • C
    13% (8)
  • D
    6% (4)

Why each option

Digital signatures use asymmetric cryptography where the sender signs with their private key and the receiver validates using the sender's public key to confirm authenticity and non-repudiation.

APublic KeyCorrect

The receiver uses the sender's public key to decrypt and verify the digital signature against the message hash, confirming the message was signed by the claimed sender and has not been altered. This asymmetric relationship - sign with private, verify with public - is the cryptographic foundation of non-repudiation because only the true owner possesses the private key used to produce the signature.

BSSL extension

SSL extensions relate to TLS certificate field processing and are not the key component a receiver uses to validate a digital signature.

CA negotiated security algorithm

A negotiated security algorithm describes cipher suite agreement during a TLS handshake, not the specific cryptographic key used to verify a signature.

Dprivate Key

The private key is held exclusively by the sender to create the signature - it is never shared with or used by the receiver for validation.

Concept tested: Digital signature validation using asymmetric public key

Source: https://learn.microsoft.com/en-us/windows/win32/seccrypto/digital-signatures

Topics

#digital signatures#non-repudiation#public key cryptography#PKI

Community Discussion

No community discussion yet for this question.

Full 101 Practice