ECDSA_SIG_new.pod 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. =pod
  2. =head1 NAME
  3. ECDSA_SIG_get0, ECDSA_SIG_set0,
  4. ECDSA_SIG_new, ECDSA_SIG_free, i2d_ECDSA_SIG, d2i_ECDSA_SIG, ECDSA_size,
  5. ECDSA_sign, ECDSA_do_sign, ECDSA_verify, ECDSA_do_verify, ECDSA_sign_setup,
  6. ECDSA_sign_ex, ECDSA_do_sign_ex - low level elliptic curve digital signature
  7. algorithm (ECDSA) functions
  8. =head1 SYNOPSIS
  9. #include <openssl/ecdsa.h>
  10. ECDSA_SIG *ECDSA_SIG_new(void);
  11. void ECDSA_SIG_free(ECDSA_SIG *sig);
  12. void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
  13. int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
  14. int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
  15. ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
  16. int ECDSA_size(const EC_KEY *eckey);
  17. int ECDSA_sign(int type, const unsigned char *dgst, int dgstlen,
  18. unsigned char *sig, unsigned int *siglen, EC_KEY *eckey);
  19. ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len,
  20. EC_KEY *eckey);
  21. int ECDSA_verify(int type, const unsigned char *dgst, int dgstlen,
  22. const unsigned char *sig, int siglen, EC_KEY *eckey);
  23. int ECDSA_do_verify(const unsigned char *dgst, int dgst_len,
  24. const ECDSA_SIG *sig, EC_KEY* eckey);
  25. ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen,
  26. const BIGNUM *kinv, const BIGNUM *rp,
  27. EC_KEY *eckey);
  28. int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **rp);
  29. int ECDSA_sign_ex(int type, const unsigned char *dgst, int dgstlen,
  30. unsigned char *sig, unsigned int *siglen,
  31. const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey);
  32. =head1 DESCRIPTION
  33. Note: these functions provide a low level interface to ECDSA. Most
  34. applications should use the higher level B<EVP> interface such as
  35. L<EVP_DigestSignInit(3)> or L<EVP_DigestVerifyInit(3)> instead.
  36. B<ECDSA_SIG> is an opaque structure consisting of two BIGNUMs for the
  37. B<r> and B<s> value of an ECDSA signature (see X9.62 or FIPS 186-2).
  38. ECDSA_SIG_new() allocates an empty B<ECDSA_SIG> structure. Note: before
  39. OpenSSL 1.1.0 the: the B<r> and B<s> components were initialised.
  40. ECDSA_SIG_free() frees the B<ECDSA_SIG> structure B<sig>.
  41. ECDSA_SIG_get0() returns internal pointers the B<r> and B<s> values contained
  42. in B<sig>.
  43. The B<r> and B<s> values can be set by calling ECDSA_SIG_set0() and passing the
  44. new values for B<r> and B<s> as parameters to the function. Calling this
  45. function transfers the memory management of the values to the ECDSA_SIG object,
  46. and therefore the values that have been passed in should not be freed directly
  47. after this function has been called.
  48. i2d_ECDSA_SIG() creates the DER encoding of the ECDSA signature B<sig> and
  49. writes the encoded signature to B<*pp> (note: if B<pp> is NULL i2d_ECDSA_SIG()
  50. returns the expected length in bytes of the DER encoded signature).
  51. i2d_ECDSA_SIG() returns the length of the DER encoded signature (or 0 on
  52. error).
  53. d2i_ECDSA_SIG() decodes a DER encoded ECDSA signature and returns the decoded
  54. signature in a newly allocated B<ECDSA_SIG> structure. B<*sig> points to the
  55. buffer containing the DER encoded signature of size B<len>.
  56. ECDSA_size() returns the maximum length of a DER encoded ECDSA signature
  57. created with the private EC key B<eckey>.
  58. ECDSA_sign() computes a digital signature of the B<dgstlen> bytes hash value
  59. B<dgst> using the private EC key B<eckey>. The DER encoded signatures is
  60. stored in B<sig> and its length is returned in B<sig_len>. Note: B<sig> must
  61. point to ECDSA_size(eckey) bytes of memory. The parameter B<type> is currently
  62. ignored. ECDSA_sign() is wrapper function for ECDSA_sign_ex() with B<kinv>
  63. and B<rp> set to NULL.
  64. ECDSA_do_sign() is similar to ECDSA_sign() except the signature is returned
  65. as a newly allocated B<ECDSA_SIG> structure (or NULL on error). ECDSA_do_sign()
  66. is a wrapper function for ECDSA_do_sign_ex() with B<kinv> and B<rp> set to
  67. NULL.
  68. ECDSA_verify() verifies that the signature in B<sig> of size B<siglen> is a
  69. valid ECDSA signature of the hash value B<dgst> of size B<dgstlen> using the
  70. public key B<eckey>. The parameter B<type> is ignored.
  71. ECDSA_do_verify() is similar to ECDSA_verify() except the signature is
  72. presented in the form of a pointer to an B<ECDSA_SIG> structure.
  73. The remaining functions utilise the internal B<kinv> and B<r> values used
  74. during signature computation. Most applications will never need to call these
  75. and some external ECDSA ENGINE implementations may not support them at all if
  76. either B<kinv> or B<r> is not B<NULL>.
  77. ECDSA_sign_setup() may be used to precompute parts of the signing operation.
  78. B<eckey> is the private EC key and B<ctx> is a pointer to B<BN_CTX> structure
  79. (or NULL). The precomputed values or returned in B<kinv> and B<rp> and can be
  80. used in a later call to ECDSA_sign_ex() or ECDSA_do_sign_ex().
  81. ECDSA_sign_ex() computes a digital signature of the B<dgstlen> bytes hash value
  82. B<dgst> using the private EC key B<eckey> and the optional pre-computed values
  83. B<kinv> and B<rp>. The DER encoded signature is stored in B<sig> and its
  84. length is returned in B<sig_len>. Note: B<sig> must point to ECDSA_size(eckey)
  85. bytes of memory. The parameter B<type> is ignored.
  86. ECDSA_do_sign_ex() is similar to ECDSA_sign_ex() except the signature is
  87. returned as a newly allocated B<ECDSA_SIG> structure (or NULL on error).
  88. =head1 RETURN VALUES
  89. ECDSA_SIG_set0() returns 1 on success or 0 on failure.
  90. ECDSA_size() returns the maximum length signature or 0 on error.
  91. ECDSA_sign(), ECDSA_sign_ex() and ECDSA_sign_setup() return 1 if successful
  92. or 0 on error.
  93. ECDSA_do_sign() and ECDSA_do_sign_ex() return a pointer to an allocated
  94. B<ECDSA_SIG> structure or NULL on error.
  95. ECDSA_verify() and ECDSA_do_verify() return 1 for a valid
  96. signature, 0 for an invalid signature and -1 on error.
  97. The error codes can be obtained by L<ERR_get_error(3)>.
  98. =head1 EXAMPLES
  99. Creating an ECDSA signature of a given SHA-256 hash value using the
  100. named curve prime256v1 (aka P-256).
  101. First step: create an EC_KEY object (note: this part is B<not> ECDSA
  102. specific)
  103. int ret;
  104. ECDSA_SIG *sig;
  105. EC_KEY *eckey;
  106. eckey = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
  107. if (eckey == NULL)
  108. /* error */
  109. if (EC_KEY_generate_key(eckey) == 0)
  110. /* error */
  111. Second step: compute the ECDSA signature of a SHA-256 hash value
  112. using ECDSA_do_sign():
  113. sig = ECDSA_do_sign(digest, 32, eckey);
  114. if (sig == NULL)
  115. /* error */
  116. or using ECDSA_sign():
  117. unsigned char *buffer, *pp;
  118. int buf_len;
  119. buf_len = ECDSA_size(eckey);
  120. buffer = OPENSSL_malloc(buf_len);
  121. pp = buffer;
  122. if (ECDSA_sign(0, dgst, dgstlen, pp, &buf_len, eckey) == 0)
  123. /* error */
  124. Third step: verify the created ECDSA signature using ECDSA_do_verify():
  125. ret = ECDSA_do_verify(digest, 32, sig, eckey);
  126. or using ECDSA_verify():
  127. ret = ECDSA_verify(0, digest, 32, buffer, buf_len, eckey);
  128. and finally evaluate the return value:
  129. if (ret == 1)
  130. /* signature ok */
  131. else if (ret == 0)
  132. /* incorrect signature */
  133. else
  134. /* error */
  135. =head1 CONFORMING TO
  136. ANSI X9.62, US Federal Information Processing Standard FIPS 186-2
  137. (Digital Signature Standard, DSS)
  138. =head1 SEE ALSO
  139. L<DSA_new(3)>,
  140. L<EVP_DigestSignInit(3)>,
  141. L<EVP_DigestVerifyInit(3)>
  142. =head1 COPYRIGHT
  143. Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
  144. Licensed under the OpenSSL license (the "License"). You may not use
  145. this file except in compliance with the License. You can obtain a copy
  146. in the file LICENSE in the source distribution or at
  147. L<https://www.openssl.org/source/license.html>.
  148. =cut