Changeset 176
- Timestamp:
- 3/10/2008 12:38:10 AM (5 years ago)
- Location:
- branches/eraser6/DefaultPlugins
- Files:
-
- 2 added
- 2 edited
-
DefaultPlugins.csproj (modified) (2 diffs)
-
ISAAC.cs (added)
-
Plugin.cs (modified) (2 diffs)
-
RNGCrypto.cs (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/DefaultPlugins/DefaultPlugins.csproj
r167 r176 29 29 </PropertyGroup> 30 30 <ItemGroup> 31 <Reference Include="ISAAC, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> 32 <SpecificVersion>False</SpecificVersion> 33 <HintPath>C:\Users\Joel Low\Documents\Development\Libraries\C#\ISAAC\Rand\bin\Release\ISAAC.dll</HintPath> 34 </Reference> 31 35 <Reference Include="System" /> 32 36 <Reference Include="System.Data" /> … … 35 39 <ItemGroup> 36 40 <Compile Include="Gutmann.cs" /> 41 <Compile Include="ISAAC.cs" /> 37 42 <Compile Include="Plugin.cs" /> 38 43 <Compile Include="Properties\AssemblyInfo.cs" /> 44 <Compile Include="RNGCrypto.cs" /> 39 45 </ItemGroup> 40 46 <ItemGroup> -
branches/eraser6/DefaultPlugins/Plugin.cs
r172 r176 15 15 { 16 16 host.RegisterErasureMethod(new Gutmann()); 17 host.RegisterPRNG(new ISAAC()); 18 host.RegisterPRNG(new RNGCrypto()); 17 19 } 18 20 19 21 public string Name 20 22 { 21 get { return "Default Eras e Methods and PRNGs"; }23 get { return "Default Erasure Methods and PRNGs"; } 22 24 } 23 25 … … 33 35 public void Dispose() 34 36 { 35 throw new Exception("The method or operation is not implemented.");37 throw new NotImplementedException("The method or operation is not implemented."); 36 38 } 37 39
Note: See TracChangeset
for help on using the changeset viewer.
