Home | History | Annotate | Download | only in crypto

Lines Matching refs:spi

220     private volatile SecretKeyFactorySpi spi;
238 this.spi = keyFacSpi;
247 // fetch and instantiate initial spi
405 * Update the active spi of this class and return the next
407 * available, this method returns null. However, the active spi of
413 // try that spi now
414 if ((oldSpi != null) && (oldSpi != spi)) {
415 return spi;
430 SecretKeyFactorySpi spi = (SecretKeyFactorySpi)obj;
432 this.spi = spi;
433 return spi;
457 return spi.engineGenerateSecret(keySpec);
460 SecretKeyFactorySpi mySpi = spi;
501 return spi.engineGetKeySpec(key, keySpec);
504 SecretKeyFactorySpi mySpi = spi;
536 return spi.engineTranslateKey(key);
539 SecretKeyFactorySpi mySpi = spi;