summaryrefslogtreecommitdiffstats
path: root/samples/OAuthAuthorizationServer/Code/DataClasses.dbml
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-05-28 17:31:20 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-05-28 17:31:20 -0700
commitdbbc823b7580d4e7d5251539a8dcace730df2e3f (patch)
tree52489fda9952d9aa7ccd59fab795e6862e24753b /samples/OAuthAuthorizationServer/Code/DataClasses.dbml
parentbb155ca75f8906bde74d8adbf36fa4f4c4bcded7 (diff)
parent5ea256fa7309ad23f4278ef9113ccde5a231bff7 (diff)
downloadDotNetOpenAuth-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 'samples/OAuthAuthorizationServer/Code/DataClasses.dbml')
-rw-r--r--samples/OAuthAuthorizationServer/Code/DataClasses.dbml8
1 files changed, 8 insertions, 0 deletions
diff --git a/samples/OAuthAuthorizationServer/Code/DataClasses.dbml b/samples/OAuthAuthorizationServer/Code/DataClasses.dbml
index 33e6eda..0ef987d 100644
--- a/samples/OAuthAuthorizationServer/Code/DataClasses.dbml
+++ b/samples/OAuthAuthorizationServer/Code/DataClasses.dbml
@@ -37,4 +37,12 @@
<Column Name="Timestamp" Type="System.DateTime" IsPrimaryKey="true" CanBeNull="false" />
</Type>
</Table>
+ <Table Name="" Member="SymmetricCryptoKeys">
+ <Type Name="SymmetricCryptoKey">
+ <Column Name="Bucket" Type="System.String" IsPrimaryKey="true" CanBeNull="false" UpdateCheck="Never" />
+ <Column Name="Handle" Type="System.String" IsPrimaryKey="true" CanBeNull="false" UpdateCheck="Never" />
+ <Column Name="ExpiresUtc" Type="System.DateTime" CanBeNull="false" UpdateCheck="Never" />
+ <Column Name="Secret" Type="System.Byte[]" CanBeNull="false" UpdateCheck="Never" />
+ </Type>
+ </Table>
</Database> \ No newline at end of file