~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to doc/crypto/EVP_SignInit.pod

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
signature context B<ctx>. This function can be called several times on the
30
30
same B<ctx> to include additional data.
31
31
 
32
 
EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey>
33
 
and places the signature in B<sig>. If the B<s> parameter is not NULL
34
 
then the number of bytes of data written (i.e. the length of the signature)
35
 
will be written to the integer at B<s>, at most EVP_PKEY_size(pkey) bytes
36
 
will be written. 
 
32
EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey> and
 
33
places the signature in B<sig>. The number of bytes of data written (i.e. the
 
34
length of the signature) will be written to the integer at B<s>, at most
 
35
EVP_PKEY_size(pkey) bytes will be written. 
37
36
 
38
37
EVP_SignInit() initializes a signing context B<ctx> to use the default
39
38
implementation of digest B<type>.