
com.facebook.presto.orc.DwrfDataEncryptor Maven / Gradle / Ivy
/*
* 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 com.facebook.presto.orc;
import static java.util.Objects.requireNonNull;
public class DwrfDataEncryptor
{
private final byte[] keyMetadata;
private final EncryptionLibrary encryptionLibrary;
public DwrfDataEncryptor(byte[] keyMetadata, EncryptionLibrary encryptionLibrary)
{
this.keyMetadata = requireNonNull(keyMetadata, "keyMetadata is null");
this.encryptionLibrary = requireNonNull(encryptionLibrary, "encryptionLibrary is null");
}
public byte[] decrypt(byte[] input, int offset, int length)
{
return encryptionLibrary.decryptData(keyMetadata, input, offset, length);
}
public byte[] encrypt(byte[] input, int offset, int length)
{
return encryptionLibrary.encryptData(keyMetadata, input, offset, length);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy