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

org.apache.activemq.console.command.DecryptCommand Maven / Gradle / Ivy

There is a newer version: 6.1.2
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.activemq.console.command;

import java.util.List;

import org.jasypt.exceptions.EncryptionOperationNotPossibleException;

public class DecryptCommand extends EncryptCommand {

    protected String[] helpFile = new String[] {
            "Task Usage: Main decrypt --password  --input ",
            "Description: Decrypts given text.",
            "", 
            "Encrypt Options:",
            "    --password       Password to be used by the encryptor.  Defaults to",
            "                               the value in the ACTIVEMQ_ENCRYPTION_PASSWORD env variable.",
            "    --input             Text to be encrypted.",
            "    --version                  Display the version information.",
            "    -h,-?,--help               Display the stop broker help information.",
            ""
        };    
    
    @Override
    public String getName() {
        return "decrypt";
    }

    @Override
    public String getOneLineDescription() {
        return "Decrypts given text";
    }

    @Override
    protected void runTask(List tokens) throws Exception {
        if( password == null ) {
            password = System.getenv("ACTIVEMQ_ENCRYPTION_PASSWORD");
        }
        if (password == null || input == null) {
            context.printException(new IllegalArgumentException("input and password parameters are mandatory"));
            return;
        }
        encryptor.setPassword(password);
        try {
            context.print("Decrypted text: " + encryptor.decrypt(input));
        } catch (EncryptionOperationNotPossibleException e) {
            context.print("ERROR: Text cannot be decrypted, check your input and password and try again!");
        }
    }

    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy