ckmd.h 626 B

1234567891011121314151617181920212223242526272829
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef CKMD_H
  5. #define CKMD_H
  6. /*
  7. * ckmd.h
  8. *
  9. */
  10. NSS_EXTERN NSSCKMDObject *
  11. nssCKMDSessionObject_Create(
  12. NSSCKFWToken *fwToken,
  13. NSSArena *arena,
  14. CK_ATTRIBUTE_PTR attributes,
  15. CK_ULONG ulCount,
  16. CK_RV *pError);
  17. NSS_EXTERN NSSCKMDFindObjects *
  18. nssCKMDFindSessionObjects_Create(
  19. NSSCKFWToken *fwToken,
  20. CK_ATTRIBUTE_PTR pTemplate,
  21. CK_ULONG ulCount,
  22. CK_RV *pError);
  23. #endif /* CKMD_H */