alias = System.getProperty("xyz.aliasName"); if (alias == null) throw new IllegalArgumentException("Must specify alias property");
SSLKeyManager[] km = new SSLKeyManager[1]; km[0] = new SSLKeyManager(ks, alias, pw); return km;
this.ks = ks; this.pw = new char[pw.length]; System.arraycopy(pw, 0, this.pw, 0, pw.length);