https://gitlab.com/tezos/tezos
Raw File
Tip revision: 98ab4bba25cf56c67e8be27eb4c2145e12be4655 authored by Arvid Jakobsson on 01 June 2023, 12:50:09 UTC
CI: cache [publish:documentation]
Tip revision: 98ab4bb
check_signature.tz
parameter key;
storage (pair signature string);
code {
       DUP; DUP;
       DIP{ CDR; DUP; CAR;
            DIP{CDR; PACK}};
       CAR; CHECK_SIGNATURE;
       IF {} {FAIL} ;
       CDR; NIL operation ; PAIR};

back to top