darling-dmg icon indicating copy to clipboard operation
darling-dmg copied to clipboard

FUSE module for .dmg files (containing an HFS+ filesystem)

Results 19 darling-dmg issues
Sort by recently updated
recently updated
newest added

Executing ``` darling-dmg test-file test-dir ``` when `test-file` does not exist prints ``` Error: test-file Possible reasons: 1) The file is corrupt. 2) The file is not really a DMG...

Safe downcast, explained in comment. 1 or 2 unused var removed. Change to uint64_t some var used for offset. I also better protected read function with `if ( count <...

Would be happy to see someday support of new [Apple FS](https://developer.apple.com/library/prerelease/content/documentation/FileManagement/Conceptual/APFS_Guide/Introduction/Introduction.html) Apple File System supports nearly all of the features of HFS+, and offers improvements over HFS+, including 64-bit inode...

enhancement

Some CacheZone object were shared, but could be destroyed. For example, once you called DMGDisk::readerForPartition, you can now delete DMGDisk and only keep the Reader object. Took the occasion to...

To be able to mount encrypted compressed dmg, I had to modify DMGDisk to search for the koly block in the last 1024 bytes instead of the last 512.

Hi, I've recently tried to dump the contents of the attached file on dmg parser and failed to locate any valid partitions. This dmg is openable by apple native command...

Here is further resolution of #82 (see my comment there for explanations). I took the occasion the convert m_pos as uint64_t, as all offsets are.

FYI: the status picture from TeamCity doesn't work for quite a while

Remove openssl dependency: using openssl for only base64 decoding is a bit much. base64 decoding code is taken from http://stackoverflow.com/questions/180947/base64-decode-snippet-in-c (post by LihO). But i've added skipping of non base64...

AES-128 and AES-256. Is it actually possible? Thanks.