Raw constructor for definterface-hmac-infop structures.
Syntax:
(definterface-hmac-info key-size-limit block-size output-size)
This is the lowest-level constructor for definterface-hmac-infop structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-definterface-hmac-info or change-definterface-hmac-info instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The definterface-hmac-infop structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-definterface-hmac-info instead.
This is an ordinary constructor function introduced by std::defaggregate.
Function:
(defun definterface-hmac-info (key-size-limit block-size output-size) (declare (xargs :guard (and (maybe-posp key-size-limit) (maybe-posp block-size) (posp output-size)))) (cons (cons 'key-size-limit key-size-limit) (cons (cons 'block-size block-size) (cons (cons 'output-size output-size) nil))))