Class SVNPasswordCipher

java.lang.Object
org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher
Direct Known Subclasses:
SVNPasswordCipher.CompositePasswordCipher, SVNWinCryptPasswordCipher

public abstract class SVNPasswordCipher extends Object
Version:
1.0
  • Field Details

  • Constructor Details

    • SVNPasswordCipher

      protected SVNPasswordCipher()
  • Method Details

    • getInstance

      public static SVNPasswordCipher getInstance(String type)
    • hasCipher

      public static boolean hasCipher(String type)
    • setDefaultCipherType

      public static void setDefaultCipherType(String type)
    • getDefaultCipherType

      public static String getDefaultCipherType()
    • registerCipher

      public static void registerCipher(String type, SVNPasswordCipher cipher)
    • encrypt

      public abstract char[] encrypt(char[] rawData)
    • decrypt

      public abstract char[] decrypt(char[] encyrptedData)
    • getCipherType

      public abstract String getCipherType()