<?xml version="1.0" encoding="UTF-8"?> <!-- TOTP (OATH Time based OTP) example from section 4 of draft-hoyer-keyprov-pskc-algorithm-profiles-01. --> <KeyContainer Version="1.0" xmlns="urn:ietf:params:xml:ns:keyprov:pskc:1.0"> <Device> <DeviceInfo> <Manufacturer>TokenVendorAcme</Manufacturer> <SerialNo>987654323</SerialNo> </DeviceInfo> <Key KeyAlgorithm="urn:ietf:params:xml:ns:keyprov:pskc#totp" KeyId="987654323"> <Issuer>Issuer</Issuer> <Usage OTP="true"> <ResponseFormat Length="6" Format="DECIMAL"/> </Usage> <Data> <Secret> <PlainValue> MTIzNDU2Nzg5MDEyMzQ1Njc4OTA= </PlainValue> </Secret> <Time> <PlainValue>0</PlainValue> </Time> <TimeInterval> <PlainValue>30</PlainValue> </TimeInterval> <TimeDrift> <PlainValue>4</PlainValue> </TimeDrift> </Data> </Key> </Device> </KeyContainer>