You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 28, 2019. It is now read-only.
randomData | Pseudorandom data | 1 | Also kwown as "Australian Information Security Manual Standard ISM 6.2.92"<br>and "New Zealand Information and Communications Technology Standard NZSIT 402" <br>Your data is overwritten with cryptographically strong pseudo-random data. (The data is indistinguishable from random noise.)
@@ -209,9 +213,8 @@ ID | Name | Passes | Description
209
213
schneier | Bruce Schneier Algorithm | 7 | Pass 1: Overwriting with zeros;<br>Pass 2: Overwriting with ones;<br>Pass 3-7: Overwriting with random data.
210
214
pfitzner | Pfitzner Method | 33 | Pass 1-33: Overwriting with random data.
211
215
gutmann | Peter Gutmann Algorithm | 35 | Pass 1-4: Overwriting with random data;<br>Pass 5: Overwriting with 0x55;<br>Pass 6: Overwriting with 0xAA;<br>Pass 7-9: Overwriting with 0x92 0x49 0x24, then cycling through the bytes;<br>Pass 10-25: Overwriting with 0x00, incremented by 1 at each pass, until 0xFF;<br>Pass 26-28: Same as 7-9;<br>Pass 29-31: Overwriting with 0x6D 0xB6 0xDB, then cycling through the bytes;<br>Pass 32-35: Overwriting with random data.
212
-
<!--AUTO GENERATED METHODS TABLE END-->
213
216
214
-
Note: Node ensures that the file is correctly written, checking the writing in these algorithms is unnecessary.
217
+
Note: Node ensures that the file is correctly written, checking the writing in these algorithms is unnecessary. (Report this if I'm wrong)
215
218
216
219
## 🚩 Troubleshooting / Common issues
217
220
@@ -242,9 +245,9 @@ If you really need to delete millions of file in one time, split the task (e.g.
242
245
243
246
### Using Windows:
244
247
245
-
Be sure to use `secure-rm ".\path\file"` with doublequotes since back-slashes will always be interpreted as escape characters, not path separators.
248
+
Be sure to use `".\path\file"` with doublequotes since back-slashes will always be interpreted as escape characters, not path separators.
246
249
247
-
Another solution is to double the back-slashes like: `secure-rm .\\path\\file`
250
+
Another solution is to double the back-slashes like: `.\\path\\file`
248
251
249
252
Or if you can, use forward slashes!
250
253
@@ -255,7 +258,6 @@ See the [changelog](/CHANGELOG.md) or [releases](https://github.com/oganexon/sec
255
258
## 📌 TODO
256
259
257
260
- [ ] Implement more tests
258
-
- [x] TypeScript
259
261
- [ ] Support of 64bit files
260
262
261
263
## 🏗 Contributing
@@ -264,7 +266,7 @@ See the [changelog](/CHANGELOG.md) or [releases](https://github.com/oganexon/sec
264
266
<a href="https://jestjs.io"><img src="https://img.shields.io/badge/tested_with-jest-99424f.svg?style=flat-square&logo=jest" alt="Tested with Jest"></a>
0 commit comments