public static SigningCredentialData CreateNewCredential(DateTimeOffset effectiveDate)
        {
            var ret = new SigningCredentialData()
            {
                EffectiveDate = effectiveDate
            };

            ret.ReadRsaSecurityKey(CryptoHelper.CreateRsaSecurityKey());
            return(ret);
        }