Home | History | Annotate | Download | only in openssl
      1 package org.bouncycastle.openssl;
      2 
      3 /**
      4  * call back to allow a password to be fetched when one is requested.
      5  */
      6 public interface PasswordFinder
      7 {
      8     public char[] getPassword();
      9 }
     10