File: encrypt0.rb

package info (click to toggle)
ruby-cose 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 272 kB
  • sloc: ruby: 993; sh: 5; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require "cose/security_message"

module COSE
  class Encrypt0 < SecurityMessage
    attr_reader :ciphertext

    def self.keyword_arguments_for_initialize(decoded)
      { ciphertext: decoded[0] }
    end

    def initialize(ciphertext:, **keyword_arguments)
      super(**keyword_arguments)

      @ciphertext = ciphertext
    end
  end
end