Uses of Class
com.ibm.atp.auth.ByteSequence

Packages that use ByteSequence
com.ibm.atp.auth   
 

Uses of ByteSequence in com.ibm.atp.auth
 

Subclasses of ByteSequence in com.ibm.atp.auth
 class Challenge
          The Challenge class is random byte sequence which is a challenge for authentication.
 class Response
          The Response class is byte sequence which is a response authentication.
 class SharedSecret
          The SharedSecret class is byte sequence for authentication.
 

Methods in com.ibm.atp.auth with parameters of type ByteSequence
abstract  boolean Auth.verify(int turn, Challenge challenge, ByteSequence response)
          Verify response value for authentication.
 boolean AuthBySignature.verify(int turn, Challenge challenge, ByteSequence signature)
          Verify signature
 boolean AuthByDigest.verify(int turn, Challenge challenge, ByteSequence response)
          Verify response value for authentication.
 void ByteSequence.append(ByteSequence seq)
          Append a given byte sequence object into the byte sequence.
 void ByteSequence.copy(ByteSequence seq)
          Copy a byte sequence object as a byte sequence using for authentication.
 boolean ByteSequence.equals(ByteSequence seq)
          Verifies the byte sequence equals to given byte sequence.
 

Constructors in com.ibm.atp.auth with parameters of type ByteSequence
ByteSequence(ByteSequence seq)
          Constructor creates byte sequence as a copy of given byte sequence.