@@ -14,15 +14,15 @@ /** * \brief A base class for classes providing hash functions. */ @interface OFHash: OFObject { - BOOL calculated; + BOOL isCalculated; } #ifdef OF_HAVE_PROPERTIES -@property (readonly) BOOL calculated; +@property (readonly) BOOL isCalculated; #endif /** * Adds a buffer to the hash to be calculated. * @@ -39,7 +39,7 @@ - (uint8_t*)digest; /** * \return A boolean whether the hash has already been calculated */ -- (BOOL)calculated; +- (BOOL)isCalculated; @end