• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
          • Defbyte
          • Defresult
          • Fold
          • Specific-types
          • Defsubtype
          • Defset
          • Defflatsum
          • Deflist-of-len
          • Pos-list
          • Defomap
          • Defbytelist
          • Defbyte-standard-instances
          • Deffixtype-alias
          • Defbytelist-standard-instances
          • Defunit
          • Byte-list
            • Byte-listp
            • Byte-list-fix
            • Byte-list20
            • Byte-list32
            • Byte-list64
              • Byte-list64p
                • Byte-list64-fix
              • Byte-list-equiv
            • Database
            • Byte
            • String-option
            • Pos-option
            • Nibble
            • Nat-option
            • Ubyte32-option
            • Byte-list20
            • Byte-list32
            • Byte-list64
              • Byte-list64p
                • Byte-list64-fix
              • Pseudo-event-form
              • Natoption/natoptionlist
              • Nati
              • Character-list
              • Nat/natlist
              • Maybe-string
              • Nibble-list
              • Natoption/natoptionlist-result
              • Nat/natlist-result
              • Nat-option-list-result
              • Set
              • String-result
              • String-list-result
              • Nat-result
              • Nat-option-result
              • Nat-list-result
              • Maybe-string-result
              • Integer-result
              • Character-result
              • Character-list-result
              • Boolean-result
              • Map
              • Dependencies
              • Bag
              • Pos-set
              • Hex-digit-char-list
              • Dec-digit-char-list
              • Pseudo-event-form-list
              • Nat-option-list
              • Character-any-map
              • Any-nat-map
              • Symbol-set
              • String-set
              • Nat-set
              • Character-set
              • Oct-digit-char-list
              • Bin-digit-char-list
              • Bit-list
            • Isar
            • Kestrel-utilities
            • Set
            • C
            • Soft
            • Bv
            • Imp-language
            • Ethereum
            • Event-macros
            • Java
            • Riscv
            • Bitcoin
            • Zcash
            • Yul
            • ACL2-programming-language
            • Prime-fields
            • Json
            • Syntheto
            • File-io-light
            • Cryptography
            • Number-theory
            • Axe
            • Lists-light
            • Builtins
            • Solidity
            • Helpers
            • Htclient
            • Typed-lists-light
            • Arithmetic-light
          • X86isa
          • Axe
          • Execloader
        • Math
        • Testing-utilities
      • Byte-list64

      Byte-list64p

      Recognizer for byte-list64.

      Signature
      (byte-list64p x) → *

      Definitions and Theorems

      Function: byte-list64p

      (defun byte-list64p (x)
        (declare (xargs :guard t))
        (and (byte-listp x) (equal (len x) 64)))

      Theorem: booleanp-of-byte-list64p

      (defthm booleanp-of-byte-list64p
        (booleanp (byte-list64p x)))

      Theorem: byte-listp-when-byte-list64p-rewrite

      (defthm byte-listp-when-byte-list64p-rewrite
        (implies (byte-list64p x)
                 (byte-listp x)))

      Theorem: byte-listp-when-byte-list64p-forward

      (defthm byte-listp-when-byte-list64p-forward
        (implies (byte-list64p x)
                 (byte-listp x))
        :rule-classes :forward-chaining)

      Theorem: len-when-byte-list64p-tau

      (defthm len-when-byte-list64p-tau
        (implies (byte-list64p x)
                 (equal (len x) 64))
        :rule-classes :tau-system)