Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


KerberosKeyjavax.security.auth.kerberos

Java 1.4serializable

This class is a
javax.crypto.SecretKey implementation
that represents the secret key of a Kerberos principal. A
Kerberos-based javax.security.auth.spi.LoginModule
implementation instantiates a KerberosKey object
and stores it in the private
credential
set of the authenticated Subject it creates.


Figure 19-15. javax.security.auth.kerberos.KerberosKey

public class

KerberosKey implements javax.security.auth.Destroyable,
javax.crypto.SecretKey {
// Public Constructors
public

KerberosKey (KerberosPrincipal

principal , char[ ]

password ,
String

algorithm );
public

KerberosKey (KerberosPrincipal

principal , byte[ ]

keyBytes , int

keyType ,
int

versionNum );
// Public Instance Methods
public final int

getKeyType ( );
public final KerberosPrincipal

getPrincipal ( );
public final int

getVersionNumber ( );
// Methods Implementing Destroyable
public void

destroy ( ) throws javax.security.auth.DestroyFailedException;
public boolean

isDestroyed ( );
// Methods Implementing Key
public final String

getAlgorithm ( );
public final byte[ ]

getEncoded ( );
public final String

getFormat ( );
// Public Methods Overriding Object
public String

toString ( );
}



    / 1191