File: android_key_attestation.rb

package info (click to toggle)
ruby-android-key-attestation 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 216 kB
  • sloc: ruby: 352; makefile: 7; sh: 4
file content (13 lines) | stat: -rw-r--r-- 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module AndroidKeyAttestation
  class Error < StandardError; end
  class ExtensionMissingError < Error; end
  class ChallengeMismatchError < Error; end
  class CertificateVerificationError < Error; end

  GEM_ROOT = File.expand_path(__dir__)
end

require_relative "android_key_attestation/statement"
require_relative "android_key_attestation/version"