/* * Copyright (c) 2004 Apple Computer, Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * MscPIN.cpp * TokendMuscle */ #include "MscPIN.h" #include "MscError.h" void MscPIN::create(unsigned int pinNum,unsigned int pinAttempts,const char *PIN, size_t PINSize, const char *unblockPIN, size_t unblockPINSize) { MSC_RV rv = MSCCreatePIN(&Required(mConnection),pinNum,pinAttempts, reinterpret_cast(const_cast(PIN)),PINSize, reinterpret_cast(const_cast(unblockPIN)),unblockPINSize); if (rv!=MSC_SUCCESS) MscError::throwMe(rv); } void MscPIN::change(unsigned int pinNum,const char *oldPIN, size_t oldPINSize,const char *newPIN, size_t newPINSize) { MSC_RV rv = MSCChangePIN(&Required(mConnection),pinNum, reinterpret_cast(const_cast(oldPIN)),oldPINSize, reinterpret_cast(const_cast(newPIN)),newPINSize); if (rv!=MSC_SUCCESS) MscError::throwMe(rv); } void MscPIN::unblock(unsigned int pinNum,const char *unblockCode, size_t unblockCodeSize) { MSC_RV rv = MSCUnblockPIN(&Required(mConnection),pinNum, reinterpret_cast(const_cast(unblockCode)),unblockCodeSize); if (rv!=MSC_SUCCESS) MscError::throwMe(rv); } void MscPIN::list(MSCUShort16& mask) { MSC_RV rv = MSCListPINs(&Required(mConnection),&mask); if (rv!=MSC_SUCCESS) MscError::throwMe(rv); } /* arch-tag: 9536C3B8-BE68-11D8-A08D-000A95C4302E */