コード例 #1
0
        public override VerifyResult Verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature, CancellationToken cancellationToken)
        {
            Argument.AssertNotNull(digest, nameof(digest));
            Argument.AssertNotNull(signature, nameof(signature));

            HashAlgorithmName hashAlgorithm = algorithm.GetHashAlgorithmName();

            if (hashAlgorithm == default)
            {
                KeysEventSource.Singleton.AlgorithmNotSupported(nameof(Verify), algorithm);
                return(null);
            }

            RSASignaturePadding padding = algorithm.GetRsaSignaturePadding();

            if (padding is null)
            {
                KeysEventSource.Singleton.AlgorithmNotSupported(nameof(Verify), algorithm);
                return(null);
            }

            using RSA rsa = KeyMaterial.ToRSA();
            bool isValid = rsa.VerifyHash(digest, signature, hashAlgorithm, padding);

            return(new VerifyResult
            {
                Algorithm = algorithm,
                IsValid = isValid,
                KeyId = KeyMaterial.Id,
            });
        }
コード例 #2
0
        public override VerifyResult Verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature, CancellationToken cancellationToken)
        {
            Argument.AssertNotNull(digest, nameof(digest));
            Argument.AssertNotNull(signature, nameof(signature));

            HashAlgorithmName hashAlgorithm = algorithm.GetHashAlgorithmName();

            if (hashAlgorithm == default)
            {
                // TODO: Log that we don't support the given algorithm.
                return(null);
            }

            RSASignaturePadding padding = algorithm.GetRsaSignaturePadding();

            if (padding is null)
            {
                // TODO: Log that we don't support the given algorithm.
                return(null);
            }

            using RSA rsa = KeyMaterial.ToRSA();
            bool isValid = rsa.VerifyHash(digest, signature, hashAlgorithm, padding);

            return(new VerifyResult
            {
                Algorithm = algorithm,
                IsValid = isValid,
                KeyId = KeyMaterial.Id,
            });
        }
コード例 #3
0
        private byte[] Encrypt(byte[] data, RSAEncryptionPadding padding)
        {
            if (padding is null)
            {
                // TODO: Log that we don't support the given algorithm.
                return(null);
            }

            using RSA rsa = KeyMaterial.ToRSA(true);
            return(rsa.Encrypt(data, padding));
        }
コード例 #4
0
        private byte[] Decrypt(byte[] data, RSAEncryptionPadding padding)
        {
            // A private key is required to decrypt. Send to the server.
            if (MustRemote)
            {
                // TODO: Log that we need a private key.
                return(null);
            }

            if (padding is null)
            {
                // TODO: Log that we don't support the given algorithm.
                return(null);
            }

            using RSA rsa = KeyMaterial.ToRSA();
            return(rsa.Decrypt(data, padding));
        }
コード例 #5
0
        public override SignResult Sign(SignatureAlgorithm algorithm, byte[] digest, CancellationToken cancellationToken)
        {
            Argument.AssertNotNull(digest, nameof(digest));

            ThrowIfTimeInvalid();

            // A private key is required to sign. Send to the server.
            if (MustRemote)
            {
                KeysEventSource.Singleton.PrivateKeyRequired(nameof(Sign));
                return(null);
            }

            HashAlgorithmName hashAlgorithm = algorithm.GetHashAlgorithmName();

            if (hashAlgorithm == default)
            {
                KeysEventSource.Singleton.AlgorithmNotSupported(nameof(Sign), algorithm);
                return(null);
            }

            RSASignaturePadding padding = algorithm.GetRsaSignaturePadding();

            if (padding is null)
            {
                KeysEventSource.Singleton.AlgorithmNotSupported(nameof(Sign), algorithm);
                return(null);
            }

            using RSA rsa = KeyMaterial.ToRSA(true);
            byte[] signature = rsa.SignHash(digest, hashAlgorithm, padding);

            return(new SignResult
            {
                Algorithm = algorithm,
                KeyId = KeyMaterial.Id,
                Signature = signature,
            });
        }
コード例 #6
0
        public override SignResult Sign(SignatureAlgorithm algorithm, byte[] digest, CancellationToken cancellationToken)
        {
            Argument.AssertNotNull(digest, nameof(digest));

            ThrowIfTimeInvalid();

            // A private key is required to sign. Send to the server.
            if (MustRemote)
            {
                // TODO: Log that we need a private key.
                return(null);
            }

            HashAlgorithmName hashAlgorithm = algorithm.GetHashAlgorithmName();

            if (hashAlgorithm == default)
            {
                // TODO: Log that we don't support the given algorithm.
                return(null);
            }

            RSASignaturePadding padding = algorithm.GetRsaSignaturePadding();

            if (padding is null)
            {
                // TODO: Log that we don't support the given algorithm.
                return(null);
            }

            using RSA rsa = KeyMaterial.ToRSA(true);
            byte[] signature = rsa.SignHash(digest, hashAlgorithm, padding);

            return(new SignResult
            {
                Algorithm = algorithm,
                KeyId = KeyMaterial.Id,
                Signature = signature,
            });
        }
コード例 #7
0
 private byte[] Decrypt(byte[] data, RSAEncryptionPadding padding)
 {
     using RSA rsa = KeyMaterial.ToRSA(true);
     return(rsa.Decrypt(data, padding));
 }