The problem is that your user still has to enter the keys like:<br><br>appname.exe --key=&quot;public key&quot; --key=&quot;secret key&quot;<br><br>And if the user enters:<br>appname.exe --key=&quot;secret key&quot; --key=&quot;public key&quot;
<br><br>How do you know which is the right one?<br><br>The best solution would be to enforce to specify public and secret params:<br>appname.exe public=&quot;public key&quot; secret=&quot;secret key&quot;<br><br><br>The last point also applies to my previous post. This way you will avoid some errors for your users.
<br><br><br>Best Regards,<br>Ovanes<br><br><br><div><span class="gmail_quote">On 11/2/07, <b class="gmail_sendername">Edwin Savarimuthu</b> &lt;<a href="mailto:zerobook@gmail.com">zerobook@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
You can use something like this as well.<br><br>std::vector&lt;std::string&gt;&nbsp;&nbsp;key_pair;<br>(&quot;secert&quot;, boost::program_options::value&lt; std::vector&lt;std::string&gt;<br>&gt;(&amp;key_pair), &quot;creates the share secret key&quot;);
<br><br>Then you can do you error checks ...<br><br>if ( key_pair.size() == 2 )<br>{<br>&nbsp;&nbsp;// Do your processing here<br>} else<br>{<br>&nbsp;&nbsp;// error<br>}<br><br>This example uses string vector. I guess std::vector&lt;BigInteger&gt;
<br>should also work for you.<br><br><br>Thanks,<br>Edwin<br><br><br><br><br>On 10/31/07, Ovanes Markarian &lt;<a href="mailto:om_boost@keywallet.com">om_boost@keywallet.com</a>&gt; wrote:<br>&gt; One more addition:<br>&gt;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; boost::tuple&lt;BigInteger, BigInteger&gt; key_pair;<br>&gt;<br>&gt; This will not parse your key. You need to do it manually. So your param<br>&gt; should be std::string. And than you can tokenize you string. Or you define 2
<br>&gt; separate params and let program_options parse them into Integers for you.<br>&gt; But I am unsure if this is supported. Probably yes. I am 100% sure program<br>&gt; options will not tokenize one param for you. May be only if your key_pair
<br>&gt; supports construction from a space separted string.<br>&gt;<br>&gt;<br>&gt; Regards,<br>&gt; Ovanes<br>&gt;<br>&gt;<br>&gt; On 10/31/07, Ovanes Markarian &lt;<a href="mailto:om_boost@keywallet.com">om_boost@keywallet.com
</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt; Hi!<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; On 10/31/07, chun ping wang &lt;<a href="mailto:cablepuff@gmail.com">cablepuff@gmail.com</a>&gt; wrote:<br>&gt; &gt; &gt;<br>
&gt; &gt; &gt; HI how would I use program options to accept multiple input.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; The thing compiles but when I do DiffieHellman.exe --secert 817 697<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; I get this error.
<br>&gt; &gt; &gt; C:\CPW\cs_classes&gt;DiffieHellmanEncrypt --secert 817 697<br>&gt; &gt; &gt; terminate called after throwing an instance of<br>&gt; &gt; &gt; &#39;boost::program_options::invalid_<br>&gt; &gt; &gt; option_value&#39;
<br>&gt; &gt; &gt;&nbsp;&nbsp; what():&nbsp;&nbsp;in option &#39;secert&#39;: invalid option value &#39;817&#39;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; This application has requested the Runtime to terminate it in an unusual<br>&gt; &gt; &gt; way.
<br>&gt; &gt; &gt; Please contact the application&#39;s support team for more information.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; the option is in your case:<br>&gt; &gt;<br>&gt; &gt; --secert=&quot;817 697&quot;
<br>&gt; &gt;<br>&gt; &gt; Regards,<br>&gt; &gt; Ovanes<br>&gt;<br>_______________________________________________<br>Boost-users mailing list<br><a href="mailto:Boost-users@lists.boost.org">Boost-users@lists.boost.org</a>
<br><a href="http://lists.boost.org/mailman/listinfo.cgi/boost-users">http://lists.boost.org/mailman/listinfo.cgi/boost-users</a><br></blockquote></div><br>