Packages

object Decryptor extends EncryptionUtils with Logging

Provides the apply methods that allow to more easily create a Decryptor object by directly specifying the transformation and key, or a keystore holding the key parameters.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Decryptor
  2. Logging
  3. EncryptionUtils
  4. EncryptionErrorHandling
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(transformation: String, key: InputStream, keyStorePassword: String, keyAlias: String, keyPassword: String): Option[Decryptor]
  5. def apply(transformation: String, key: String): Option[Decryptor]
  6. def apply(transformation: String, key: Array[Byte]): Option[Decryptor]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. def getKey(keystore: KeyStore, alias: String, password: String): Option[Key]
    Definition Classes
    EncryptionUtils
  14. def handle[T](f: ⇒ T, g: ⇒ Unit): Option[T]
    Attributes
    protected
    Definition Classes
    EncryptionErrorHandling
  15. def handle[T](f: ⇒ T, onException: (Throwable) ⇒ Unit): Option[T]
    Attributes
    protected
    Definition Classes
    EncryptionErrorHandling
  16. def handle[T](f: ⇒ T): Option[T]
    Attributes
    protected
    Definition Classes
    EncryptionErrorHandling
  17. def handler[T](onException: (Throwable) ⇒ Unit): PartialFunction[Throwable, Option[T]]
    Attributes
    protected
    Definition Classes
    EncryptionErrorHandling
  18. def handler[T]: PartialFunction[Throwable, Option[T]]
    Attributes
    protected
    Definition Classes
    EncryptionErrorHandling
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def keyBytesFromPassword(password: String): Array[Byte]
    Definition Classes
    EncryptionUtils
  22. def loadKeyStore(key: InputStream, password: String): Option[KeyStore]
    Definition Classes
    EncryptionUtils
  23. lazy val log: Logger

    The Logger object.

    The Logger object. This logger will have the same name as the concrete class into which this trait is mixed-in.

    Definition Classes
    Logging
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. def pad(b64: String): String
    Definition Classes
    EncryptionUtils
  28. def paddedUrlSafebase64(bytes: Array[Byte], pad: Boolean = true): String
    Definition Classes
    EncryptionUtils
  29. val provider: BouncyCastleProvider
    Definition Classes
    EncryptionUtils
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Logging

Inherited from EncryptionUtils

Inherited from EncryptionErrorHandling

Inherited from AnyRef

Inherited from Any

Ungrouped