michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef NSSDEV_H michael@0: #define NSSDEV_H michael@0: michael@0: /* michael@0: * nssdev.h michael@0: * michael@0: * High-level methods for interaction with cryptoki devices michael@0: */ michael@0: michael@0: #ifndef NSSDEVT_H michael@0: #include "nssdevt.h" michael@0: #endif /* NSSDEVT_H */ michael@0: michael@0: PR_BEGIN_EXTERN_C michael@0: michael@0: /* NSSAlgorithmAndParameters michael@0: * michael@0: * NSSAlgorithmAndParameters_CreateSHA1Digest michael@0: * NSSAlgorithmAndParameters_CreateMD5Digest michael@0: */ michael@0: michael@0: NSS_EXTERN NSSAlgorithmAndParameters * michael@0: NSSAlgorithmAndParameters_CreateSHA1Digest michael@0: ( michael@0: NSSArena *arenaOpt michael@0: ); michael@0: michael@0: NSS_EXTERN NSSAlgorithmAndParameters * michael@0: NSSAlgorithmAndParameters_CreateMD5Digest michael@0: ( michael@0: NSSArena *arenaOpt michael@0: ); michael@0: michael@0: PR_END_EXTERN_C michael@0: michael@0: #endif /* DEV_H */