DSASignatureDeformatter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Security / Cryptography / DSASignatureDeformatter.cs / 1 / DSASignatureDeformatter.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 

// 
// DSASignatureDeformatter.cs 
//
 
namespace System.Security.Cryptography {
    [System.Runtime.InteropServices.ComVisible(true)]
    public class DSASignatureDeformatter : AsymmetricSignatureDeformatter {
        DSA    _dsaKey; // DSA Key value to do decrypt operation 
        string _oid;
 
        // 
        // public constructors
        // 

        public DSASignatureDeformatter() {
            // The hash algorithm is always SHA1
            _oid = CryptoConfig.MapNameToOID("SHA1"); 
        }
 
        public DSASignatureDeformatter(AsymmetricAlgorithm key) : this() { 
            if (key == null)
                throw new ArgumentNullException("key"); 
            _dsaKey = (DSA) key;
        }

        // 
        // public methods
        // 
 
        public override void SetKey(AsymmetricAlgorithm key) {
            if (key == null) 
                throw new ArgumentNullException("key");
            _dsaKey = (DSA) key;
        }
 
        public override void SetHashAlgorithm(string strName) {
            if (CryptoConfig.MapNameToOID(strName) != _oid) 
                throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_InvalidOperation")); 
        }
 
        public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) {
            if (_dsaKey == null)
                throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey"));
            if (rgbHash == null) 
                throw new ArgumentNullException("rgbHash");
            if (rgbSignature == null) 
                throw new ArgumentNullException("rgbSignature"); 

            return _dsaKey.VerifySignature(rgbHash, rgbSignature); 
        }
    }
}


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK