tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

index.rst (1526B)


      1 .. _mozilla_projects_nss_reference_fc_verifyupdate:
      2 
      3 FC_VerifyUpdate
      4 ===============
      5 
      6 `Name <#name>`__
      7 ~~~~~~~~~~~~~~~~
      8 
      9 .. container::
     10 
     11   FC_VerifyUpdate - process the next block of a multi-part verify operation.
     12 
     13 `Syntax <#syntax>`__
     14 ~~~~~~~~~~~~~~~~~~~~
     15 
     16 .. container::
     17 
     18   .. code::
     19 
     20      CK_RV FC_VerifyUpdate(
     21        CK_SESSION_HANDLE hSession,
     22        CK_BYTE_PTR pPart,
     23        CK_ULONG usPartLen
     24      );
     25 
     26 `Parameters <#parameters>`__
     27 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     28 
     29 .. container::
     30 
     31   ``hSession``
     32      [in] session handle.
     33   ``pPart``
     34      [in] pointer to the next block of the data to be verified.
     35   ``usPartLen``
     36      [in] length of data block in bytes.
     37 
     38 `Description <#description>`__
     39 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     40 
     41 .. container::
     42 
     43   ``FC_VerifyUpdate`` starts or continues a multi-part signature verification operation where the
     44   signature is an appendix to the data. One or more blocks may be part of the signature. The result
     45   for the entire message is returned by a call to
     46   :ref:`mozilla_projects_nss_reference_fc_verifyfinal`.
     47 
     48   A user must log into the token (to assume the NSS User role) before calling ``FC_VerifyUpdate``.
     49 
     50 .. _return_value:
     51 
     52 `Return value <#return_value>`__
     53 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     54 
     55 .. container::
     56 
     57 `Examples <#examples>`__
     58 ~~~~~~~~~~~~~~~~~~~~~~~~
     59 
     60 .. container::
     61 
     62 .. _see_also:
     63 
     64 `See also <#see_also>`__
     65 ~~~~~~~~~~~~~~~~~~~~~~~~
     66 
     67 .. container::
     68 
     69   -  :ref:`mozilla_projects_nss_reference_fc_verifyfinal`,
     70      `NSC_VerifyUpdate </en-US/NSC_VerifyUpdate>`__