Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

WCF


Code Block
languagec#
title Method
 AuthServerU2FResponseEnrollAppU2F EnrollAppU2F(string authServerPartnerLoginName,
                                                              string authServerPartnerLoginPassword,
                                                              string authServerPartnerUserLoginName,
                                                              string printedSerialNumber,
                                                              string securityKeyName, 
                                                              string b64RegistrationData,
                                                              string b64SessionId,
                                                              string b64ClientData,
                                                              string version);

...

WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId SurePassID account login name
authServerPartnerLoginPasswordstringSurePassId SurePassID account login key
authServerPartnerUserLoginNamestringUser account login name
securityKeyNamestringA user assigned name for this security key
b64RegistrationDatastringBase 64 encoded registration data as per the Fido specification
b64SessionIdstringUnique SessionId for this Fido Request as per the Fido specification
b64ClientDatastringBase 64 encoded client data as per the Fido specification
versionstringU2F_V2

...

Code Block
languagec#
titleSample WCF C# Repsonse
 if (resp.ErrorCode != 0)  {      
       message.Text = resp.ErrorMsg;
       return false;
 }


REST


REST parameterdata typedescription
spAccountLoginNamestringSurePassId SurePassID account login name
spAccountLoginKeystringSurePassId SurePassID account login key
usernamestringuser account login name
typestringenroll
securityKeyNamestringA user assigned name for this security key
registrationDatastringBase 64 encoded registration data as per the Fido specification
sessionIdstringUnique SessionId for this Fido Request as per the Fido specification
clientDatastringBase 64 encoded client data as per the Fido specification
versionstringU2F_V2

...