Skip to content
Snippets Groups Projects
Commit df200717 authored by Niels Möller's avatar Niels Möller
Browse files

(rsa_keypair_to_sexp): Use literals with sexp_format.

Rev: src/nettle/rsa2sexp.c:1.5
parent e01516ec
No related branches found
No related tags found
No related merge requests found
......@@ -39,14 +39,14 @@ rsa_keypair_to_sexp(struct nettle_buffer *buffer,
{
if (priv)
return sexp_format(buffer,
"(%0s(%0s(%0s%b)(%0s%b)(%0s%b)"
"(%0s%b)(%0s%b)(%0s%b)(%0s%b)(%0s%b)))",
"private-key", "rsa", "n", pub->n, "e", pub->e,
"d", priv->d, "p", priv->p, "q", priv->q,
"a", priv->a, "b", priv->b, "c", priv->c);
"(private-key(%0s(n%b)(e%b)"
"(d%b)(p%b)(q%b)(a%b)(b%b)(c%b)))",
"rsa", pub->n, pub->e,
priv->d, priv->p, priv->q,
priv->a, priv->b, priv->c);
else
return sexp_format(buffer, "(%0s(%0s(%0s%b)(%0s%b)))",
"public-key", "rsa", "n", pub->n, "e", pub->e);
return sexp_format(buffer, "(public-key(%0s(n%b)(e%b)))",
"rsa", pub->n, pub->e);
}
#endif /* WITH_PUBLIC_KEY */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment