Raw constructor for honsed definterface-hmac-infop structures.
Syntax:
(honsed-definterface-hmac-info key-size-limit block-size output-size)
This is identical to definterface-hmac-info, except that we hons the structure we are creating.
This is an ordinary honsing constructor introduced by std::defaggregate.
Function:
(defun honsed-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)))) (mbe :logic (definterface-hmac-info key-size-limit block-size output-size) :exec (hons (hons 'key-size-limit key-size-limit) (hons (hons 'block-size block-size) (hons (hons 'output-size output-size) nil)))))