@@ -31,11 +31,12 @@ @implementation OFString (CryptoHashing) - (OFString *)of_cryptoHashWithClass: (Class )class { void *pool = objc_autoreleasePoolPush(); - id hash = [class cryptoHash]; + id hash = [class + cryptoHashWithAllowsSwappableMemory: true]; size_t digestSize = [class digestSize]; const unsigned char *digest; char cString[digestSize * 2]; [hash updateWithBuffer: self.UTF8String