You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

Examples

OTP Token Seed Data Format
<?xml version="1.0"?>
<data>
<header>
 	<manufacturerCode>DN</manufacturerCode>
	<productCode>ST</productCode>
	<encrypt>NONE</encrypt>
	<encode>HEX</encode>
	<digits>6</digits>
	<timeWindow>60</timeWindow>
	<crypto>HmacSHA1</crypto>   </header>
 <tokens>
   <token>
	 	<serial>71358472</serial>
		<seed>08E49538328BAE830E0DB14A82341100BC23B840</seed>
	 </token>
	 <token>
	 	<serial>71358473</serial>
	 	<seed>08E49538328BAE830E0DB14A82341100BC23B841</seed>
	 </token>
</tokens>
</data>

Google Authenticator Tokens
<?xml version="1.0"?>
<data>
  <header>
    <manufacturerCode>GG</manufacturerCode>
    <productCode>GT</productCode>
    <synchronisation>30</synchronisation>
    <encrypt>NONE</encrypt>
    <encode>BASE32</encode>
    <digits>6</digits>
    <syncsize>2</syncsize>
    <crypto>HmacSHA1</crypto>
  </header>
 <tokens>
    <token>
	  <serial>55968236546</serial>
      <seed>JRKXYWRVFMFDJ4UTTP3AJWCJQHT23FY5</seed>
    </token>
    <token>
	  <serial>55968236547</serial>
      <seed>MWFY5DJJRMVF6UTTP3AJWCJQHTXYWR88</seed>
    </token>
</tokens>
</data>

Remarks

ElementValues
encode
  • HEX
  • BASE64
encrypt
  • NONE
  • AES256
crypto
  • HmacSHA1
  • HmacSHA256
  • HmacSHA512
digits
  • 6
  • 8
timeWindow
  • 30
  • 60
  • No labels