gluu
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse クラス
org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse 連携図
Collaboration graph

公開メンバ関数

 RawRegisterResponse (byte[] userPublicKey, byte[] keyHandle, X509Certificate attestationCertificate, byte[] signature)
 
byte [] getUserPublicKey ()
 
byte [] getKeyHandle ()
 
X509Certificate getAttestationCertificate ()
 
byte [] getSignature ()
 

非公開変数類

final byte [] userPublicKey
 
final byte [] keyHandle
 
final X509Certificate attestationCertificate
 
final byte [] signature
 

詳解

The register response produced by the token/key, which is transformed by the client into an RegisterResponse and sent to the server.

著者
Yuriy Movchan Date: 05/14/2015

構築子と解体子

◆ RawRegisterResponse()

org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.RawRegisterResponse ( byte []  userPublicKey,
byte []  keyHandle,
X509Certificate  attestationCertificate,
byte []  signature 
)
inline
36  {
38  this.keyHandle = keyHandle;
40  this.signature = signature;
41  }
final byte [] signature
Definition: RawRegisterResponse.java:34
final byte [] keyHandle
Definition: RawRegisterResponse.java:28
final byte [] userPublicKey
Definition: RawRegisterResponse.java:23
final X509Certificate attestationCertificate
Definition: RawRegisterResponse.java:29

関数詳解

◆ getAttestationCertificate()

X509Certificate org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.getAttestationCertificate ( )
inline
51  {
53  }
final X509Certificate attestationCertificate
Definition: RawRegisterResponse.java:29

◆ getKeyHandle()

byte [] org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.getKeyHandle ( )
inline
47  {
48  return keyHandle;
49  }
final byte [] keyHandle
Definition: RawRegisterResponse.java:28

◆ getSignature()

byte [] org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.getSignature ( )
inline
55  {
56  return signature;
57  }
final byte [] signature
Definition: RawRegisterResponse.java:34

◆ getUserPublicKey()

byte [] org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.getUserPublicKey ( )
inline
43  {
44  return userPublicKey;
45  }
final byte [] userPublicKey
Definition: RawRegisterResponse.java:23

メンバ詳解

◆ attestationCertificate

final X509Certificate org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.attestationCertificate
private

◆ keyHandle

final byte [] org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.keyHandle
private

A handle that allows the U2F token to identify the generated key pair.

◆ signature

final byte [] org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.signature
private

A ECDSA signature (on P-256)

◆ userPublicKey

final byte [] org.xdi.oxauth.model.fido.u2f.message.RawRegisterResponse.userPublicKey
private

The (uncompressed) x,y-representation of a curve point on the P-256 NIST elliptic curve.


このクラス詳解は次のファイルから抽出されました: