678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
|
__OsConsoleOutputHandle__ console_output_handle;
#else
#error "not implemented current __target_os__ or not defined. (expected __TargetOs_ value)"
#endif
};
// Scalpi
// crypto
// # __Random__
struct __Random__ {
size_t seed;
};
// # __CryptoScalpiHash__
struct __CryptoScalpiHash__ {
uint8_t mask; // value with 4 ones and 4 zeros like: 0b00001111
uint8_t a;
uint8_t b;
|
|
|
|
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
|
__OsConsoleOutputHandle__ console_output_handle;
#else
#error "not implemented current __target_os__ or not defined. (expected __TargetOs_ value)"
#endif
};
// Scalpi
// crypto
// # __CryptoRandom__
struct __CryptoRandom__ {
size_t seed;
};
// # __CryptoScalpiHash__
struct __CryptoScalpiHash__ {
uint8_t mask; // value with 4 ones and 4 zeros like: 0b00001111
uint8_t a;
uint8_t b;
|