tor-browser

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

index.rst (1213B)


      1 .. _mozilla_projects_nss_reference_fc_getobjectsize:
      2 
      3 FC_GetObjectSize
      4 ================
      5 
      6 `Name <#name>`__
      7 ~~~~~~~~~~~~~~~~
      8 
      9 .. container::
     10 
     11   FC_GetObjectSize - create a copy of an object.
     12 
     13 `Syntax <#syntax>`__
     14 ~~~~~~~~~~~~~~~~~~~~
     15 
     16 .. container::
     17 
     18   .. code::
     19 
     20      CK_RV FC_GetObjectSize(
     21        CK_SESSION_HANDLE hSession,
     22        CK_OBJECT_HANDLE hObject,
     23        CK_ULONG_PTR pusSize
     24      );
     25 
     26 `Parameters <#parameters>`__
     27 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     28 
     29 .. container::
     30 
     31   ``hSession``
     32      [in] session handle.
     33   ``hObject``
     34      [in] object handle.
     35   ``pusSize``
     36      [out] pointer to location to receive the object's size.
     37 
     38 `Description <#description>`__
     39 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     40 
     41 .. container::
     42 
     43   ``FC_GetObjectSize`` gets the size of an object in bytes.
     44 
     45   A user must log into the token (to assume the NSS User role) before getting the size of a secret
     46   or private key object.
     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_GetObjectSize </en-US/NSC_GetObjectSize>`__