Sha256: 7e8d177e7ad84d115bfa735ce91e945900dce3470a7c44d13d628b08b6b4aad3

Contents?: true

Size: 274 Bytes

Versions: 3

Compression:

Stored size: 274 Bytes

Contents

# typed: strict
# frozen_string_literal: true

module Paseto
  module ASN1
    class Ed25519Identifier < T::Struct
      extend T::Sig

      sig { returns([OpenSSL::ASN1::ObjectId]) }
      def build
        [OpenSSL::ASN1::ObjectId('ED25519')]
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-paseto-0.1.2 lib/paseto/asn1/ed25519_identifier.rb
ruby-paseto-0.1.1 lib/paseto/asn1/ed25519_identifier.rb
ruby-paseto-0.1.0 lib/paseto/asn1/ed25519_identifier.rb