/*
* Copyright (c) 2011 - 2013 United ID.
* Copyright (c) 2011 Yubico AB.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.unitedid.yhsm.internal;
import org.unitedid.yhsm.utility.Utils;
import static org.unitedid.yhsm.internal.Defines.*;
import static org.unitedid.yhsm.utility.Utils.hexToByteArray;
import static org.unitedid.yhsm.utility.Utils.validateByteArray;
public class HsmUnlockCmd {
/** Constructor */
private HsmUnlockCmd() {}
/**
* Have the YubiHSM unlock the HSM operations (those involving the keystore) with a YubiKey OTP.
*
* @param device the YubiHSM device
* @param publicId the YubiKey public id
* @param otp the YubiKey OTP (in hex)
* @return true if unlock was successful
* @throws YubiHSMErrorException error exceptions
* @throws YubiHSMInputException argument exceptions
* @throws YubiHSMCommandFailedException command failed exception
*/
public static boolean unlockOtp(DeviceHandler device, String publicId, String otp) throws YubiHSMErrorException, YubiHSMInputException, YubiHSMCommandFailedException {
byte[] idBA = validateByteArray("publicId", hexToByteArray(publicId), 0, YSM_AEAD_NONCE_SIZE, YSM_AEAD_NONCE_SIZE);
byte[] otpBA = validateByteArray("otp", hexToByteArray(otp), 0, YSM_OTP_SIZE, YSM_OTP_SIZE);
byte[] payload = Utils.concatAllArrays(idBA, otpBA);
return parseResult(CommandHandler.execute(device, YSM_HSM_UNLOCK, payload, true));
}
/**
* Parse the response from the YubiHSM for a previous command.
*
* @param result the result from the last command
* @return boolean indicating success
* @throws YubiHSMCommandFailedException command failed exception
*/
private static boolean parseResult(byte[] result) throws YubiHSMCommandFailedException {
if (result[0] == YSM_STATUS_OK) {
return true;
} else if (result[0] == YSM_OTP_INVALID) {
return false;
} else {
throw new YubiHSMCommandFailedException("Command " + getCommandString(YSM_HSM_UNLOCK) + " failed: " + getCommandStatus(result[0]));
}
}
}