AES

class AES(val keyWords: IntArray) : Cipher

Based on CryptoJS v3.1.2 code.google.com/p/crypto-js (c) 2009-2013 by Jeff Mott. All rights reserved. code.google.com/p/crypto-js/wiki/License

Constructors

Link copied to clipboard
constructor(key: ByteArray)
constructor(keyWords: IntArray)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val blockSize: Int
Link copied to clipboard

Functions

Link copied to clipboard
open override fun decrypt(data: ByteArray, offset: Int, len: Int)
Link copied to clipboard
fun decryptBlock(M: ByteArray, offset: Int)
Link copied to clipboard
open override fun encrypt(data: ByteArray, offset: Int, len: Int)
Link copied to clipboard
fun encryptBlock(M: ByteArray, offset: Int)
Link copied to clipboard
operator fun Cipher.get(mode: CipherMode, padding: CipherPadding, iv: ByteArray? = null): CipherWithModeAndPadding
Link copied to clipboard