• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
      • Proof-checker-array
      • Soft
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Ethereum
      • Leftist-trees
      • Java
      • Riscv
      • Taspi
      • Bitcoin
      • Zcash
      • Des
      • X86isa
      • Sha-2
      • Yul
      • Proof-checker-itp13
      • Regex
      • ACL2-programming-language
      • Json
      • Jfkr
      • Equational
      • Cryptography
        • R1cs
        • Interfaces
          • Definterface-hmac
          • Definterface-encrypt-block
          • Definterface-hash
          • Definterface-encrypt-init
            • Definterface-encrypt-init-fn
            • Definterface-encrypt-init-macro-definition
            • Definterface-pbkdf2
            • Aes-256-cbc-pkcs7-interface
            • Aes-192-cbc-pkcs7-interface
            • Aes-128-cbc-pkcs7-interface
            • Aes-256-interface
            • Aes-192-interface
            • Aes-128-interface
            • Pbkdf2-hmac-sha-512-interface
            • Keccak-256-interface
            • Sha-256-interface
            • Keccak-512-interface
            • Ripemd-160-interface
            • Sha-512-interface
            • Pbkdf2-hmac-sha-256-interface
            • Hmac-sha-512-interface
            • Hmac-sha-256-interface
            • Secp256k1-interface
            • Secp256k1-ecdsa-interface
          • Sha-2
          • Keccak
          • Kdf
          • Mimc
          • Padding
          • Hmac
          • Elliptic-curves
          • Attachments
          • Primes
          • Elliptic-curve-digital-signature-algorithm
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Definterface-encrypt-init

    Definterface-encrypt-init-macro-definition

    Definition of the definterface-encrypt-init macro.

    Macro: definterface-encrypt-init

    (defmacro definterface-encrypt-init
              (name &key key-size init-size
                    name-encrypt-bits name-decrypt-bits
                    name-encrypt-bytes name-decrypt-bytes
                    topic parents short long)
     (cons
      'make-event
      (cons
       (cons
        'definterface-encrypt-init-fn
        (cons
         (cons 'quote (cons name 'nil))
         (cons
          key-size
          (cons
           init-size
           (cons
            (cons 'quote
                  (cons name-encrypt-bits 'nil))
            (cons
             (cons 'quote
                   (cons name-decrypt-bits 'nil))
             (cons
               (cons 'quote
                     (cons name-encrypt-bytes 'nil))
               (cons (cons 'quote
                           (cons name-decrypt-bytes 'nil))
                     (cons (cons 'quote (cons topic 'nil))
                           (cons (cons 'quote (cons parents 'nil))
                                 (cons short (cons long 'nil))))))))))))
       'nil)))