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

javacard.security.KoreanSEEDKey Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 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;

/**
 * 
 * KoreanSEEDKey contains an 16-byte key for Korean Seed Algorithm
 * operations.
 * 

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

* * @since 2.2.2 * @see KeyBuilder * @see Signature * @see javacardx.crypto.Cipher * @see javacardx.crypto.KeyEncryption * */ public interface KoreanSEEDKey extends SecretKey { /** * Sets the Key data. The plain text length of input key data is * 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 ArrayIndexOutOfBoundsException if kOff is negative or the keyData array is too short * @throws NullPointerException if the keyData parameter is null */ 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 bytes for Korean Seed Algorithm. * 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. *
* @see Key */ byte getKey(byte[] keyData, short kOff); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy