diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-05-28 17:31:20 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-05-28 17:31:20 -0700 |
commit | dbbc823b7580d4e7d5251539a8dcace730df2e3f (patch) | |
tree | 52489fda9952d9aa7ccd59fab795e6862e24753b /projecttemplates/RelyingPartyLogic/Model.cs | |
parent | bb155ca75f8906bde74d8adbf36fa4f4c4bcded7 (diff) | |
parent | 5ea256fa7309ad23f4278ef9113ccde5a231bff7 (diff) | |
download | DotNetOpenAuth-dbbc823b7580d4e7d5251539a8dcace730df2e3f.zip DotNetOpenAuth-dbbc823b7580d4e7d5251539a8dcace730df2e3f.tar.gz DotNetOpenAuth-dbbc823b7580d4e7d5251539a8dcace730df2e3f.tar.bz2 |
Introduced ICryptoKeyStore, and worked it into OpenID OPs, RPs, and OAuth 2.0 roles.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.cs')
-rw-r--r-- | projecttemplates/RelyingPartyLogic/Model.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.cs b/projecttemplates/RelyingPartyLogic/Model.cs index ca87c90..77d1b83 100644 --- a/projecttemplates/RelyingPartyLogic/Model.cs +++ b/projecttemplates/RelyingPartyLogic/Model.cs @@ -27,8 +27,8 @@ namespace RelyingPartyLogic { /// Clears the expired associations. /// </summary> /// <param name="transaction">The transaction to use, if any.</param> - internal void ClearExpiredAssociations(EntityTransaction transaction) { - this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredAssociations"); + internal void ClearExpiredCryptoKeys(EntityTransaction transaction) { + this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredCryptoKeys"); } } } |