krb5.util.replaycache
Interface ReplayCacheInterface

All Known Implementing Classes:
ReplayCacheImpl

public interface ReplayCacheInterface

Class Description : Interface class that defines methods of the ReplayCache. A modified version of the code obtained from the Open Group Research Institute.

Version:
1.1
Author:
Bojan Pajkovski

Method Summary
 boolean found(PrincipalName name, Realm realm, KerberosTime pATimeStamp, java.lang.Integer pAUSec)
          Check whether a request is replayed
 void save(PrincipalName name, Realm realm, KerberosTime pATimeStamp, java.lang.Integer pAUSec)
          Save the request information in the replay cache
 

Method Detail

found

boolean found(PrincipalName name,
              Realm realm,
              KerberosTime pATimeStamp,
              java.lang.Integer pAUSec)
Check whether a request is replayed

Parameters:
name - Name of the last request sender
realm - Realm of the last request sender
pATimeStamp - The last request authentication time (ms)
pAUSec - The value of the authentication time (ms)
Returns:
boolean

save

void save(PrincipalName name,
          Realm realm,
          KerberosTime pATimeStamp,
          java.lang.Integer pAUSec)
Save the request information in the replay cache

Parameters:
name - Name of the last request sender
realm - Realm of the last request sender
pATimeStamp - The last request authentication time (ms)
pAUSec - The value of the authentication time (ms)