md5: Compute the MD5 hash of an object

View source: R/md5.R

md5R Documentation

Compute the MD5 hash of an object

Description

Wrapper for calling tools::md5sum() on objects rather than files.

Usage

md5(x)

Arguments

x

An object

Details

All x objects are serialized to a temporary file before tools::md5sum() is called.

Value

A md5sum object

Examples

md5("hello")
md5(1:10)
md5(data.frame(a = 1:10, b = letters[1:10]))

mark documentation built on April 3, 2025, 6:41 p.m.

Related to md5 in mark...