rsa.pod 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. =pod
  2. =head1 NAME
  3. rsa - RSA public key cryptosystem
  4. =head1 SYNOPSIS
  5. #include <openssl/rsa.h>
  6. #include <openssl/engine.h>
  7. RSA * RSA_new(void);
  8. void RSA_free(RSA *rsa);
  9. int RSA_public_encrypt(int flen, unsigned char *from,
  10. unsigned char *to, RSA *rsa, int padding);
  11. int RSA_private_decrypt(int flen, unsigned char *from,
  12. unsigned char *to, RSA *rsa, int padding);
  13. int RSA_private_encrypt(int flen, unsigned char *from,
  14. unsigned char *to, RSA *rsa,int padding);
  15. int RSA_public_decrypt(int flen, unsigned char *from,
  16. unsigned char *to, RSA *rsa,int padding);
  17. int RSA_sign(int type, unsigned char *m, unsigned int m_len,
  18. unsigned char *sigret, unsigned int *siglen, RSA *rsa);
  19. int RSA_verify(int type, unsigned char *m, unsigned int m_len,
  20. unsigned char *sigbuf, unsigned int siglen, RSA *rsa);
  21. int RSA_size(const RSA *rsa);
  22. RSA *RSA_generate_key(int num, unsigned long e,
  23. void (*callback)(int,int,void *), void *cb_arg);
  24. int RSA_check_key(RSA *rsa);
  25. int RSA_blinding_on(RSA *rsa, BN_CTX *ctx);
  26. void RSA_blinding_off(RSA *rsa);
  27. void RSA_set_default_method(const RSA_METHOD *meth);
  28. const RSA_METHOD *RSA_get_default_method(void);
  29. int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
  30. const RSA_METHOD *RSA_get_method(const RSA *rsa);
  31. RSA_METHOD *RSA_PKCS1_SSLeay(void);
  32. RSA_METHOD *RSA_null_method(void);
  33. int RSA_flags(const RSA *rsa);
  34. RSA *RSA_new_method(ENGINE *engine);
  35. int RSA_print(BIO *bp, RSA *x, int offset);
  36. int RSA_print_fp(FILE *fp, RSA *x, int offset);
  37. int RSA_get_ex_new_index(long argl, char *argp, int (*new_func)(),
  38. int (*dup_func)(), void (*free_func)());
  39. int RSA_set_ex_data(RSA *r,int idx,char *arg);
  40. char *RSA_get_ex_data(RSA *r, int idx);
  41. int RSA_sign_ASN1_OCTET_STRING(int dummy, unsigned char *m,
  42. unsigned int m_len, unsigned char *sigret, unsigned int *siglen,
  43. RSA *rsa);
  44. int RSA_verify_ASN1_OCTET_STRING(int dummy, unsigned char *m,
  45. unsigned int m_len, unsigned char *sigbuf, unsigned int siglen,
  46. RSA *rsa);
  47. =head1 DESCRIPTION
  48. These functions implement RSA public key encryption and signatures
  49. as defined in PKCS #1 v2.0 [RFC 2437].
  50. The B<RSA> structure consists of several BIGNUM components. It can
  51. contain public as well as private RSA keys:
  52. struct
  53. {
  54. BIGNUM *n; // public modulus
  55. BIGNUM *e; // public exponent
  56. BIGNUM *d; // private exponent
  57. BIGNUM *p; // secret prime factor
  58. BIGNUM *q; // secret prime factor
  59. BIGNUM *dmp1; // d mod (p-1)
  60. BIGNUM *dmq1; // d mod (q-1)
  61. BIGNUM *iqmp; // q^-1 mod p
  62. // ...
  63. };
  64. RSA
  65. In public keys, the private exponent and the related secret values are
  66. B<NULL>.
  67. B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp> may be B<NULL> in private
  68. keys, but the RSA operations are much faster when these values are
  69. available.
  70. Note that RSA keys may use non-standard B<RSA_METHOD> implementations,
  71. either directly or by the use of B<ENGINE> modules. In some cases (eg. an
  72. ENGINE providing support for hardware-embedded keys), these BIGNUM values
  73. will not be used by the implementation or may be used for alternative data
  74. storage. For this reason, applications should generally avoid using RSA
  75. structure elements directly and instead use API functions to query or
  76. modify keys.
  77. =head1 CONFORMING TO
  78. SSL, PKCS #1 v2.0
  79. =head1 PATENTS
  80. RSA was covered by a US patent which expired in September 2000.
  81. =head1 SEE ALSO
  82. L<rsa(1)|rsa(1)>, L<bn(3)|bn(3)>, L<dsa(3)|dsa(3)>, L<dh(3)|dh(3)>,
  83. L<rand(3)|rand(3)>, L<engine(3)|engine(3)>, L<RSA_new(3)|RSA_new(3)>,
  84. L<RSA_public_encrypt(3)|RSA_public_encrypt(3)>,
  85. L<RSA_sign(3)|RSA_sign(3)>, L<RSA_size(3)|RSA_size(3)>,
  86. L<RSA_generate_key(3)|RSA_generate_key(3)>,
  87. L<RSA_check_key(3)|RSA_check_key(3)>,
  88. L<RSA_blinding_on(3)|RSA_blinding_on(3)>,
  89. L<RSA_set_method(3)|RSA_set_method(3)>, L<RSA_print(3)|RSA_print(3)>,
  90. L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>,
  91. L<RSA_private_encrypt(3)|RSA_private_encrypt(3)>,
  92. L<RSA_sign_ASN1_OCTET_STRING(3)|RSA_sign_ASN1_OCTET_STRING(3)>,
  93. L<RSA_padding_add_PKCS1_type_1(3)|RSA_padding_add_PKCS1_type_1(3)>
  94. =cut