Package org.mule.munit

Source Code of org.mule.munit.StreamKeyPairProvider

/*
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.munit;

import org.apache.sshd.common.keyprovider.AbstractKeyPairProvider;
import org.apache.sshd.common.util.SecurityUtils;
import org.bouncycastle.openssl.PEMReader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.InputStreamReader;
import java.security.KeyPair;
import java.util.ArrayList;
import java.util.List;

/**
* <p>Reads the resource from the jar</p>
*
* @author Mulesoft Inc.
*/
public class StreamKeyPairProvider extends AbstractKeyPairProvider
{

    private static final Logger LOG = LoggerFactory.getLogger(StreamKeyPairProvider.class);


    @Override
    protected KeyPair[] loadKeys()
    {
        if (!SecurityUtils.isBouncyCastleRegistered())
        {
            throw new IllegalStateException("BouncyCastle must be registered as a JCE provider");
        }
        List<KeyPair> keys = new ArrayList<KeyPair>();
        try
        {
            PEMReader r = new PEMReader(new InputStreamReader(getClass().getResourceAsStream("/ftp-hostkey.pem")), null);
            try
            {
                Object o = r.readObject();
                if (o instanceof KeyPair)
                {
                    keys.add((KeyPair) o);
                }
            }
            finally
            {
                r.close();
            }
        }
        catch (Exception e)
        {
            LOG.info("Unable to read key ", e);
        }

        return keys.toArray(new KeyPair[keys.size()]);
    }
}
TOP

Related Classes of org.mule.munit.StreamKeyPairProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.