tor-browser

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

index.rst (1242B)


      1 .. _mozilla_projects_nss_reference_fc_verifyinit:
      2 
      3 FC_VerifyInit
      4 =============
      5 
      6 `Name <#name>`__
      7 ~~~~~~~~~~~~~~~~
      8 
      9 .. container::
     10 
     11   FC_VerifyInit - initialize a verification operation.
     12 
     13 `Syntax <#syntax>`__
     14 ~~~~~~~~~~~~~~~~~~~~
     15 
     16 .. container::
     17 
     18   .. code::
     19 
     20      CK_RV FC_VerifyInit(
     21        CK_SESSION_HANDLE hSession,
     22        CK_MECHANISM_PTR pMechanism,
     23        CK_OBJECT_HANDLE hKey
     24      );
     25 
     26 `Parameters <#parameters>`__
     27 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     28 
     29 .. container::
     30 
     31   ``hSession``
     32      [in] session handle.
     33   ``pMechanism``
     34      [in] mechanism to be used for the verification operation.
     35   ``hKey``
     36      [in] handle of the key to be used.
     37 
     38 `Description <#description>`__
     39 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     40 
     41 .. container::
     42 
     43   ``FC_VerifyInit`` initializes a verification operation where the signature is an appendix to the
     44   data.
     45 
     46   A user must log into the token (to assume the NSS User role) before calling ``FC_VerifyInit``.
     47 
     48 .. _return_value:
     49 
     50 `Return value <#return_value>`__
     51 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     52 
     53 .. container::
     54 
     55 `Examples <#examples>`__
     56 ~~~~~~~~~~~~~~~~~~~~~~~~
     57 
     58 .. container::
     59 
     60 .. _see_also:
     61 
     62 `See also <#see_also>`__
     63 ~~~~~~~~~~~~~~~~~~~~~~~~
     64 
     65 .. container::
     66 
     67   -  `NSC_VerifyInit </en-US/NSC_VerifyInit>`__