2022-01

AI-NFT Web3.0 FromHDDtoSSD

復旧不定期日誌392, データ復旧ソフトウェアの使い方 その5 開発中のスクリーンショットを公開(^^;

転送速度の管理については、その開発は結構大変でした。以下は開発中のもので、それが、「不良セクタ危険予知モニタ(さらにその下)」になりました。
BLOCKCHAIN

Blockchain and sha256 [7], sigma0, sigma1

uint32_t sigma0(uint32_t x) { return (x >> 7 | x << 25) ^ (x >> 18 | x << 14) ^ (x >> 3); }uint32_t sigma1(uint32_t x) {...
AI-NFT Web3.0 FromHDDtoSSD

復旧不定期日誌391, データ復旧ソフトウェアの使い方 その4

本日は、データ復旧中の転送速度について、です。ドライブの種類に限らず、データ復旧中の転送速度については注視する必要があります。あらゆる変動も、この転送速度の変化から始まるためです。以下のグラフをご覧ください。古いドライブとなりますが、不良セ...
AI-NFT Web3.0 FromHDDtoSSD

復旧不定期日誌390, データ復旧ソフトウェアの使い方 その3 ドライブの状態を監視しながら復旧可能

本日は、ドライブの状態について、詳しくご説明いたします。データが読み込めなくなる状態とは、ドライブが壊れかけている状態となります。一部または全部がみえない=ファイルシステムの規則にアクセスできない、となります。よって、データ復旧作業を実施中...
BLOCKCHAIN

Blockchain and sha256 [6], Round

void Round(uint32_t a, uint32_t b, uint32_t c, uint32_t& d, uint32_t e, uint32_t f, uint32_t g, uint32_t& h, uint32_t k)...
BLOCKCHAIN

Blockchain and sha256 [5], Sigma0 and Maj

uint32_t Sigma0(uint32_t x) { return (x >> 2 | x << 30) ^ (x >> 13 | x << 19) ^ (x >> 22 | x << 10); }uint32_t Maj(uint3...
BLOCKCHAIN

Blockchain and sha256 [4], Initialize

The hash has an initial value. And if operation doesn't work, this initial value will come out.ハッシュには初期値があります。そして、演算が動作し...
BLOCKCHAIN

Blockchain and sha256 [3], Sigma1 and Ch

Let's decipher the center of sha256.さて、sha256の心臓部を解読していきましょう。uint32_t Sigma1(uint32_t x) { return (x >> 6 | x << 26) ^ (...
AI-NFT Web3.0 FromHDDtoSSD

復旧不定期日誌389, データ復旧ソフトウェアの使い方 その2

削除されたファイルは、以下の2通りに分類されます。1, 削除されたことを示すフラグが立てられる2, 削除後、ファイル全体をゼロで上書きして消去復旧可能となるのは、1番の場合に限ります。データを列挙するとき、相手の属性を拝見します。その際、フ...
Blockchain and sha256

Blockchain and sha256 [2], Hash of distortion 歪みのハッシュ

We found that throwing different hash algorithms into the same inequality distorts the distance space between other hash...
AI-NFT Web3.0 FromHDDtoSSD

復旧不定期日誌388, データ復旧ソフトウェアの使い方 その1

いつもお世話になっております。本日より、ドライブの壊れ方から特性を得て、各データを復旧するデータ復旧ソフトウェアを深く掘り下げてみていきます。これにより、さらに効率的なデータ復旧ソフトウェアの使い方を習得できます。まず、データ復旧ソフトウェ...
Blockchain and sha256

Blockchain and sha256 [1], About mapping 写像について

Recently, it seems that the expression "mapping" is used instead of "correspondence".Certainly, e.g. "one-to-one mapping...