Skip to content

Commit

Permalink
Added support for some additional Mft Attribute Types.
Browse files Browse the repository at this point in the history
  • Loading branch information
omerbenamram committed Feb 6, 2020
1 parent 9cb7c2a commit 8d6e2c1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.1] - 2020-02-06

### Fixed
- Added support for additional MFT attributes (parsed as raw streams)

## [0.5.0] - 2020-01-06

### Changed
Expand Down
6 changes: 6 additions & 0 deletions src/attribute/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ pub enum MftAttributeType {
BITMAP = 0xB0_u32,
/// The reparse point data.
ReparsePoint = 0xC0_u32,
/// Used for backward compatibility with OS/2 applications (HPFS)
EaInformation = 0xD0_u32,
/// Used for backward compatibility with OS/2 applications (HPFS)
EA = 0xE0_u32,
/// Keys and other information about encrypted attributes (NTFS 3.0+; Windows 2000+)
LoggedUtilityStream = 0x100_u32,
}

bitflags! {
Expand Down

0 comments on commit 8d6e2c1

Please sign in to comment.