Goedel.Cryptography.UDF.Validate C# (CSharp) Method

Validate() public static method

Check that a UDF fingerprint satisfies a test value. At present the test must be exact. It is possible that this can be relaxed so that a longer fingerprint will satisfy a shorter one.
public static Validate ( string Test, string Value ) : void
Test string
Value string
return void
        public static void Validate (string Test, string Value) {
            if (Test != Value) {
                throw new Exception("Fingerprints don't match");
                }

            }
        }