Sha256: 7013bbe682e1c479a633b2cc12dfe83fdcd821b508e63c6d2ec8845d0f6c0cb3
Contents?: true
Size: 524 Bytes
Versions: 43
Compression:
Stored size: 524 Bytes
Contents
# frozen_string_literal: true module Files class U2fSignRequest attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - App ID for U2F def app_id @attributes[:app_id] end # string - Challenge String for U2F def challenge @attributes[:challenge] end # string - Signature request for U2F def sign_request @attributes[:sign_request] end end end
Version data entries
43 entries across 43 versions & 1 rubygems