Changeset 2461
- Timestamp:
- 3/13/2012 2:38:46 AM (15 months ago)
- Location:
- branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins
- Files:
-
- 5 added
- 2 edited
- 1 moved
-
EntropySources/KernelEntropySource.cs (modified) (2 diffs)
-
Eraser.DefaultPlugins.csproj (modified) (3 diffs)
-
ErasureMethods/ErasureMethodBase.cs (added)
-
ErasureTargets/ErasureTargetBase.cs (added)
-
FileSystems/FileSystemBase.cs (added)
-
Prngs (added)
-
Prngs/PrngBase.cs (added)
-
Prngs/RNGCrypto.cs (moved) (moved from branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/RNGCrypto.cs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/EntropySources/KernelEntropySource.cs
r2458 r2461 1 using System; 1 /* 2 * $Id$ 3 * Copyright 2008-2012 The Eraser Project 4 * Original Author: Joel Low <lowjoel@users.sourceforge.net> 5 * Modified By: 6 * 7 * This file is part of Eraser. 8 * 9 * Eraser is free software: you can redistribute it and/or modify it under the 10 * terms of the GNU General Public License as published by the Free Software 11 * Foundation, either version 3 of the License, or (at your option) any later 12 * version. 13 * 14 * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY 15 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 * 18 * A copy of the GNU General Public License can be found at 19 * <http://www.gnu.org/licenses/>. 20 */ 21 22 using System; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 23 44 /// implemented as plugins, managed by EntropySourceManager. 24 45 /// </summary> 25 publicclass KernelEntropySource : IEntropySource46 class KernelEntropySource : IEntropySource 26 47 { 27 48 public byte[] GetPrimer() -
branches/eraser6/pluginsRewrite/Eraser.DefaultPlugins/Eraser.DefaultPlugins.csproj
r2368 r2461 79 79 </Compile> 80 80 <Compile Include="EntropySources\KernelEntropySource.cs" /> 81 <Compile Include="ErasureMethods\ErasureMethodBase.cs" /> 81 82 <Compile Include="ErasureMethods\Custom.cs" /> 82 83 <Compile Include="ErasureMethods\DoD.cs" /> … … 89 90 <Compile Include="ErasureMethods\VSITR.cs" /> 90 91 <Compile Include="ErasureMethods\RCMP_TSSIT_OPS_II.cs" /> 92 <Compile Include="ErasureTargets\ErasureTargetBase.cs" /> 91 93 <Compile Include="ErasureTargets\FileErasureTarget.cs" /> 92 94 <Compile Include="ErasureTargets\FileSystemObjectErasureTarget.cs" /> … … 127 129 <DependentUpon>UnusedSpaceErasureTargetConfigurer.cs</DependentUpon> 128 130 </Compile> 131 <Compile Include="FileSystems\FileSystemBase.cs" /> 129 132 <Compile Include="FileSystems\Fat.cs" /> 130 133 <Compile Include="FileSystems\Ntfs.cs" /> 131 134 <Compile Include="FileSystems\Windows.cs" /> 132 135 <Compile Include="Plugin.cs" /> 136 <Compile Include="Prngs\PrngBase.cs" /> 133 137 <Compile Include="Properties\AssemblyInfo.cs" /> 134 <Compile Include=" RNGCrypto.cs" />138 <Compile Include="Prngs\RNGCrypto.cs" /> 135 139 <Compile Include="ErasureMethods\Schneier.cs" /> 136 140 <Compile Include="SettingsForm.cs">
Note: See TracChangeset
for help on using the changeset viewer.
