dod刷服务器文件,DoD 5220.22-M和Gutmann两种硬盘擦除算法

DoD 5220.22-M的说明

Use this seven-pass method for tighter security. Different patterns of

bytes are written to the disk as described in the table below. Using

this method is probably even safer than using the simple method (with 6

passes).

This method is described in the National Industrial Security Program

Operating Manual (NISPOM a.k.a. DoD 5220.22-M) of the US Department of

Defense (January 1995; chapter 8, section 3, 8-306. Maintenance).

The free disk space is overwritten seven times:

Pass Data

1 A random character, n = [0, 255]

2 A random character, n

3 Complement of previous character, ~n

4 A random character, n

5 A random character, n

6 Complement of previous character, ~n

7 A random character, n

However, if you want to be absolutely sure of your data security, use the Gutmann method, below

——————————————————–

Gutmann method的说明

Top Previous Next

This method offers the most tight security for the whole range of disk

drive types. You should use this method if your data is very valuable

and you think your disk could possibly be scrutinized by expensive,

specialized equipment.

The method used by Clean Disk Security is based on that described in

the paper Secure Deletion of Data from Magnetic and Solid-State Memory,

by Peter Gutmann (Department of Computer Science University of Auckland.

pgut001@cs.auckland.ac.nz), and is included in Clean Disk Security with his permission.

The paper was first published in the Sixth USENIX Security Symposium Proceedings, San Jose, California, July 22-25, 1996.

The first four and last four passes are pseudo-random data (created

with additive congruential pseudo-random number generator) and other

passes are made in random order.

Overwrite Data

PassNo. Data Written Encoding Scheme Targeted

1 Random

2 Random

3 Random

4 Random

5 01010101 01010101 01010101 0×55 (1,7) RLL MFM

6 10101010 10101010 10101010 0xAA (1,7) RLL MFM

7 10010010 01001001 00100100 0×92 0×49 0×24 (2,7) RLL MFM

8 01001001 00100100 10010010 0×49 0×24 0×92 (2,7) RLL MFM

9 00100100 10010010 01001001 0×24 0×92 0×49 (2,7) RLL MFM

10 00000000 00000000 00000000 0×00 (1,7) RLL (2,7) RLL

11 00010001 00010001 00010001 0×11 (1,7) RLL

12 00100010 00100010 00100010 0×22 (1,7) RLL

13 00110011 00110011 00110011 0×33 (1,7) RLL (2,7) RLL

14 01000100 01000100 01000100 0×44 (1,7) RLL

15 01010101 01010101 01010101 0×55 (1,7) RLL MFM

16 01100110 01100110 01100110 0×66 (1,7) RLL (2,7) RLL

17 01110111 01110111 01110111 0×77 (1,7) RLL

18 10001000 10001000 10001000 0×88 (1,7) RLL

19 10011001 10011001 10011001 0×99 (1,7) RLL (2,7) RLL

20 10101010 10101010 10101010 0xAA (1,7) RLL MFM

21 10111011 10111011 10111011 0xBB (1,7) RLL

22 11001100 11001100 11001100 0xCC (1,7) RLL (2,7) RLL

23 11011101 11011101 11011101 0xDD (1,7) RLL

24 11101110 11101110 11101110 0xEE (1,7) RLL

25 11111111 11111111 11111111 0xFF (1,7) RLL (2,7) RLL

26 10010010 01001001 00100100 0×92 0×49 0×24 (2,7) RLL MFM

27 01001001 00100100 10010010 0×49 0×24 0×92 (2,7) RLL MFM

28 00100100 10010010 01001001 0×24 0×92 0×49 (2,7) RLL MFM

29 01101101 10110110 11011011 0x6D 0xB6 0xDB (2,7) RLL

30 10110110 11011011 01101101 0xB6 0xDB 0x6D (2,7) RLL

31 11011011 01101101 10110110 0xDB 0x6D 0xB6 (2,7) RLL

32 Random

33 Random

34 Random

35 Random

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/382908.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

服务器加根网线用不用修改路由器,安装设置无线路由器需要用几根网线?

“安装设置无线路由器需要用几根网线?看到网上安装设置路由器的教程,有的说需要两根网线,有的说需要一根网线,请问到底应该使用一根还是两根呢?”其实这个问题的答案并不是唯一的,使用一根还是两根&#xf…

大数运算#

大数,就是C/C中利用基本类型所不能存储的数字,少则数十位,大则几万位,如何存储和计算大数就是本文的内容。 在C和C中,没有存储大数的数据结构,就算 unsigned long long也只能表示19位的数字  如果我们用d…

乘法口诀表的C语言编程

#include "stdio.h"int main() {int i,j,q0;for(i 1;i < 10; i){for(j 1;j < 10;j){q i*j;printf("%d*%d%d\n",i,j,q);}}} 按照课本上的排列做出的优化 #include "stdio.h"int main() {int i,j;for(i 1;i < 10; i){for(j 1;j <…

打印100-200之间的素数

素数 是指除了1和它本身以外,不能被任何整数整除的数 例如17就是素数,因为它不能被2~16的任一整数整除。 #include "stdio.h"int main() {int i,j;for(i 100; i < 200; i){for(j 2;j < i-1;j){if(i%j 0)break;}if(j i)printf("%d\n",i);}} C语言…

判断1000-2000之间的闰年(优化写法)

闰年普通年&#xff08;不能被100整除的年份&#xff09;能被4整除的为闰年。&#xff08;如2004年就是闰年,1999年不是闰年&#xff09;&#xff1b;世纪年&#xff08;能被100整除的年份&#xff09;能被400整除的是闰年。(如2000年是闰年&#xff0c;1900年不是闰年)&#x…

四种方法实现数组交换

方法一&#xff1a; //该方法主要用逻辑运算将数组对应的每个元素进行交换&#xff0c;然后用for循环将整个数组元素进行交换#include<stdio.h>int main(){ int i,j,k;int A[10];int B[10];int C[10];printf("请输入A数组的内容&#xff1a;\n");for(i0;i<1…

结构体变量初始化

// // main.c // C语言学习 #include <stdio.h> int main(int argc, const charchar * argv[]) { //定义结构体类型 struct Person { charchar *name; int age; double heigth; }; //初始化的4种方式 //1.定义的同时初始化 struct Person p1 {"z…

C语言的细小知识点整理

1、register修饰符暗示编译程序相应的变量将被频繁地使用&#xff0c;如果可能的话&#xff0c;应将其保存在CPU的寄存器中&#xff0c;以加快其存储速度 2、static是某个特定函数的局部变量&#xff0c;即只能在定义该变量的函数内使用该变量 static int a 40; char …

二维数组初始化规则

二维数组初始化的形式为&#xff1a;数据类型 数组名[整常量表达式][ 整常量表达式]{ 初始化数据 }&#xff1b;在{ }中给出各数组元素的初值&#xff0c;各初值之间用逗号分开。把{ }中的初值依次赋给各数组元素。有如下几种初始化方式&#xff1a;⑴ 分行进行初始化int a[2][…

linux之缓冲区

行缓冲。在这种情况下&#xff0c;当在输入和输出中遇到换行符时&#xff0c;标准I/O库执行I/O操作。这允许我们一次输出一个字符&#xff0c;但只有在写了一行之后才进行实际I/O操作。当流涉及一个终端时&#xff0c;通常使用行缓冲。 第一个例子&#xff1a;&#xff08;he…

输出一个整数的每一位(3种方法)

1.使用数组按个数输入再按照个数输出 int i, j, k, num, count;int a[10];printf("几位数\n");scanf("%d", &k);for (i 1; i < k; i){scanf("%d", &a[i]);}for (i k; i > 1; i--){printf("%d\n", a[i]);} 2.使用递归…

linux之地址空间

程序&#xff1a;一组指令的有效集合。它是静态的&#xff0c;不具有任何的运行意义。程序最终转换为二进制文件。 进程&#xff1a;程序的执行就是进程。可以把它看成独立的程序&#xff0c;在内存中有其对应的代码空间和数据空间。一个进程所拥有的数据和代码只属于自己。进…

C语言操作符 进阶 (常见错误及细节)

1.算术操作符- * / % % 只适用于整数类型运算&#xff0c;其余运算符也可用于浮点运算。2.移位操作符 左移&#xff1a;左边丢弃&#xff0c;右边补0&#xff1b; 右移&#xff1a;不同编译器采取的移位方式不同&#xff0c;所有有了“右移”的程序不可移植1.逻辑移位&#xff…

输出该数二进制表示中1的个数。求取十进制数字元素1的个数 (3种方法)

/* ***求取十进制数字元素1的个数 */int fun(int x) {int count 0;int i, j, k;/***方法2 负数不可计算&#xff0c;需要改进*/while (x ! 0){if (x & 1 1){count;}x x >> 1;}/****方法1*/while (x ! 0){x x&(x - 1);count;}return count; }int main() {in…

C语言随机数生成超详解

1.首先来看一段简单的代码 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <time.h>int main(void) {int i;printf(" %6d\n", rand());system("pause"); }printf(" %6d\n", rand());sys…

可变参数列表

一个函数在不同的时候接受不同数目的参数。 stdarg宏可变参数列表是通过宏来实现的&#xff0c;这些宏定义于stdarg.h头文件中。这个头文件声明了一个类型va_list和三个宏---va_start,va_arg,va_end。va_list用于声明变量的类型。va_start准备访问可变参数。va_arg用于访问参数…

完成猜数字游戏 //C语言 猜数字游戏(编写过程详解)

int i, j, k;int num 0;/*生成随机数字*/num rand();printf("%d\n", num); 选择玩游戏还是退出 void play(int x) {printf("%d\n", x);printf("开始游戏"); } scanf("%d", &k);switch (k){case 1:play(num);case 2:break;} 循环…

静态顺序表

顺序表是在计算机内存中以数组的形式保存的线性表&#xff0c;是指用一组地址连续的存储单元依次存储数据元素的线性结构。线性表采用顺序存储的方式存储就称之为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。 顺序表分为静态存储的顺序表和动…

C语言 浅谈可变参数

1.可变参数产生原因 首先来看一个简单的例子。 int Add(int x, int y) {return x y; } int main() {int sum 0;sum Add(1, 2);//sum Add(1, 2, 3);//sum Add(1);system("pause");return 0; } 我们可以看到&#xff0c;对于这个代码只可以计算两个数的加法。 …

有两个链表a,b,设结点包括学号,姓名。从a链表中删去与b链表中有相同学号的那些结点。

#include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct linknode { int num;char name[20];struct linknode *next; }node; node *creat() { node *h NULL,*s,*t;int d;int i 1; char name1[20];while(1) { printf("输入第…