-
Notifications
You must be signed in to change notification settings - Fork 34
Development
Joachim Metz edited this page Sep 4, 2016
·
2 revisions
import pyfvde
pyfvde.get_version()
import pyfvde
fvde_volume = pyfvde.volume()
fvde_volume.open("image.raw")
fvde_volume.close()
The explicit call to fvde_volume.close() is not required.
import pyfvde
file_object = open("image.raw", "rb")
fvde_volume = pyfvde.volume()
fvde_volume.open_file_object(file_object)
fvde_volume.close()
The explicit call to fvde_volume.close() is not required.
import pyfvde
help(pyfvde)
help(pyfvde.volume)