Class: GOBL::DSig::Digest
- Defined in:
- lib/generated/gobl/dsig/digest.rb
Overview
Digest defines a structure to hold a digest value including the algorithm used to generate it.
Constant Summary collapse
- SCHEMA_ID =
The Schema ID of the GOBL Digest structure
'https://gobl.org/draft-0/dsig/digest'
Instance Attribute Summary collapse
-
#alg ⇒ String
readonly
Algorithm stores the algorithm key that was used to generate the value.
-
#val ⇒ String
readonly
Value contains the Hexadecimal representation of the resulting hash generated by the algorithm.
Method Summary
Methods inherited from Object
Methods inherited from Struct
#as_json, from_data, from_json!, #to_json
Instance Attribute Details
#alg ⇒ String (readonly)
Algorithm stores the algorithm key that was used to generate the value.
18 |
# File 'lib/generated/gobl/dsig/digest.rb', line 18 property :alg, String |
#val ⇒ String (readonly)
Value contains the Hexadecimal representation of the resulting hash generated by the algorithm.
24 |
# File 'lib/generated/gobl/dsig/digest.rb', line 24 property :val, String |