Home
last modified time | relevance | path

Searched refs:cipherSpi (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/javax/crypto/
DCipher.java176 protected Cipher(CipherSpi cipherSpi, Provider provider, String transformation) { in Cipher() argument
177 if (cipherSpi == null) { in Cipher()
180 if (!(cipherSpi instanceof NullCipherSpi) && provider == null) { in Cipher()
184 this.specifiedSpi = cipherSpi; in Cipher()