• 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
        • Isar
        • Kestrel-utilities
        • Set
        • C
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
        • Java
        • Riscv
        • Bitcoin
          • Bip32
            • Bip32-wallet-structure
            • Bip32-key-trees
            • Bip32-key-serialization
            • Bip32-key-derivation
            • Bip32-executable-attachments
            • Bip32-extended-keys
              • Bip32-chain-code
              • Bip32-ext-pub-key
              • Bip32-ext-priv-key
              • Bip32-ext-key
                • Bip32-ext-key-fix
                • Bip32-ext-key-case
                • Bip32-ext-key-equiv
                • Bip32-ext-key-p
                • Bip32-ext-key-pub
                  • Bip32-ext-key-pub->get
                  • Make-bip32-ext-key-pub
                    • Change-bip32-ext-key-pub
                  • Bip32-ext-key-priv
                  • Bip32-ext-key-kind
              • Bip32-master-key-generation
            • Bech32
            • Bip39
            • Bip44
            • Base58
            • Bip43
            • Bytes
            • Base58check
            • Cryptography
            • Bip-350
            • Bip-173
          • 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
    • Bip32-ext-key-pub

    Make-bip32-ext-key-pub

    Basic constructor macro for bip32-ext-key-pub structures.

    Syntax
    (make-bip32-ext-key-pub [:get <get>]) 
    

    This is the usual way to construct bip32-ext-key-pub structures. It simply conses together a structure with the specified fields.

    This macro generates a new bip32-ext-key-pub structure from scratch. See also change-bip32-ext-key-pub, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by fty::defprod.

    Macro: make-bip32-ext-key-pub

    (defmacro make-bip32-ext-key-pub (&rest args)
      (std::make-aggregate 'bip32-ext-key-pub
                           args '((:get))
                           'make-bip32-ext-key-pub
                           nil))

    Function: bip32-ext-key-pub

    (defun bip32-ext-key-pub (get)
      (declare (xargs :guard (bip32-ext-pub-key-p get)))
      (declare (xargs :guard t))
      (let ((__function__ 'bip32-ext-key-pub))
        (declare (ignorable __function__))
        (b* ((get (mbe :logic (bip32-ext-pub-key-fix get)
                       :exec get)))
          (cons :pub (list get)))))