/* * EncFS Java Library * Copyright (C) 2013 encfs-java authors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. */ package org.mrpdaemon.sec.encfs; import java.security.InvalidAlgorithmParameterException; import javax.crypto.BadPaddingException; import javax.crypto.IllegalBlockSizeException; /** * Class implementing stream filename decryption strategy. */ public class StreamFilenameDecryptionStrategy extends BasicFilenameDecryptionStrategy { public StreamFilenameDecryptionStrategy(EncFSVolume volume, String volumePath) { super(volume, volumePath, EncFSFilenameEncryptionAlgorithm.STREAM); } // Stream decryption protected byte[] decryptConcrete(EncFSVolume volume, byte[] encFileName, byte[] fileIv) throws EncFSCorruptDataException { try { return StreamCrypto.streamDecrypt(volume, fileIv, encFileName); } catch (InvalidAlgorithmParameterException|IllegalBlockSizeException|BadPaddingException|EncFSUnsupportedException e) { throw new EncFSCorruptDataException(e); } } public String decryptPost(byte[] fileName) { return new String(fileName); } }