You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, List type is used when we refer to a list of BitVec in functional specification of AES-GCM. This means information on the length of the list of BitVecs are lost. This can cause trouble when type inference requires knowing the length of the lists -- theorems would have to be defined manually for the length of lists. Rework the AES-GCM specification to use Vector type to see if it can simplify definitions.
The text was updated successfully, but these errors were encountered:
Currently,
List
type is used when we refer to a list ofBitVec
in functional specification of AES-GCM. This means information on the length of the list ofBitVec
s are lost. This can cause trouble when type inference requires knowing the length of the lists -- theorems would have to be defined manually for the length of lists. Rework the AES-GCM specification to use Vector type to see if it can simplify definitions.The text was updated successfully, but these errors were encountered: