ソフトウェア開発会社の管理者は、会社のアプリケーションの整合性をデジタル署名で保護したいと考えています。開発者は、すべてのアプリケーションで署名プロセスが失敗し続けると報告しています。ただし、署名に使用されるのと同じ鍵ペアは、 Web サイトで適切に機能し、有効であり、信頼できる CA によって発行されています。次のうち、署名が失敗した原因として最も可能性が高いのはどれですか?
正解:C
Explanation Digital signatures require the use of a cryptographic key pair, which consists of a private key used to sign the application and a public key used to verify the signature. If the certificate used for signing the application is set for the wrong key usage, then the signature will fail. This can happen if the certificate is set for encrypting data instead of signing data, or if the certificate is set for the wrong algorithm, such as using an RSA key for an ECDSA signature.