Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.io.InputStream;
import java.security.KeyStore;

public class Main {
    private static KeyStore newEmptyKeyStore(char[] password) {
        try {
            KeyStore e = KeyStore.getInstance(KeyStore.getDefaultType());
            Object in = null;
            e.load((InputStream) in, password);
            return e;
        } catch (Exception var3) {
            var3.printStackTrace();
        }
        return null;
    }
}