BLOCKCHAIN Blockchain and sha256 [21], t1 = Ch + k, t2 = Maj void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.02.04 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [20], d = k void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.02.03 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [19], d – h swap void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.02.02 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [18], d += t1 only void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.02.02 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [16], if t1 is uint64_t, uint32_t tt = (uint32_t)t1, when if(t1==tt). void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsigned char *)... 2022.01.30 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [15], d += Σ n (n is non-negative integer) void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.01.29 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [14], h += 1 void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.01.29 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [13], d += 1 void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.01.29 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [12], t2 ≡ t1 mod m (m is non-negative integer) void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.01.28 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [11], d ≡ h mod 0 void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.01.28 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [10], Fix d and h. void main() { char rnd; ::sprintf(rnd, “3n + 1 conjecture”); unsigned char hash; CSHA256().Write((const unsi... 2022.01.28 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [9], hello hash and 3n + 1 conjecture void hex_printf(unsigned char (*hash)) { // fixed 32 bytes::printf( "0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%... 2022.01.27 BLOCKCHAINBlockchain and sha256English
BLOCKCHAIN Blockchain and sha256 [8], Execute half of hash ハッシュの半分を実行 With the image of making the hash "open set by half", we are picked to all the branches which are piled up.ハッシュを「半分ずつ開集合... 2022.01.26 BLOCKCHAINBlockchain and sha256EnglishSORA Neural Network
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) {... 2022.01.25 BLOCKCHAINBlockchain and sha256English
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)... 2022.01.24 BLOCKCHAINBlockchain and sha256English