Constructor macro for definterface-hmac-infop structures.
Syntax:
(make-definterface-hmac-info [:key-size-limit <key-size-limit>] [:block-size <block-size>] [:output-size <output-size>])
This is our preferred way to construct definterface-hmac-infop structures. It simply conses together a structure with the specified fields.
This macro generates a new definterface-hmac-infop structure from scratch. See also change-definterface-hmac-info, which can "change" an existing structure, instead.
The definterface-hmac-infop structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-definterface-hmac-info instead.
This is an ordinary
Macro:
(defmacro make-definterface-hmac-info (&rest args) (std::make-aggregate 'definterface-hmac-info args '((:key-size-limit) (:block-size) (:output-size)) 'make-definterface-hmac-info nil))