Searched defs:ks (Results 1 - 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/javax/net/ssl/
H A DKeyManagerFactorySpi.java46 * @param ks the key store or null
54 protected abstract void engineInit(KeyStore ks, char[] password) throws argument
H A DTrustManagerFactorySpi.java47 * @param ks the key store or null
51 protected abstract void engineInit(KeyStore ks) throws KeyStoreException; argument
H A DKeyManagerFactory.java261 * @param ks the key store or null
269 public final void init(KeyStore ks, char[] password) throws argument
272 factorySpi.engineInit(ks, password);
H A DTrustManagerFactory.java262 * @param ks the key store, or null
265 public final void init(KeyStore ks) throws KeyStoreException { argument
266 factorySpi.engineInit(ks);
/libcore/ojluni/src/main/java/java/security/spec/
H A DECFieldF2m.java43 private int[] ks; field in class:ECFieldF2m
58 this.ks = null;
97 // convert rp into ks
99 this.ks = new int[bitCount-2];
100 for (int i = this.ks.length-1; i >= 0; i--) {
102 this.ks[i] = index;
111 * field is based on {@code ks} whose content
120 * > {@code k1} >= 1), so {@code ks} should
123 * @param ks the order of the middle term(s) of the
126 * @exception NullPointerException if {@code ks} i
133 ECFieldF2m(int m, int[] ks) argument
[all...]
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyTrustManagerFactorySpi.java35 protected void engineInit(KeyStore ks) throws KeyStoreException { argument
36 if (ks == null) {
64 public Parameters (KeyStore ks) { argument
65 this.keyStore = ks;
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DKeyManagerFactorySpiImpl.java16 public void engineInit(KeyStore ks, char[] password) argument
20 if (ks == null && password == null) {
24 if (ks == null) {
H A DMyTrustManagerFactorySpi.java35 protected void engineInit(KeyStore ks) throws KeyStoreException { argument
36 if (ks == null) {
64 public Parameters (KeyStore ks) { argument
65 this.keyStore = ks;
H A DMyKeyManagerFactorySpi.java38 protected void engineInit(KeyStore ks, char[] password) argument
44 if (ks == null) {
72 public Parameters (KeyStore ks, char[] pass) { argument
73 this.keyStore = ks;
H A DTrustManagerFactorySpiImpl.java14 private static KeyStore ks = null; field in class:TrustManagerFactorySpiImpl
17 public void engineInit(KeyStore ks) throws KeyStoreException { argument
19 this.ks = ks;
46 return ks;
/libcore/luni/src/test/java/tests/security/spec/
H A DECFieldF2mTest.java70 * The <code>ks</code> parameter for <code>ECFieldF2m</code>
73 final int[] ks; field in class:ECFieldF2mTest.ECFieldF2mDomainParams
87 * @param ks
92 final int[] ks,
96 this.ks = ks;
154 * Set of parameters used for <code>ECFieldF2m(int, int[] ks)</code>
159 // set 0: valid m and ks - trinomial basis params
165 // set 1: valid m and ks - pentanomial basis params
171 // set 2: valid m, invalid (null) pr, invalid (null) ks
90 ECFieldF2mDomainParams(final int m, final BigInteger rp, final int[] ks, final Exception expectedException) argument
[all...]

Completed in 138 milliseconds