All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javacard.security.AESKey Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
/*
 * Copyright 2011 Licel LLC.
 *
 * 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 javacard.security;

/**
 * AESKey contains a 16/24/32 byte key for AES computations based
 * on the Rijndael algorithm.
 * 

When the key data is set, the key is initialized and ready for use. *

* @see KeyBuilder * @see Signature * @see Cipher * @see KeyEncryption */ public interface AESKey extends SecretKey { /** * Sets the Key data. The plaintext length of input key data is 16/24/32 bytes. * The data format is big-endian and right-aligned (the least significant bit is the least significant * bit of last byte). Input key data is copied into the internal representation. *

Note: *

    *
  • If the key object implements the javacardx.crypto.KeyEncryption * interface and the Cipher object specified via setKeyCipher() * is not null, keyData is decrypted using the Cipher object. *
* @param keyData byte array containing key initialization data * @param kOff offset within keyData to start * @throws CryptoException with the following reason code: *
    *
  • CryptoException.ILLEGAL_VALUE if input data decryption is required and fails. *
* @throws NullPointerException if the keyData parameter is * null. * @throws ArrayIndexOutOfBoundsException if kOff is negative * or the keyData array is too short. */ public abstract void setKey(byte[] keyData, short kOff) throws CryptoException, NullPointerException, ArrayIndexOutOfBoundsException; /** * Returns the Key data in plain text. The length of output key data is 16/24/32 bytes. * The data format is big-endian and right-aligned (the least significant bit is the least significant * bit of last byte). * * @param keyData byte array to return key data * @param kOff offset within keyData to start * @return the byte length of the key data returned * @throws CryptoException with the following reason code: *
    *
  • CryptoException.UNINITIALIZED_KEY if the key data has not been * successfully initialized since the * time the initialized state of the key was set to false. *
*/ public abstract byte getKey(byte[] keyData, short kOff) throws CryptoException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy