Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed May 22, 2024
1 parent dacff22 commit 9a99e11
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/rpm/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ impl Package {
self.write(&mut io::BufWriter::new(fs::File::create(path)?))
}

/// Iterate over the file contents of the package payload
pub fn files(&self) -> Iterator<Item = FileEntry> {
let file_entries = self.get_file_entries();

}

/// Create package signatures using an external key and add them to the signature header
#[cfg(feature = "signature-meta")]
pub fn sign<S>(&mut self, signer: S) -> Result<(), Error>
Expand Down

0 comments on commit 9a99e11

Please sign in to comment.