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

com.ibm.cloud.objectstorage.services.s3.model.KMSEncryptionMaterials Maven / Gradle / Ivy

Go to download

A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.

There is a newer version: 2.13.4
Show newest version
/*
 * Copyright 2010-20174 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file 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 com.ibm.cloud.objectstorage.services.s3.model;
import java.io.Serializable;

import java.security.KeyPair;

import javax.crypto.SecretKey;

/**
 * KMS specific encryption materials.
 * 

* The KEK has no relevance on the client-side, as KMS only requires the CMK * id to be used to uniquely identify the KEK on the server side. */ public class KMSEncryptionMaterials extends EncryptionMaterials implements Serializable { /** * Name of the material description to be persisted in S3 for the KMS's * customer master key id. */ public static final String CUSTOMER_MASTER_KEY_ID = "kms_cmk_id"; /** * @param defaultCustomerMasterKeyId * KMS's customer master key id; must not be null */ public KMSEncryptionMaterials(String defaultCustomerMasterKeyId) { super(null, null); if (defaultCustomerMasterKeyId == null || defaultCustomerMasterKeyId.length() == 0) throw new IllegalArgumentException( "The default customer master key id must be specified"); addDescription(CUSTOMER_MASTER_KEY_ID, defaultCustomerMasterKeyId); } /** * Always throws UnsupportedOperationException. */ @Override public final KeyPair getKeyPair() { throw new UnsupportedOperationException(); } /** * Always throws UnsupportedOperationException. */ @Override public final SecretKey getSymmetricKey() { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * * Always returns true. * * @return true */ @Override public final boolean isKMSEnabled() { return true; } /** * Returns the default KMS's Customer Master Key ID; or null if there * isn't one. */ @Override public String getCustomerMasterKeyId() { return getDescription(CUSTOMER_MASTER_KEY_ID); } @Override public String toString() { return String.valueOf(getMaterialsDescription()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy