@@ -32,10 +32,20 @@ #ifdef OF_HAVE_CLASS_PROPERTIES @property (class, readonly, nonatomic) size_t digestSize; @property (class, readonly, nonatomic) size_t blockSize; #endif +/*! + * @brief The digest size of the cryptographic hash, in bytes. + */ +@property (readonly, nonatomic) size_t digestSize; + +/*! + * @brief The block size of the cryptographic hash, in bytes. + */ +@property (readonly, nonatomic) size_t blockSize; + /*! * @brief A boolean whether the hash has already been calculated. */ @property (readonly, nonatomic, getter=isCalculated) bool calculated;