Exemple #1
0
        /// <summary>
        /// Gets the application <see cref="IPrivateKey" /> used to authenticate Publish/Revoke Card requests.
        /// </summary>
        public override IPrivateKey GetAppKey(ICrypto crypto)
        {
            var authorityPrivateKey = crypto.ImportPrivateKey(this.AppKey.GetBytes(), this.AppKeyPassword);

            return(authorityPrivateKey);
        }