<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="https://forum.yubico.com/feed.php?f=22" />

<title>Yubico Forum</title>
<subtitle>...visit our web-store at</subtitle>
<link href="https://forum.yubico.com/index.php" />
<updated>2018-01-30T09:26:55+01:00</updated>

<author><name><![CDATA[Yubico Forum]]></name></author>
<id>https://forum.yubico.com/feed.php?f=22</id>
<entry>
<author><name><![CDATA[Tom2]]></name></author>
<updated>2018-01-30T09:26:55+01:00</updated>
<published>2018-01-30T09:26:55+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2835&amp;p=10136#p10136</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2835&amp;p=10136#p10136"/>
<title type="html"><![CDATA[YubiHSM • [Community] - Forum going read only. New KDB on its way.]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2835&amp;p=10136#p10136"><![CDATA[
For the security and experience of our user community, we have decided to set the forum as read-only and wipe all user account information. All historical posts and announcements will be archived and remain publicly searchable. <br /><br />In 2018, we will be publishing a searchable knowledge-base system that allows the community to provide direct feedback on articles and make suggestions that will be reviewed by Yubico staff. We sincerely appreciate the participation of our user forum over the years and hope to continue serving your for years to come.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3364">Tom2</a> — Tue Jan 30, 2018 9:26 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[ChrisHalos]]></name></author>
<updated>2018-01-18T17:47:27+01:00</updated>
<published>2018-01-18T17:47:27+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2824&amp;p=10119#p10119</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2824&amp;p=10119#p10119"/>
<title type="html"><![CDATA[YubiHSM • Re: Microsoft Windows Login using Cloud Account]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2824&amp;p=10119#p10119"><![CDATA[
No, per the documentation. Microsoft accounts not supported - we don't control the 2FA methods allowed by Microsoft on Cloud accounts.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3140">ChrisHalos</a> — Thu Jan 18, 2018 5:47 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[EMMJunkie]]></name></author>
<updated>2018-01-18T16:02:26+01:00</updated>
<published>2018-01-18T16:02:26+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2824&amp;p=10116#p10116</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2824&amp;p=10116#p10116"/>
<title type="html"><![CDATA[YubiHSM • Microsoft Windows Login using Cloud Account]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2824&amp;p=10116#p10116"><![CDATA[
I have a Windows 10 device using my Microsoft Cloud credentials to login to my Windows 10 device.<br /><br />The YubiKey documentation for Windows clearly states to use a local account. Is there away to use the YubiKey with my Microsoft Cloud account, thereby not having to re-set my Windows 10 device?<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=5058">EMMJunkie</a> — Thu Jan 18, 2018 4:02 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[mcdown75]]></name></author>
<updated>2017-02-15T19:46:41+01:00</updated>
<published>2017-02-15T19:46:41+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2570&amp;p=9403#p9403</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2570&amp;p=9403#p9403"/>
<title type="html"><![CDATA[YubiHSM • Cannot verify pin using libykpiv-1.dll with ykPIV_verify]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2570&amp;p=9403#p9403"><![CDATA[
I am working to develop a limited pin change and pin reset tool that we can distribute organization wide.  We only want to allow them to change their pin or reset it.  If anyone knows where documentation on this dll, or the libyubikey-0.dll I would really appreciate a link to it.<br /><br /><br />I have completed the reset process using references to libykpiv-1.dll.  I cannot get the ykPIV_verify to work properly.  I believe the byte that I am passing containing the current pin is not formatted correctly.  I am using  the following code:<br /><br />        public bool VerifyPin(string CurrPin, out int triesLeft)<br />        {<br />            try<br />            {<br />                byte[] bytePin = Encoding.ASCII.GetBytes(CurrPin);<br />                triesLeft = 0;<br />                YubicoPivReturnCode code = SafeNativeMethods.YkPivVerifyPin(_state, bytePin, ref triesLeft);<br />                if (code != YubicoPivReturnCode.YKPIV_OK)<br />                {<br />                    return false;<br />                }<br />                return true;<br />            }<br />            catch (Exception ex)<br />            {<br />                Console.WriteLine(ex.Message);<br />                triesLeft = 0;<br />                return false;<br />            }<br />            <br />        }<br /><br /><br />Can anyone help me out with this?<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=4691">mcdown75</a> — Wed Feb 15, 2017 7:46 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[plaintexter]]></name></author>
<updated>2016-11-01T08:43:01+01:00</updated>
<published>2016-11-01T08:43:01+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2467&amp;p=9135#p9135</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2467&amp;p=9135#p9135"/>
<title type="html"><![CDATA[YubiHSM • Re: Error changing the PIN: Not enough space]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2467&amp;p=9135#p9135"><![CDATA[
To update this: I don't know what was causing this issue, but it might have been GPG for Win *or* a poor contact in the USB port.<br /><br />Later I rebooted the system and tried with Yubikey plugged into another port, and it worked.<br /><br />I haven't performed further troubleshooting.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=4518">plaintexter</a> — Tue Nov 01, 2016 8:43 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[plaintexter]]></name></author>
<updated>2016-10-22T18:11:48+01:00</updated>
<published>2016-10-22T18:11:48+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2467&amp;p=9120#p9120</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2467&amp;p=9120#p9120"/>
<title type="html"><![CDATA[YubiHSM • Error changing the PIN: Not enough space]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2467&amp;p=9120#p9120"><![CDATA[
This is a new Nano with latest f/w.<br />I locked myself out from Admin PIN so I reset the card running one of those reset scripts (<a href="http://forum.yubico.com/viewtopic.php?f=35&amp;t=2193#p8245" class="postlink">http://forum.yubico.com/viewtopic.php?f=35&amp;t=2193#p8245</a>) and then tried to change User PIN first. <br />In order to avoid setting a PIN that I won't remember tomorrow I chose the same PIN as the default (123456), but I get this error.<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">C:\Program Files (x86)\GNU\GnuPG&gt;gpg2.exe --card-edit<br /><br />Application ID ...: ===============================<br />Version ..........: 2.1<br />Manufacturer .....: Yubico<br />Serial number ....: 04974752<br />Name of cardholder: &#91;not set&#93;<br />Language prefs ...: &#91;not set&#93;<br />Sex ..............: unspecified<br />URL of public key : &#91;not set&#93;<br />Login data .......: &#91;not set&#93;<br />Signature PIN ....: not forced<br />Key attributes ...: 2048R 2048R 2048R<br />Max. PIN lengths .: 127 127 127<br />PIN retry counter : 3 0 3<br />Signature counter : 0<br />Signature key ....: &#91;none&#93;<br />Encryption key....: &#91;none&#93;<br />Authentication key: &#91;none&#93;<br />General key info..: &#91;none&#93;<br /><br />gpg/card&gt; admin<br />Admin commands are allowed<br /><br />gpg/card&gt; passwd<br />gpg: OpenPGP card no. ======================= detected<br /><br />1 - change PIN<br />2 - unblock PIN<br />3 - change Admin PIN<br />4 - set the Reset Code<br />Q - quit<br /><br />Your selection? 1<br />Error changing the PIN: Not enough space<br /><br />1 - change PIN<br />2 - unblock PIN<br />3 - change Admin PIN<br />4 - set the Reset Code<br />Q - quit<br /><br />Your selection? q<br /><br />gpg/card&gt; quit<br /></div><br /><br /><br />I tried to run the same admin &gt; passwd process for Admin PIN - same issue, not enough space.<br /><br />I did manage to change Reset PIN (by mistake, I thought I pressed 3, but I pressed 4) using the default Admin PIN, which seems to indicate the PINs were reset to default values.<br /><br />Then I reinserted the card and tried again. Now GPG doesn't even wait until I try to change PIN - as soon as I pick 1 or 3, it tells me there's no space. What space? On the card? On my HDD?<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">1 - change PIN<br />2 - unblock PIN<br />3 - change Admin PIN<br />4 - set the Reset Code<br />Q - quit<br /><br />Your selection? 3<br />Error changing the PIN: Not enough space<br /></div><p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=4518">plaintexter</a> — Sat Oct 22, 2016 6:11 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[offset]]></name></author>
<updated>2016-06-14T23:27:17+01:00</updated>
<published>2016-06-14T23:27:17+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=662&amp;p=8722#p8722</id>
<link href="https://forum.yubico.com/viewtopic.php?t=662&amp;p=8722#p8722"/>
<title type="html"><![CDATA[YubiHSM • Re: RSA key store]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=662&amp;p=8722#p8722"><![CDATA[
Would be interested in a HSM that supported RSA sign function with a flexible PIN policy that includes no PIN as an option.<br /><br />Scenario would be automated code signing to protect the private key.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=4371">offset</a> — Tue Jun 14, 2016 11:27 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[domf]]></name></author>
<updated>2016-03-24T08:47:20+01:00</updated>
<published>2016-03-24T08:47:20+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8483#p8483</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8483#p8483"/>
<title type="html"><![CDATA[YubiHSM • Re: YubiHSM/PyHSM getting started question.....]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8483#p8483"><![CDATA[
Thank you for the reply - will try shortly!<br /><br /><br />Dom<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=4265">domf</a> — Thu Mar 24, 2016 8:47 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Klas]]></name></author>
<updated>2016-03-24T08:37:52+01:00</updated>
<published>2016-03-24T08:37:52+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8482#p8482</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8482#p8482"/>
<title type="html"><![CDATA[YubiHSM • Re: YubiHSM/PyHSM getting started question.....]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8482#p8482"><![CDATA[
Hey,<br /><br />What you're missing is that you need to hex decode the password before you pass it to the unlock function. See <!-- m --><a class="postlink" href="https://github.com/Yubico/python-pyhsm/blob/master/utils/yhsm-keystore-unlock#L76">https://github.com/Yubico/python-pyhsm/ ... unlock#L76</a><!-- m --> for an example of how this is done in the yhsm-keystore-unlock utility.<br /><br />/klas<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=2019">Klas</a> — Thu Mar 24, 2016 8:37 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[domf]]></name></author>
<updated>2016-03-23T16:11:25+01:00</updated>
<published>2016-03-23T16:11:25+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8479#p8479</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8479#p8479"/>
<title type="html"><![CDATA[YubiHSM • YubiHSM/PyHSM getting started question.....]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2263&amp;p=8479#p8479"><![CDATA[
I am looking at the possibility of using YubiHSM to encrypt data on a server without having the ability for the same server to decrypt it - however I am having trouble getting past go with the python API.<br /><br />I can connect to the HSM OK, generate keys and unlock them with no issues through a terminal.  However when I attempt to unlock the keys using pyhsm I am told the master key which I use successfully through the terminal is too long.  <br /><br />Screen Shot 2016-03-23 at 15.07.47.png<br /><br /><br />I feel like I am missing something obvious....<br /><br /><br />Dom<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=4265">domf</a> — Wed Mar 23, 2016 4:11 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Tom2]]></name></author>
<updated>2015-10-08T08:23:19+01:00</updated>
<published>2015-10-08T08:23:19+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=2053&amp;p=7872#p7872</id>
<link href="https://forum.yubico.com/viewtopic.php?t=2053&amp;p=7872#p7872"/>
<title type="html"><![CDATA[YubiHSM • [HELP] - YubiKey not working in Windows (Multiple Version)]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=2053&amp;p=7872#p7872"><![CDATA[
<strong>We have 4 options here, try them in order</strong><br /><br /><strong>(1)</strong> Uninstall ALL entries in Device Manager for the NEO.<br /><br />*If you have U2F enabled, you should see Human Interface Devices &gt; HID-compliant device.<br />*If you have OTP enabled, you should see Keyboards &gt; HID Keyboard Device.<br />*If you have CCID enabled, you should see Smart card readers &gt; Microsoft Usbccid Smartcard Reader (WUDF), and Smart cards &gt; Identity Device (NIST SP 800-73 [PIV]).<br /><br />After all are removed, either &quot;Scan new hardware&quot; or remove the NEO and re-insert.<br /><br /><strong>(2)</strong> Uninstall all entries under Universal Serial Bus controllers, and then restart. These will typically be reloaded when you restart.<br /><br /><strong>(3) </strong>Use the Intel Driver Update Utility (assuming you are Intel-based), and restart after all drivers are updated. Alternatively, you can download the USB and Chipset drivers from your manufacturer's support website and install.<br /><br /><strong>(4)</strong> On Windows 10 if on build 10.0.10240 updating to Windows 10 1511 build 10.0.10586 corrected the issue. You can simply open a cmd prompt and view the system build number at top.<br /><br /><strong>(5)</strong> Re-install Windows.<br /><br /><br /><strong>WINDOWS 10</strong><br />Win 10 - YK4.PNG<br /><br /><br /><strong>NEO</strong><br />1.PNG<br /><br /><br /><strong>EDGE</strong><br />2.PNG<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3364">Tom2</a> — Thu Oct 08, 2015 8:23 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[jgoguen]]></name></author>
<updated>2015-07-27T14:34:15+01:00</updated>
<published>2015-07-27T14:34:15+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7653#p7653</id>
<link href="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7653#p7653"/>
<title type="html"><![CDATA[YubiHSM • Re: YubiHSM stuck in config mode]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7653#p7653"><![CDATA[
<div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />Does the LED switch to a faster pace (4 Hz) ? This signals &quot;waiting<br />for more input&quot;, which is yielded in HSM mode.<br /></div><br />The flashing frequency doesn't change at all. I can't tell for sure what frequency it's flashing at, that's just something I'm bad at. The manual doesn't say anything about 0.5Hz, 1Hz, or 4Hz; the closest frequencies mentioned in the manual are 0.4Hz, 0.8Hz, and 3Hz. From watching the clock on my desktop and watching the blinking, I think it's blinking at 1.6Hz, which according to the manual corresponds to &quot;in config mode, waiting for user input&quot;. Like I mentioned.<br /><br /><div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />Forcing configuration mode at insert may be a bit less intuitive with the new form factor. You need to hold it for 3 seconds and then release. Did you do this?<br /></div><br />I realize I wasn't explicit about the number of seconds spent touching the HSM, but I did mention that I tried entering configuration mode according to the manual's directions.<br /><div class="quotetitle">jgoguen wrote:</div><div class="quotecontent"><br />I've tried putting it in the same and a different USB port while continuing to hold the touch area (which is how the manual says to enter configuration mode).<br /></div><br />I've tried for 3 seconds exactly (as near as I can tell watching my desktop clock) and clearly more than 3 seconds. I've also tried putting it in, waiting a second, then touching it. The LED continues blinking at the same frequency.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3762">jgoguen</a> — Mon Jul 27, 2015 2:34 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Tom2]]></name></author>
<updated>2015-07-27T09:39:17+01:00</updated>
<published>2015-07-27T09:39:17+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7650#p7650</id>
<link href="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7650#p7650"/>
<title type="html"><![CDATA[YubiHSM • Re: YubiHSM stuck in config mode]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7650#p7650"><![CDATA[
There are two modes of flashing on the HSM - the faster 1Hz flashing<br />for HSM mode and the slower 0.5 Hz for configuration mode.<br /><br />test if the device is in HSM mode.<br /><br />1. Close all instances of programs/terminal emulators<br />2. Insert the device<br />3. Fire up a terminal emulator<br />4. Type a key a couple of times<br /><br />Does the LED switch to a faster pace (4 Hz) ? This signals &quot;waiting<br />for more input&quot;, which is yielded in HSM mode.<br /><br />Forcing configuration mode at insert may be a bit less intuitive with<br />the new form factor. You need to hold it for 3 seconds and then<br />release. Did you do this?<br /><br />Let me know.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3364">Tom2</a> — Mon Jul 27, 2015 9:39 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[jgoguen]]></name></author>
<updated>2015-07-23T15:58:06+01:00</updated>
<published>2015-07-23T15:58:06+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7645#p7645</id>
<link href="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7645#p7645"/>
<title type="html"><![CDATA[YubiHSM • Re: YubiHSM stuck in config mode]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7645#p7645"><![CDATA[
<div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />which version of HSM is this?<br /></div><br />YubiHSM 1.5.3. My apologies, I said I set up a new HSM, I didn't realize you could get any other version as a new HSM.<br /><br /><div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />Did you read the manual<br /></div><br />Yes. A few times.<br /><br /><div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />there is a section reporting blinking HZ which status does your blinking corresponds to?<br /></div><br /><div class="quotetitle">jgoguen wrote:</div><div class="quotecontent"><br />now it's stuck blinking what I think is the &quot;in config mode, waiting for user input&quot; state<br /></div><br /><br /><div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />Can you ZAP the configuration and restart?<br /></div><br />No. <div class="quotetitle">jgoguen wrote:</div><div class="quotecontent"><br />I can't connect to the HSM at all<br /></div><br /><br /><div class="quotetitle">Tom2 wrote:</div><div class="quotecontent"><br />Are you removing the HSM and re-insert it while holding the button pressed?<br /></div><br />What button? The user manual doesn't mention a button. I've tried taking it out and putting it back in the same and a different USB port, and I've tried putting it in the same and a different USB port while continuing to hold the touch area (which is how the manual says to enter configuration mode).<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3762">jgoguen</a> — Thu Jul 23, 2015 3:58 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Tom2]]></name></author>
<updated>2015-07-23T10:27:18+01:00</updated>
<published>2015-07-23T10:27:18+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7643#p7643</id>
<link href="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7643#p7643"/>
<title type="html"><![CDATA[YubiHSM • Re: YubiHSM stuck in config mode]]></title>

<category term="YubiHSM" scheme="https://forum.yubico.com/viewforum.php?f=22" label="YubiHSM"/>
<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=1975&amp;p=7643#p7643"><![CDATA[
please provide more details.<br /><br />which version of HSM is this?<br />Did you read the manual, there is a section reporting blinking HZ which status does your blinking corresponds to?<br /><br />Can you ZAP the configuration and restart?<br /><br />Are you removing the HSM and re-insert it while holding the button pressed?<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=3364">Tom2</a> — Thu Jul 23, 2015 10:27 am</p><hr />
]]></content>
</entry>
</feed>