diff options
Diffstat (limited to 'security/nss/lib/ckfw/ckmd.h')
-rw-r--r-- | security/nss/lib/ckfw/ckmd.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/security/nss/lib/ckfw/ckmd.h b/security/nss/lib/ckfw/ckmd.h new file mode 100644 index 000000000..820cf9021 --- /dev/null +++ b/security/nss/lib/ckfw/ckmd.h @@ -0,0 +1,28 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef CKMD_H +#define CKMD_H + +/* + * ckmd.h + * + */ + +NSS_EXTERN NSSCKMDObject * +nssCKMDSessionObject_Create( + NSSCKFWToken *fwToken, + NSSArena *arena, + CK_ATTRIBUTE_PTR attributes, + CK_ULONG ulCount, + CK_RV *pError); + +NSS_EXTERN NSSCKMDFindObjects * +nssCKMDFindSessionObjects_Create( + NSSCKFWToken *fwToken, + CK_ATTRIBUTE_PTR pTemplate, + CK_ULONG ulCount, + CK_RV *pError); + +#endif /* CKMD_H */ |