metasploit-framework/lib/rex/proto/kerberos/crypto.rb

21 lines
450 B
Ruby

# -*- coding: binary -*-
require 'rex/proto/kerberos/crypto/rc4_hmac'
require 'rex/proto/kerberos/crypto/rsa_md5'
module Rex
module Proto
module Kerberos
module Crypto
include Rex::Proto::Kerberos::Crypto::Rc4Hmac
include Rex::Proto::Kerberos::Crypto::RsaMd5
RSA_MD5 = 7
RC4_HMAC = 23
ENC_KDC_REQUEST_BODY = 10
ENC_AS_RESPONSE = 8
ENC_TGS_RESPONSE = 9
end
end
end
end