3f8ecd933a
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
21 lines
697 B
C
21 lines
697 B
C
/*
|
|
* Copyright (C) 2017 Denys Vlasenko
|
|
*
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
|
*
|
|
* Selected few declarations for RSA.
|
|
*/
|
|
|
|
typedef struct {
|
|
pstm_int e, d, N, qP, dP, dQ, p, q;
|
|
uint32 size; /* Size of the key in bytes */
|
|
int32 optimized; /* 1 for optimized */
|
|
psPool_t *pool;
|
|
} psRsaKey_t;
|
|
|
|
#define psRsaEncryptPub(pool, key, in, inlen, out, outlen, data) \
|
|
psRsaEncryptPub(pool, key, in, inlen, out, outlen)
|
|
int32 psRsaEncryptPub(psPool_t *pool, psRsaKey_t *key,
|
|
unsigned char *in, uint32 inlen,
|
|
unsigned char *out, uint32 outlen, void *data);
|