index.rst (1407B)
1 .. _mozilla_projects_nss_reference_fc_decryptfinal: 2 3 FC_DecryptFinal 4 =============== 5 6 `Name <#name>`__ 7 ~~~~~~~~~~~~~~~~ 8 9 .. container:: 10 11 FC_DecryptFinal - finish a multi-part decryption operation. 12 13 `Syntax <#syntax>`__ 14 ~~~~~~~~~~~~~~~~~~~~ 15 16 .. container:: 17 18 .. code:: 19 20 CK_RV FC_DecryptFinal( 21 CK_SESSION_HANDLE hSession, 22 CK_BYTE_PTR pLastPart, 23 CK_ULONG_PTR pusLastPartLen 24 ); 25 26 `Parameters <#parameters>`__ 27 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 28 29 .. container:: 30 31 ``hSession`` 32 [in] session handle. 33 ``pLastPart`` 34 [out] pointer to the location where the last block of recovered data, if any, is to be stored. 35 ``pusLastPartLen`` 36 [in,out] pointer to location where the number of bytes of recovered data is to be stored. 37 38 `Description <#description>`__ 39 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 40 41 .. container:: 42 43 ``FC_DecryptFinal`` returns the last block of data of a multi-part decryption operation. 44 45 A user must log into the token (to assume the NSS User role) before calling ``FC_DecryptFinal``. 46 47 .. _return_value: 48 49 `Return value <#return_value>`__ 50 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 51 52 .. container:: 53 54 `Examples <#examples>`__ 55 ~~~~~~~~~~~~~~~~~~~~~~~~ 56 57 .. container:: 58 59 .. _see_also: 60 61 `See also <#see_also>`__ 62 ~~~~~~~~~~~~~~~~~~~~~~~~ 63 64 .. container:: 65 66 - :ref:`mozilla_projects_nss_reference_fc_decryptinit`, 67 `NSC_DecryptFinal </en-US/NSC_DecryptFinal>`__