tls_rsa.h 703 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2017 Denys Vlasenko
  3. *
  4. * Licensed under GPLv2, see file LICENSE in this source tree.
  5. *
  6. * Selected few declarations for RSA.
  7. */
  8. typedef struct {
  9. pstm_int e, d, N, qP, dP, dQ, p, q;
  10. uint32 size; /* Size of the key in bytes */
  11. int32 optimized; /* 1 for optimized */
  12. //bbox psPool_t *pool;
  13. } psRsaKey_t;
  14. #define psRsaEncryptPub(pool, key, in, inlen, out, outlen, data) \
  15. psRsaEncryptPub( key, in, inlen, out, outlen)
  16. int32 psRsaEncryptPub(psPool_t *pool, psRsaKey_t *key,
  17. unsigned char *in, uint32 inlen,
  18. unsigned char *out, uint32 outlen, void *data);