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

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