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

FromEscrowed() public static method

Calculate a UDF fingerprint from a secret key used to escrow a private key in the mesh.
public static FromEscrowed ( byte Data, int Bits ) : byte[]
Data byte Data to be fingerprinted.
Bits int Precision, must be a multiple of 25 bits.
return byte[]
        public static byte[] FromEscrowed(byte[] Data, int Bits) {
            return From(UDFConstants.EscrowedKey, Data, Bits);
            }