Current section
Files
Jump to
Current section
Files
lib/smee_view/aspects/signing_method.ex
defmodule SmeeView.Aspects.SigningMethod do
@moduledoc """
Represents and processes <alg:SigningMethod> elements in entity metadata as Aspect structs.
The functions in this module are intended to be applied to individual Aspect structs - for extracting and processing
collections of these records please use the matching View module.
"""
@type t :: %__MODULE__{
algorithm: binary()
}
@derive Jason.Encoder
defstruct [
algorithm: nil
]
use SmeeView.Aspects.AspectCommon, features: [:algo]
#######################################################################################
end