cn.teleinfo.idpointer.sdk.core.ChallengeAnswerIdisRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of id-pointer-sdk Show documentation
Show all versions of id-pointer-sdk Show documentation
基于Java语言开发的工业互联网标识解析体系客户端软件开发工具包,应用通过集成 id-pointer-sdk,快速对接标识解析、标识注册、标识维护等功能服务。
The newest version!
/**********************************************************************\
© COPYRIGHT 2019 Corporation for National Research Initiatives (CNRI);
All rights reserved.
The HANDLE.NET software is made available subject to the
Handle.Net Public License Agreement, which may be obtained at
http://hdl.handle.net/20.1000/112 or hdl:20.1000/112
\**********************************************************************/
package cn.teleinfo.idpointer.sdk.core;
/***********************************************************************
* Object used to represent an answer to a challenge to authenticate.
***********************************************************************/
public class ChallengeAnswerIdisRequest extends AbstractRequest {
public byte authType[];
public byte userIdHandle[];
public int userIdIndex;
public byte signedResponse[];
public AbstractRequest originalRequest; // only used by client
public ChallengeAnswerIdisRequest(byte authType[], byte userIdHandle[], int userIdIndex, byte signedResponse[], AuthenticationInfo authInfo) {
super(Common.BLANK_HANDLE, AbstractMessage.OC_RESPONSE_TO_CHALLENGE, authInfo);
this.authType = authType;
this.userIdHandle = userIdHandle;
this.userIdIndex = userIdIndex;
this.signedResponse = signedResponse;
}
public ChallengeAnswerIdisRequest(AbstractRequest req, ChallengeResponse challenge, AuthenticationInfo authInfo) throws HandleException {
this(authInfo.getAuthType(), authInfo.getUserIdHandle(), authInfo.getUserIdIndex(), authInfo.authenticate(challenge, req), authInfo);
takeValuesFrom(req);
sessionId = challenge.sessionId;
sessionInfo = req.sessionInfo;
}
@Override
public String toString() {
return super.toString() + ' ' + Util.decodeString(authType) + ' ' + userIdIndex + ':' + Util.decodeString(userIdHandle);
}
}