mirror of https://github.com/0intro/conterm
17 lines
237 B
C
17 lines
237 B
C
|
#include "os.h"
|
||
|
#include <mp.h>
|
||
|
#include <libsec.h>
|
||
|
|
||
|
RSApub*
|
||
|
rsaprivtopub(RSApriv *priv)
|
||
|
{
|
||
|
RSApub *pub;
|
||
|
|
||
|
pub = rsapuballoc();
|
||
|
if(pub == nil)
|
||
|
return nil;
|
||
|
pub->n = mpcopy(priv->pub.n);
|
||
|
pub->ek = mpcopy(priv->pub.ek);
|
||
|
return pub;
|
||
|
}
|