1# -*- coding: binary -*- 2 3require 'rex/text' 4 5module Rex 6 module Proto 7 module Kerberos 8 module Crypto 9 # Implementation of hmac-sha1-96-aes256 encryption type, per RFC 3962 10 class Aes256CtsSha1 < AesBlockCipherBase 11 SEED_SIZE = 32 12 ENCRYPT_CIPHER_NAME = 'aes-256-cbc' 13 DECRYPT_CIPHER_NAME = 'aes-256-ecb' 14 end 15 end 16 end 17 end 18end 19 20