class RestPki::SignatureAlgorithmAndValue
Attributes
algorithm[R]
value[R]
Public Class Methods
new(model)
click to toggle source
# File lib/rest_pki/signature_algorithm_and_value.rb, line 6 def initialize(model) @algorithm = SignatureAlgorithm.get_instance_by_api_model(model['algorithmIdentifier']) @value = Base64.decode64(model['value']) end