本文简要介绍ruby语言中 Digest::SHA1类
的用法。
使用 NIST(美国国家标准与技术研究院)的 SHA-1 Secure Hash
算法计算消息摘要的类,在 FIPS PUB 180-1 中进行了说明。
有关摘要 API,请参阅 Digest::Instance
。
SHA-1 计算 160 位(20 字节)的摘要。
例子
require 'digest'
# Compute a complete digest
Digest::SHA1.hexdigest 'abc' #=> "a9993e36..."
# Compute digest by chunks
sha1 = Digest::SHA1.new # =>#<Digest::SHA1>
sha1.update "ab"
sha1 << "c" # alias for #update
sha1.hexdigest # => "a9993e36..."
# Use the same object to compute another digest
sha1.reset
sha1 << "message"
sha1.hexdigest # => "6f9b9af3..."
相关用法
- Ruby SHA2.block_length用法及代码示例
- Ruby SHA2.digest_length用法及代码示例
- Ruby SHA2类用法及代码示例
- Ruby Symbol capitalize用法及代码示例
- Ruby SizedQueue clear()用法及代码示例
- Ruby Spotter.spot_op_asgn2_for_name用法及代码示例
- Ruby StringScanner skip_until用法及代码示例
- Ruby StringScanner search_full用法及代码示例
- Ruby String.match?用法及代码示例
- Ruby StringScanner.beginning_of_line?用法及代码示例
- Ruby Stat.stat <=>用法及代码示例
- Ruby Symbol.to_proc用法及代码示例
- Ruby Symbol.end_with?用法及代码示例
- Ruby StringScanner restsize用法及代码示例
- Ruby Spotter.spot_opcall_for_name用法及代码示例
- Ruby Set flatten()用法及代码示例
- Ruby SpecificationProvider.requirement_satisfied_by?用法及代码示例
- Ruby Set.replace用法及代码示例
- Ruby String delete!用法及代码示例
- Ruby String chop!用法及代码示例
- Ruby SizedQueue push()用法及代码示例
- Ruby Specification.file_name用法及代码示例
- Ruby SimpleDelegator.__setobj__用法及代码示例
- Ruby String.unpack用法及代码示例
- Ruby Stat.world_writable?用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 SHA1类。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。