com.microsoft.azure.keyvault.cryptography.algorithms.AesKw192 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-keyvault-cryptography Show documentation
Show all versions of azure-keyvault-cryptography Show documentation
This package contains Microsoft Azure SDK for Key Vault Cryptography.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.azure.keyvault.cryptography.algorithms;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.Provider;
import java.util.Arrays;
import javax.crypto.NoSuchPaddingException;
import com.microsoft.azure.keyvault.cryptography.ICryptoTransform;
public final class AesKw192 extends AesKw {
public static final String ALGORITHM_NAME = "A192KW";
static final int KEY_SIZE_IN_BYTES = 192 >> 3;
public AesKw192() {
super(ALGORITHM_NAME);
}
@Override
public ICryptoTransform CreateEncryptor(byte[] key, byte[] iv, Provider provider) throws InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidAlgorithmParameterException {
if (key == null) {
throw new IllegalArgumentException("key must not be null");
}
if (key.length < KEY_SIZE_IN_BYTES) {
throw new IllegalArgumentException("key must be at least 192 bits long");
}
return super.CreateEncryptor(Arrays.copyOfRange(key, 0, KEY_SIZE_IN_BYTES), iv, provider);
}
@Override
public ICryptoTransform CreateDecryptor(byte[] key, byte[] iv, Provider provider) throws InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidAlgorithmParameterException {
if (key == null) {
throw new IllegalArgumentException("key must not be null");
}
if (key.length < KEY_SIZE_IN_BYTES) {
throw new IllegalArgumentException("key must be at least 192 bits long");
}
return super.CreateDecryptor(Arrays.copyOfRange(key, 0, KEY_SIZE_IN_BYTES), iv, provider);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy