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);

...

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


REST


REST parameterdata typedescription
spAccountLoginNamestringSurePassID account login name
spAccountLoginKeystringSurePassID 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

...