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

org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIEncryptionInfoBuilder Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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 org.apache.poi.poifs.crypt.cryptoapi;

import java.io.IOException;

import org.apache.poi.poifs.crypt.*;
import org.apache.poi.util.LittleEndianInput;

public class CryptoAPIEncryptionInfoBuilder implements EncryptionInfoBuilder {
    EncryptionInfo info;
    CryptoAPIEncryptionHeader header;
    CryptoAPIEncryptionVerifier verifier;
    CryptoAPIDecryptor decryptor;
    CryptoAPIEncryptor encryptor;

    public CryptoAPIEncryptionInfoBuilder() {
    }

    /**
     * initialize the builder from a stream
     */
    public void initialize(EncryptionInfo info, LittleEndianInput dis)
    throws IOException {
        this.info = info;
        /* int hSize = */ dis.readInt();
        header = new CryptoAPIEncryptionHeader(dis);
        verifier = new CryptoAPIEncryptionVerifier(dis, header);
        decryptor = new CryptoAPIDecryptor(this);
        encryptor = new CryptoAPIEncryptor(this);
    }

    /**
     * initialize the builder from scratch
     */
    public void initialize(EncryptionInfo info,
            CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm,
            int keyBits, int blockSize, ChainingMode chainingMode) {
        this.info = info;
        if (cipherAlgorithm == null) cipherAlgorithm = CipherAlgorithm.rc4;
        if (hashAlgorithm == null) hashAlgorithm = HashAlgorithm.sha1;
        if (keyBits == -1) keyBits = 0x28; 
        assert(cipherAlgorithm == CipherAlgorithm.rc4 && hashAlgorithm == HashAlgorithm.sha1);
        
        header = new CryptoAPIEncryptionHeader(cipherAlgorithm, hashAlgorithm, keyBits, blockSize, chainingMode);
        verifier = new CryptoAPIEncryptionVerifier(cipherAlgorithm, hashAlgorithm, keyBits, blockSize, chainingMode);
        decryptor = new CryptoAPIDecryptor(this);
        encryptor = new CryptoAPIEncryptor(this);
    }

    public CryptoAPIEncryptionHeader getHeader() {
        return header;
    }

    public CryptoAPIEncryptionVerifier getVerifier() {
        return verifier;
    }

    public CryptoAPIDecryptor getDecryptor() {
        return decryptor;
    }

    public CryptoAPIEncryptor getEncryptor() {
        return encryptor;
    }

    public EncryptionInfo getEncryptionInfo() {
        return info;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy