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

21 lines
450 B
Ruby
Raw Normal View History

2014-12-12 00:18:37 +00:00
# -*- coding: binary -*-
2014-12-22 17:57:35 +00:00
require 'rex/proto/kerberos/crypto/rc4_hmac'
require 'rex/proto/kerberos/crypto/rsa_md5'
2014-12-12 00:18:37 +00:00
module Rex
module Proto
module Kerberos
module Crypto
2014-12-22 17:57:35 +00:00
include Rex::Proto::Kerberos::Crypto::Rc4Hmac
include Rex::Proto::Kerberos::Crypto::RsaMd5
RSA_MD5 = 7
RC4_HMAC = 23
2014-12-22 21:27:16 +00:00
ENC_KDC_REQUEST_BODY = 10
ENC_AS_RESPONSE = 8
ENC_TGS_RESPONSE = 9
2014-12-12 00:18:37 +00:00
end
end
end
2014-12-22 17:57:35 +00:00
end