PRODUCTS
Mathematica
Mathematica Home Edition
Mathematica for Students
Mathematica for the Classroom
grid
Mathematica
Wolfram Lightweight Grid Manager
web
Mathematica
Mathematica Player
(free download)
Mathematica Player Pro
Wolfram
Workbench
Mathematica
Applications
SOLUTIONS
Engineering
Aerospace Engineering & Defense
Chemical Engineering
Electrical Engineering
Image Processing
Industrial Engineering
Materials Science
Mechanical Engineering
Operations Research
Optics
Petroleum Engineering
Biotechnology & Medicine
Bioinformatics
Medical Imaging
Finance, Statistics, & Business Analysis
Actuarial Sciences
Data Analysis & Mining
Econometrics
Economics
Financial Engineering & Mathematics
Financial Risk Management
Statistics
Software Engineering & Content Delivery
Authoring & Publishing
Interface Development
Software Engineering
Web Development
Science
Astronomy
Biological Sciences
Chemistry
Environmental Sciences
Geosciences
Social & Behavioral Sciences
Design, Arts, & Entertainment
Game Design, Special Effects, & Generative Art
Education
Higher Education
Precollege Education
Students
Technology
Interactive Deployment
High-Performance & Parallel Computing (HPC)
See Also: Technology Guide
PURCHASE
Online Store
Other Ways to Buy
Volume & Site Licensing
Contact Sales
Software
Service
Upgrades
Training
Books
FOR USERS
All User Resources
Product Registration
Technical Support
Customer Service
Developer Support
Does My Site Have a License?
Free Seminars
Learning Center
Training
Custom Group Seminars
Documentation & Examples
Tutorial Screencasts
Video Gallery
Demonstrations Project
Education Portal
Student Resources
COMPANY
About Wolfram Research
News & Events
Wolfram Blog
Employment Opportunities
History of
Mathematica
Stephen Wolfram's Home Page
Contact Us
OUR SITES
Wolfram|Alpha
Demonstrations Project
Wolfram Blog
MathWorld
Integrator
Wolfram Functions Site
Mathematica Journal
Wolfram Library Archive
Wolfram
Tones
Wolfram Science
Stephen Wolfram
DOCUMENTATION CENTER SEARCH
Mathematica
>
Systems Interfaces & Deployment
>
File Operations
>
Built-in
Mathematica
Symbol
FileByteCount
FileDate
Hash
BinaryReadList
FileFormat
See Also »
|
Compression and Archive Formats
Cryptographic Number Theory
External Operations
File Operations
Files
Summary of New Features in 7.0
New in 6.0: System Interfaces & Deployment
More About »
FileHash
FileHash
["
file
"]
gives an integer hash code for the contents of the specified file.
FileHash
["
file
", "
type
"]
gives an integer hash of the specified type.
MORE INFORMATION
Values generated by
FileHash
are based on the raw bytes in a file.
Possible hash code types include:
"Adler32"
Adler 32-bit cyclic redundancy check
"CRC32"
32-bit cyclic redundancy check
"MD2"
128-bit MD2 code
"MD5"
128-bit MD5 code
"SHA"
160-bit SHA-1 code
"SHA256"
256-bit SHA code
"SHA384"
384-bit SHA code
"SHA512"
512-bit SHA code
FileHash
by default uses 128-bit MD5 code.
FileHash
["
file
", "
type
",
n
]
gives the hash code for the first
n
bytes of the file.
FileHash
["
file
", "
type
", -
n
]
gives the hash code for the last
n
bytes.
FileHash
["
file
", "
type
", {
m
,
n
}]
gives the hash code for bytes
m
through
n
.
FileHash
["
file
", "
type
", 0]
gives the hash code for 0 bytes.
FileHash
works not only on files, but also on streams.
FileHash
[
obj
,
...
]
effectively extracts data at the specified range of byte positions in the stream
obj
, ignoring any previous stream position.
EXAMPLES
CLOSE ALL
Basic Examples
(2)
The fingerprint of a file:
In[1]:=
Out[1]=
The
"SHA512"
hash code of a file:
In[1]:=
Out[1]=
SEE ALSO
FileByteCount
FileDate
Hash
BinaryReadList
FileFormat
MORE ABOUT
Compression and Archive Formats
Cryptographic Number Theory
External Operations
File Operations
Files
Summary of New Features in 7.0
New in 6.0: System Interfaces & Deployment
New in 6 | Last modified in 7