Skip to content

bylickilabs/FileHasher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

7 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ” File Hasher (R Version)

r

This is a pure SHA-256 hashing tool written in R, capable of processing:

  • βœ… Single files
  • βœ… Complete directories (recursive)
  • βœ… ZIP archives (auto-extracted)
  • βœ… RAR archives (requires unrar CLI)



πŸ› οΈ Requirements

  • R 4.x
  • Packages: digest, jsonlite, tools
  • System dependency for .rar: unrar must be installed and in PATH

Install required packages:

install.packages(c("digest", "jsonlite", "tools"))



πŸš€ Usage

Rscript file_hasher.R path/to/file_or_folder_or_archive

Outputs a JSON map of paths β†’ SHA-256 hash values.




LICENSE: MIT LICENSE




Author: BYLICKILABS