trait AADEncryptor[F[_], A, K[_]] extends AuthEncryptor[F, A, K]
- Source
- Encryptor.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AADEncryptor
- AuthEncryptor
- Encryptor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
decrypt(cipherText: CipherText[A], key: K[A]): F[PlainText]
- Definition Classes
- Encryptor
-
abstract
def
decryptDetached(cipherText: CipherText[A], key: K[A], authTag: AuthTag[A]): F[PlainText]
- Definition Classes
- AuthEncryptor
- abstract def decryptWithAAD(cipherText: CipherText[A], key: K[A], aad: AAD): F[PlainText]
- abstract def decryptWithAADDetached(cipherText: CipherText[A], key: K[A], aad: AAD, authTag: AuthTag[A]): F[PlainText]
-
abstract
def
encrypt(plainText: PlainText, key: K[A], iv: Iv[A]): F[CipherText[A]]
- Definition Classes
- Encryptor
-
abstract
def
encryptDetached(plainText: PlainText, key: K[A], iv: Iv[A]): F[(CipherText[A], AuthTag[A])]
- Definition Classes
- AuthEncryptor
- abstract def encryptWithAAD(plainText: PlainText, key: K[A], iv: Iv[A], aad: AAD): F[CipherText[A]]
- abstract def encryptWithAADDetached(plainText: PlainText, key: K[A], iv: Iv[A], aad: AAD): F[(CipherText[A], AuthTag[A])]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
encrypt(plainText: PlainText, key: K[A])(implicit ivStrategy: IvGen[F, A], F: Monad[F]): F[CipherText[A]]
- Definition Classes
- Encryptor
-
def
encryptDetached(plainText: PlainText, key: K[A])(implicit ivStrategy: IvGen[F, A], F: Monad[F]): F[(CipherText[A], AuthTag[A])]
- Definition Classes
- AuthEncryptor
- def encryptWithAAD(plainText: PlainText, key: K[A], aad: AAD)(implicit ivStrategy: IvGen[F, A], F: Monad[F]): F[CipherText[A]]
- def encryptWithAADDetached(plainText: PlainText, key: K[A], aad: AAD)(implicit ivStrategy: IvGen[F, A], F: Monad[F]): F[(CipherText[A], AuthTag[A])]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )