Cryptographic hash sum.
More...
#include <cc/CryptoHash>
|
enum class | Method : uint32_t {
Invalid = 0
, Md5 = 0x00080
, Sha1 = 0x100A0
, Sha2_256 = 0x20100
,
Sha2_512 = 0x20200
, Sha3_224 = 0x300E0
, Sha3_256 = 0x30100
, Sha3_384 = 0x30180
,
Sha3_512 = 0x30200
, Sha256 = Sha2_256
, Sha512 = Sha2_512
, Default = Sha3_512
} |
| Type of algorithm used to compute the hash sum More...
|
|
◆ Method
Type of algorithm used to compute the hash sum
Enumerator |
---|
Invalid | Invalid hash sum.
|
Md5 | MD5 hash sum.
|
Sha1 | SHA1 hash sum.
|
Sha2_256 | SHA2-256 hash sum.
|
Sha2_512 | SHA2-512 hash sum.
|
Sha3_224 | SHA3-224 hash sum.
|
Sha3_256 | SHA3-256 hash sum.
|
Sha3_384 | SHA3-384 hash sum.
|
Sha3_512 | SHA3-512 hash sum.
|
Sha256 | Alt. name for SHA2-256.
|
Sha512 | Alt. name for SHA2-512.
|
Default | Default hash method to use.
|
◆ CryptoHash() [1/3]
Create an invalid cryptographic hash.
◆ CryptoHash() [2/3]
Create a cryptographic hash sum by parsing text.
- Parameters
-
text | Text represenation of a cryptographic hash value, e.g. "MD5:B1946AC92492D2347C6235B4D2611184" |
- See also
- isValid()
-
toString()
◆ CryptoHash() [3/3]
Create a cryptographic hash sum.
- Parameters
-
method | Type of algorithm used to compute the hash sum |
sum | Binary representation of the cryptographic hash sum |
◆ hashSize()
static int hashSize |
( |
Method | method | ) |
|
|
static |
Size of the hash sum (in bytes)
◆ methodName()
Convert method to human-reable hash name.
◆ readMethodName()
◆ read()
Create a cryptographic hash by parsing text.
- Parameters
-
text | Text represenation of a cryptographic hash value, e.g. "MD5:B1946AC92492D2347C6235B4D2611184" |
- Returns
- Cryptographic hash (will return CryptoHash{} when parsing fails)
- See also
- isValid()
-
toString()
◆ openSink() [1/2]
Open an appropriate CryptoHashSink for computing a cryptographic hash sum according to method.
◆ compute()
Compute the cryptogaphic hash sum from all bytes readable from source according to method.
◆ method()
Type of algorithm used to compute the hash sum
◆ sum()
Binary representation of the cryptographic hash sum
◆ isValid()
Check is this is a valid cryptographic hash sum.
◆ operator bool()
Check is this is a valid cryptographic hash sum.
◆ openSink() [2/2]
◆ operator==()
◆ operator<=>()
std::strong_ordering operator<=> |
( |
const CryptoHash & | other | ) |
const |
◆ toString()
Stringify this cryptographic hash sum.