Exemplo n.º 1
0
 internal string GetSecurityHash()
 {
     return(Cryptographer.CreateHashCode(this.GetElectronicSeal(),
                                         _request.UID)
            .Substring(0, 8)
            .ToUpperInvariant());
 }
Exemplo n.º 2
0
        internal virtual string GetElectronicSeal()
        {
            var text = this.GetESignInputData();

            return(Cryptographer.CreateHashCode(text, _request.UID));
        }