diff options
| author | Andrew Lamoureux <andrew@vector35.com> | 2019-03-20 15:35:00 -0400 |
|---|---|---|
| committer | Andrew Lamoureux <andrew@vector35.com> | 2019-03-20 15:35:00 -0400 |
| commit | a2d0b2cd66639e983b5a4fb191d8afe5cac77855 (patch) | |
| tree | 8561a4193d6cb394839cf6aaef2642b095a4ea30 /python/examples/kaitai/regf.py | |
| parent | b5e86006a35910ff115d35998e84938e7d92a8ea (diff) | |
kaitai: more format compatibility, testing
Diffstat (limited to 'python/examples/kaitai/regf.py')
| -rw-r--r-- | python/examples/kaitai/regf.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/python/examples/kaitai/regf.py b/python/examples/kaitai/regf.py index de883bc3..6eb96b0d 100644 --- a/python/examples/kaitai/regf.py +++ b/python/examples/kaitai/regf.py @@ -10,25 +10,6 @@ if parse_version(ks_version) < parse_version('0.7'): raise Exception("Incompatible Kaitai Struct Python API: 0.7 or later is required, but you have %s" % (ks_version)) class Regf(KaitaiStruct): - """This spec allows to parse files used by Microsoft Windows family of - operating systems to store parts of its "registry". "Registry" is a - hierarchical database that is used to store system settings (global - configuration, per-user, per-application configuration, etc). - - Typically, registry files are stored in: - - * System-wide: several files in `%SystemRoot%\System32\Config\` - * User-wide: - * `%USERPROFILE%\Ntuser.dat` - * `%USERPROFILE%\Local Settings\Application Data\Microsoft\Windows\Usrclass.dat` (localized, Windows 2000, Server 2003 and Windows XP) - * `%USERPROFILE%\AppData\Local\Microsoft\Windows\Usrclass.dat` (non-localized, Windows Vista and later) - - Note that one typically can't access files directly on a mounted - filesystem with a running Windows OS. - - .. seealso:: - Source - https://github.com/libyal/libregf/blob/master/documentation/Windows%20NT%20Registry%20File%20(REGF)%20format.asciidoc - """ SEQ_FIELDS = ["header", "hive_bins"] def __init__(self, _io, _parent=None, _root=None): self._io = _io |
