An enterprise legal technology organization is upgrading its electronic contract processing platform. The platform must implement controls to guarantee non-repudiation so that signers cannot plausibly deny their participation in executing an agreement. Which of the following technical mechanisms directly satisfy the requirement for non-repudiation? (Select TWO.)
- Digitally signing document hashes using asymmetric private keys bound to individual signersAnswer
- Validating identity using Public Key Infrastructure (PKI) digital certificates issued by a trusted Certificate AuthorityAnswer
- CGenerating Hash-based Message Authentication Codes (HMAC) using a symmetric secret key shared between servers
- DEnforcing Role-Based Access Control (RBAC) rules to restrict contract modification permissions to legal team members
Answer
The mechanisms that directly support non-repudiation are digitally signing document hashes using asymmetric private keys bound to individual signers and validating identity using PKI digital certificates issued by a trusted Certificate Authority.
Non-repudiation provides assurance that the sender of data cannot deny sending it. This is achieved through asymmetric digital signatures, where only the individual possessing the unique private key can generate the signature, and PKI digital certificates, which officially bind that public/private key pair to an authenticated individual identity.
Step-by-Step Solution
Key Concept
Non-repudiation requires asymmetric cryptography and digital signatures anchored by PKI certificates, distinguishing it from integrity (hashing) and authorization controls.