Setup($1^\lambda$) $\to \mathcal params$. On input security paramater,output a set of global public parameters $\mathcal params$
Can you give some examples to explain the cryptographic terminology?
Mint($\mathcal params$) $\to (\mathcal c ,\mathcal skc $). On input paramters $\mathcal params$, output a coin $\mathcal c \in \mathcal C $, as well as a trapdoor $\mathcal skc$
Welcome to MSE!
In view of the RSA (Rivest, Shamir, Adlement) cryptosystem, each user chooses two large primes $p$ and $q$. Then she (beloved Alice) computes $n=p\cdot q$ and $\phi(n) = (p-1)(q-1)$. Afterwards she chooses an integer $e$ in the range $1<e<\phi(n)$, usually a prime, such that $e$ is invertible modulo $\phi(n)$. Then she computes $d =e^{-1}$ in ${\Bbb Z}_{\phi(n)}$.
Then $(n,e)$ is the public key and $d$ is the private key. The data $p,q,\phi(n)$ must be kept secret. Hope it helps