User Adam Liss - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T18:28:17Z http://stackoverflow.com/feeds/user/29157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1911919/pointer-to-a-casted-pointer/1912024#1912024 0 Answer by Adam Liss for Pointer to a casted Pointer? Adam Liss 2009-12-16T03:13:41Z 2009-12-16T03:23:43Z <p>You may have an easier time when you understand the <em>motivation</em> behind your example code.</p> <p>The code is manipulating 4-byte values, which is why <code>p</code> is being cast as a <code>long *</code>. The construct <code>* (long *) p = -4;</code> allows you to set 4 bytes to <code>0xFFFFFFFC</code> with a single assignment. If you left <code>p</code> as a <code>char *</code> you'd need four separate assignments, and you'd also need to worry about the <a href="http://en.wikipedia.org/wiki/Endianness" rel="nofollow">endianness</a> of your platform.</p> <p>So why not simply declare <code>p</code> as a <code>long *</code> in the first place? Because the code is using pointer arithmetic to calculate the target addresses: <code>p += sizeof(shellcode) + 64 - 4;</code> Pointer arithmetic is easy with a <code>char *</code> because adding 1 to the pointer will advance it to the next byte, just as you would expect. Not so with pointers to other data types! If <code>p</code> were declared as <code>long *p;</code> then <code>p += 4</code> adds <strong>4 * <code>sizeof(long)</code></strong> to <code>p</code>.</p> <p>Why? Because this makes it easy to traverse a list of <code>long</code> variables:</p> <pre><code>long sum_of_longs(long vals[], int num) { // 'vals[]' contains 'num' long ints. long *p; // This pointer traverses the array. long sum; // Running total. // Initialize 'p' to the first number in 'vals[]' and // increment through the array until 'num' reaches 0. // // Note that 'p' increases by 4 bytes each time in order // to advance to the next long. for (sum=0, p=vals; num &gt; 0; p++, num--) sum += *p; return sum; } </code></pre> <p>So, in your example, defining <code>p</code> as a <code>char *</code> makes it easy to do the pointer arithmetic in terms of bytes, and casting it to a <code>long *</code> makes the assignments easier.</p> http://stackoverflow.com/questions/1810942/general-strategy-for-finding-the-cause-of-random-freezes/1811006#1811006 3 Answer by Adam Liss for General strategy for finding the cause of random freezes? Adam Liss 2009-11-27T23:34:22Z 2009-11-28T18:54:33Z <p>If you're lucky, you can run your code in a debugger until it freezes, then stop the debugger to find the offending line of code. But if it were that easy, you probably wouldn't be asking for advice. :-)</p> <p>Two strategies that can be used together are to "divide and conquer" and "leave bread crumbs."</p> <p><strong>Divide and conquer:</strong> Comment out increasingly larger portions of your code. If it still freezes, you've reduced the amount of code that might be responsible for causing the freeze. <em>Caveat:</em> eventually you'll comment out some code and the program will <em>not</em> freeze. This doesn't mean that last bit of code is necessarily <em>responsible</em> for the freeze; it's just somehow <em>involved</em>. Put it back and comment out something else.</p> <p><strong>Leave bread crumbs:</strong> Make your program tell you where it is and what it's doing as it executes. Display a message, add to a log file, make a sound, or send a packet over the network. Is the execution path as you expected? What was the last thing it was doing before it froze? Again, be aware that the last message may have come from a different thread than the one responsible for freezing the program, but as you get closer to the cause you'll adjust what and where the code logs.</p> http://stackoverflow.com/questions/1811646/ie7-smartcard-pin-prompt/1811649#1811649 2 Answer by Adam Liss for IE7 Smartcard PIN Prompt Adam Liss 2009-11-28T05:14:36Z 2009-11-28T05:14:36Z <p>Resetting the card will exipre the PIN. See <a href="http://stackoverflow.com/questions/1800745/cac-smartcard-reauthenticate">this answer</a> for more information.</p> http://stackoverflow.com/questions/1763134/storing-credit-card-info/1763328#1763328 1 Answer by Adam Liss for storing credit card info Adam Liss 2009-11-19T13:33:16Z 2009-11-19T13:33:16Z <p>You may have an easier time if you differentiate between data <em>storage</em>, <em>access</em>, and <em>transmission</em>.</p> <p><strong>Storage</strong> requires strong reversible encryption; the data is not useful unless you can retrieve it.</p> <p><strong>Access</strong> requires a user or process to authenticate itself before it is permitted to decrypt the data. Here's an example of a mechanism that would accomplish this:</p> <ol> <li><em>Store</em> the data with a secret key that is never directly exposed to any user. Of course, you'll need to store <em>that</em> key somewhere, and you must be able to retrieve it.</li> <li>When each user chooses a password, use the password to encrypt a personal copy of the private key for that user. (<em>Note: even though you're encrypting each copy of the key, security issues may arise from maintaining multiple copies of the same information</em>.)</li> <li>Do not store the user's password. Instead, <em>hash</em> it according to standard best practices (with salt, <em>etc.</em>) and store the hash.</li> <li>When a user provides a password to log in, hash it and compare to your stored value. If they match, use the (plainitext) password to decrypt the key, which is then used to decrypt the actual data.</li> </ol> <p><strong>Transmit</strong> the data through a secure connection, such as SSL. It's reasonable (perhaps required) to allow users to access (and modify) their own data, as long as you continue to follow best practices.</p> <p><br></p> <h2>Comments:</h2> <ul> <li><p>An 8-digit password implies a key space of 10<sup>8</sup> ~ 2<sup>27</sup> = 27 bits, which by today's standards is fairly terrible. If you can't encourage longer (or alphanumeric) passwords, you may want to consider additional layers.</p></li> <li><p>One advantage to the multiple-layer strategy (user provides a password that is used to encrypt the "actual" key) is that you can change the encryption key transparently to the user, thereby satisfying any key-rotation requirements..</p></li> <li><p>The standard admonition whenever you're designing a security solution is to remember that DIY security, even when following standards, is risky at best. You're almost always better off using an off-the-shelf package by a reputable vendor, or at least having a trained, certified security professional audit both your strategy and your implementation.</p></li> </ul> <p>Good luck!</p> http://stackoverflow.com/questions/1714875/eval-to-variable-failing-w-crontab/1715011#1715011 0 Answer by Adam Liss for Eval to variable failing (w/Crontab) Adam Liss 2009-11-11T12:53:07Z 2009-11-11T12:53:07Z <p>Have you tried eliminating the <code>eval</code>?</p> <p>Instead of</p> <pre><code>ldsys=`eval $cmd1` </code></pre> <p>Try</p> <pre><code>ldsys=`echo "$cmd1" | /bin/sh` </code></pre> <p>or</p> <pre><code>ldsys="$(echo $cmd1 | /bin/sh)" </code></pre> http://stackoverflow.com/questions/1697935/text-pattern-processing-in-paragraph-with-unix-linux-utilities/1698035#1698035 2 Answer by Adam Liss for Text Pattern Processing in paragraph with unix linux utilities Adam Liss 2009-11-08T21:49:02Z 2009-11-08T21:54:57Z <p>Assuming you generated the original file, and therefore it is safe to execute it as a script:</p> <pre><code>sed -e 's/^.*,/FILE=&amp;/' \ -e 's/^.*=\$CONFIG/PROPFILE=$CONFIG/' \ -e 's/^EndOfFile.*/echo $FILE $PROPFILE/' &lt; yourInputFile | sh </code></pre> <p>This converts each section of your file into the form:</p> <pre><code>FILE=filename1, BASE=a/b/c CONFIG=$BASE/d PROPFILE=$CONFIG/e.properties echo $FILE $PROPFILE </code></pre> <p>... and then sends it into a shell for processing.</p> <p><strong>Line-by-line explanation:</strong></p> <p>Line 1: Searches for the lines ending in a comma (the filenames), and sets <code>FILE</code> to the name.<br> Line 2: Searches for lines that set the properties file, and renames the variable to PROPFILE.<br> Line 3: Replaces the EndOfFile lines with a command to echo the file name and the properties file, then pipes it into a shell.</p> http://stackoverflow.com/questions/1694804/tool-for-network-traffic-analysis-of-a-custom-protocol/1695032#1695032 0 Answer by Adam Liss for Tool for network traffic analysis of a custom protocol Adam Liss 2009-11-08T01:27:19Z 2009-11-08T01:27:19Z <p>Not sure I understand exactly what you need, but if you're looking to analyze only the packets with application data in them you can ask Wireshark to display only those packets with the PSH ("push to application") flag set.</p> http://stackoverflow.com/questions/1690670/c-return-pointer-question/1690699#1690699 1 Answer by Adam Liss for C return pointer question Adam Liss 2009-11-06T21:45:52Z 2009-11-06T21:45:52Z <p>No problems&mdash;in fact, this is the correct way to allocate memory that will still be used after a function returns&mdash;but you may want to <code>free()</code> the memory when you're done using it. Eight bytes wouldn't be a problem, but coding against memory leaks is a good habit to get into.</p> http://stackoverflow.com/questions/1649288/bind-error-when-a-ip-address-is-given/1649453#1649453 1 Answer by Adam Liss for bind error when a ip-address is given Adam Liss 2009-10-30T12:13:02Z 2009-10-30T12:13:02Z <ul> <li><p>Double-check to be sure the IP address is correct. Have you used <a href="http://linux.die.net/man/3/htonl" rel="nofollow"><code>htonl(ipaddr)</code></a> to put the address in the proper byte order?</p></li> <li><p>If so, use <code>netstat -l</code> to be sure the port isn't already in use on that IP address.</p></li> </ul> http://stackoverflow.com/questions/1628371/connecting-to-vpn-through-a-custom-client/1628395#1628395 0 Answer by Adam Liss for Connecting to VPN through a custom client Adam Liss 2009-10-27T02:05:13Z 2009-10-27T02:05:13Z <p>Ah, much easier to understand - thanks for the clarification!</p> <p>At the risk of sounding like I'm an OpenVPN fanatic, look at <a href="http://www.openvpn.net" rel="nofollow">openvpn</a>, particularly the Access Server <a href="http://openvpn.net/index.php/access-server/download-openvpn-as.html" rel="nofollow">here</a>. I think you'll find it does exactly what you need.</p> <p>OpenVPN is open source, so it's 100% code samples and as customizable as you like. (Be careful what you ask for! :-) )</p> <p>Good luck!</p> http://stackoverflow.com/questions/1628311/array-initialisation/1628347#1628347 1 Answer by Adam Liss for array initialisation Adam Liss 2009-10-27T01:47:24Z 2009-10-27T01:58:55Z <blockquote> <p>"Members of arrays and structures are default initialized or not depending on whether the array or structure is static" </p> </blockquote> <p>This is authoritative, although it could be clearer:</p> <ul> <li>Arrays and structures declared as <code>static</code> are initialized to zeroes.</li> <li>Local arrays and structures of built-in types (<em>i.e.</em> types that have no constructors) are not initialized.</li> </ul> http://stackoverflow.com/questions/1625573/tunnelling-traffic-through-my-server-using-an-application/1625588#1625588 1 Answer by Adam Liss for Tunnelling traffic through my server using an application Adam Liss 2009-10-26T15:52:46Z 2009-10-26T15:52:46Z <p>Look at <a href="http://www.openvpn.net" rel="nofollow">openvpn</a>, which is designed to do exactly this. You can push routing information to each client as it connects to your server.</p> http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelation/1621243#1621243 6 Answer by Adam Liss for What has been your greatest programming revelation? Adam Liss 2009-10-25T15:58:09Z 2009-10-25T15:58:09Z <p><a href="http://www.melconway.com/research/committees.html" rel="nofollow">Conway's Law</a>, which expressed in 1968 a fundamental truth that, 40 years later, still captures perhaps the most pervasively crippling--and yet unacknowledged--barrier to successful system design:</p> <blockquote> <p>Organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations.</p> </blockquote> <p>One (oversimplified) consequence of this is that a company's products cannot be designed better than the patterns, mechanisms, and abilities--or lack thereof--that the people in that organization use to communicate with each other.</p> <p>Long before "agile" and "extreme programming" became buzzwords, he went on to suggest:</p> <blockquote> <p>Ways must be found to reward design managers for keeping their organizations lean and flexible. There is need for a philosophy of system design management which is not based on the assumption that adding manpower simply adds to productivity. The development of such a philosophy promises to unearth basic questions about value of resources and techniques of communication which will need to be answered before our system-building technology can proceed with confidence.</p> </blockquote> <p>Achieving this, IMO, will become the greatest programming revelation. I think we, as an industry, have a long way to go ... and I'm enjoying the journey!</p> http://stackoverflow.com/questions/1453765/security-implications-of-a-limited-function-server/1600486#1600486 1 Answer by Adam Liss for Security implications of a limited function server Adam Liss 2009-10-21T12:28:56Z 2009-10-21T12:28:56Z <p>If I can assume the data you're collecting is not sensitive, so encryption/privacy is therefore unnecessary, I see very little risk in writing your own server, particularly if you follow PaulG's recommendation to place the server in a firewalled DMZ.</p> <p>Based on your description, I'm not thinking of your server as an MTA; rather, it's a file-transfer server that happens to speak SMTP. Let's look at a hypothetical session and discuss some issues:</p> <pre><code>[Client connects to your server] &lt; 220 Welcome message from your.server.com &gt; HELO someclient.com &lt; 250 your.server.com &gt; MAIL From: address@ignored.com &lt; 250 OK &gt; RCPT To: another_address@also_ignored.com &lt; 250 OK &gt; DATA &lt; 254 End data with &lt;CR&gt;&lt;LF&gt;.&lt;CR&gt;&lt;LF&gt; &gt; client sends data here &gt; . &lt; 250 OK &gt; QUIT &lt; 221 Bye [Close connection] </code></pre> <p>Things to think about:</p> <ul> <li><p>Is <strong>security</strong> an issue at all? (Do you need to guard against spam? Do you need to verify the client, sender, or recipient?) If the answer is "no," you can ignore everything that follows <code>HELO</code>, <code>MAIL</code>, and <code>RCPT</code> and send a 250 response unconditionally.</p></li> <li><p>You can dump everything between <code>DATA</code> and the <code>.</code> into a file for processing. You'll probably want to limit the size, and the processing will be easier if the data is in plaintext: not <a href="http://en.wikipedia.org/wiki/MIME" rel="nofollow">MIME</a>- or <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">Base64</a>-encoded, with no attachments.</p></li> <li><p>Your server will need <strong>exception handling</strong>: it should respond gracefully to timeouts, protocol errors, and premature disconnection.</p></li> <li><p>If you control the message content, you can perform simple authentication and validation by placing your data between some sort of BEGIN and END lines and appending a <a href="http://en.wikipedia.org/wiki/Salt%5F%28cryptography%29" rel="nofollow">salted</a> <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">hash</a>. When you process the date, ignore everything outside the BEGIN/END lines and verify the hash.</p></li> <li><p>Finally, I'd go so far as to say that postfix may actually <em>introduce</em> more security issues than it solves. With all of its features and flexibility you really do need to understand how to configure it properly, and mis-configuration can turn your server into a relay for spam.</p></li> </ul> <p>Good luck - please let us know which solution you choose!</p> http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment 45 Most Astonishing Violation of the Principle of Least Astonishment Adam Liss 2008-10-25T03:33:04Z 2009-10-20T09:50:21Z <p>The <em>Principle of Least Astonishment</em> suggests that a system should operate as a user would expect it to, as much as possible. In other words, it should never "astonish" the user with unexpected behavior.</p> <p>In your experience as the "astonishee," what types of systems are the worst offenders, and if you were the project manager, <strong>how would you correct the problem?</strong></p> <p>Bonus if your answer describes how you'd <strong>retrain the developers!</strong></p> http://stackoverflow.com/questions/1586093/working-with-offshore-teams/1586356#1586356 2 Answer by Adam Liss for Working with Offshore Teams. Adam Liss 2009-10-18T23:43:30Z 2009-10-18T23:43:30Z <p>In no particular order:</p> <ol> <li>Document as much as you can up front, in as much detail as possible, on both the technical and business ends: <ul> <li>Costs</li> <li>Schedules</li> <li>Tools</li> <li>Assumptions</li> <li>Acceptance Criteria</li> <li>Resources</li> <li>Support</li> <li>Contingencies</li> </ul></li> <li>Make the time difference work to your benefit: each side's daily deliverables (questions, answers, documents, tests, code...) should be provided <em>before</em> they leave for the day, so one team is always productive while the other sleeps.</li> <li>Schedule frequent, regular checkpoints before the project starts. These should be real-time (conference call, Skype, web meeting) to encourage questions and joint troubleshooting while problems are still minor.</li> <li>In addition, schedule frequent, regular deliverables so you'll be able to monitor progress, quality, etc., while there's plenty of time to address discrepancies from expectations.</li> <li>Assign an official point of contact on each side whose purpose is always to be available, not for day-to-day communication, but as the go-to person for administration, emergencies, etc.</li> <li>Ensure the people who are actually doing the work on each side have direct communication with their counterparts. Copy the manager or official contact if you like, and invite them to join phone calls, but let the workers collaborate directly.</li> <li>If possible, host the source repository and defect-tracking system locally. If that's not possible, insist on regular code drops, even before the code is working. You'll be in a better position to answer questions, verify progress, and otherwise guard against unforeseen problems.</li> <li>Communicate your questions, concerns, and appreciation. Constantly. Let them know what's wrong, and what's right. Express your appreciation when they go out of their way to accommodate you.</li> </ol> <p>Good luck!</p> http://stackoverflow.com/questions/1563855/pointers-memory-allocation-index-of-rows-in-matrix-multiplication-c-programmin/1564095#1564095 1 Answer by Adam Liss for Pointers, memory allocation: index of rows in Matrix Multiplication (C Programming) Adam Liss 2009-10-14T03:27:22Z 2009-10-14T03:27:22Z <p>From the code, it seems that <strong><code>a</code></strong> and <strong><code>b</code></strong> are two matrices: <strong><code>a</code></strong> has dimensions <code>a_rows</code> x <code>a_cols</code>, and <strong><code>b</code></strong> has an unspecified number of rows and <code>b_cols</code> columns. (Actually, the missing <code>b_rows</code> must equal <code>a_cols</code> for the math to work.) The function is calculating the <a href="http://en.wikipedia.org/wiki/Dot%5Fproduct" rel="nofollow">dot product</a> of the <code>row</code><sup>th</sup> row in <strong><code>a</code></strong> and the <code>col</code><sup>th</sup> column in <strong><code>b</code></strong>. The formula for a dot product (1 &lt;= <em><code>k</code></em> &lt;= <code>a_cols</code>):</p> <blockquote> <p>&sum;&nbsp;<strong>a</strong><code>[row ,</code><em><code>k</code></em><code>] </code><strong>b</strong><code>[</code><em><code>k</code></em><code>, col]</code></p> </blockquote> <p>In English, this means you multiply the numbers in the <code>row</code><sup>th</sup> row in <strong><code>a</code></strong> with numbers in the <code>col</code><sup>th</sup> column in <strong><code>b</code></strong>, one pair at a time, and then add the products.</p> <p>So, to answer the original question: <strong><code>row</code> tells you which row in <code>a</code> is involved in the dot product.</strong> The code represents each matrix as a vector (<em>i.e.</em> a one-dimensional array), and Kinopiko's answer explains how to find the number at a particular row and column. (And now you understand why un-commented "clever" programming tricks usually aren't.)</p> <p><hr /></p> <p>Aside: this may be the last vector-math question I tackle. The wiki markup is <em>killing</em> me! :-)</p> http://stackoverflow.com/questions/1546756/does-a-one-cycle-instruction-take-one-cycle-even-if-ram-is-slow/1546760#1546760 0 Answer by Adam Liss for Does a one cycle instruction take one cycle, even if RAM is slow? Adam Liss 2009-10-10T01:20:24Z 2009-10-10T01:20:24Z <p>Could there be a 32-bit cache within the processor itself? Which processor are you using?</p> http://stackoverflow.com/questions/1534940/is-there-a-product-development-model-for-an-stand-alone-embedded-programmer/1541087#1541087 1 Answer by Adam Liss for Is there a product development model for an stand alone embedded programmer? Adam Liss 2009-10-08T23:25:29Z 2009-10-08T23:25:29Z <p><em>[Are there] companies which let modified the functionality of their hardware so you could produce a different product from their hardware.</em></p> <p>In general, even small hardware modifications are fairly expensive, so most companies will probably be willing to do that only if you agree to buy quantities of hundreds or thousands or pay for the retooling costs.</p> <p>On the other hand, you never know until you ask. Years ago our tech support received an email from a hobbyist who'd bought one of our (old, used, unsupported) products from a third party and wanted help getting it running again. He became our electronic pen-pal, and we sent him the parts he needed as a gift.</p> <p>I'd be interested to know more about your project if you don't mind sharing. In any case, consider some form of a <a href="http://en.wikipedia.org/wiki/Non-disclosure%5Fagreement" rel="nofollow">non-disclosure agreement</a> before discussing it with anyone who has the ability to build it before you do.</p> <p>What sort of hardware are you looking to design?</p> http://stackoverflow.com/questions/1537280/dhcp-on-busybox/1537406#1537406 0 Answer by Adam Liss for DHCP on busybox Adam Liss 2009-10-08T12:07:13Z 2009-10-08T12:07:13Z <p>Take a look at <a href="http://stackoverflow.com/questions/1160963/how-to-enumerate-all-ip-addresses-attached-to-a-machine-in-posix-c">this question</a> and check the IFF_DYNAMIC flag - that may be set when DHCP is active on an interface.</p> http://stackoverflow.com/questions/1535380/on-the-fly-email-encryption-signature 0 On-the-fly email encryption/signature Adam Liss 2009-10-08T02:58:08Z 2009-10-08T05:04:24Z <p><strong>Background:</strong> I've inherited an embedded linux-based system that contains an SMTP proxy and some wacky constraints that I just have to live with. It sits between an SMTP client and server. When an SMTP client connects, the proxy opens a connection to the server and passes the client's data to the server after some on-the-fly processing.</p> <p><strong>The challenge:</strong> I need to sign and/or encrypt the email on its way to the server using standard PKI techniques and S/MIME formats (see <a href="http://www.ietf.org/rfc/rfc2311.txt" rel="nofollow">RFC2311</a>, for example). I have access to all the required public keys from the appropriate certificates.</p> <p><strong>The wacky constraints</strong> (please just accept them, as they're far beyond my control)<strong>:</strong></p> <ol> <li>I can't store the email; it <em>must</em> be processed on-the-fly.</li> <li>I can do the encryption locally using the public keys, but I <em>cannot</em> access the private keys directly, which means the digital signature must be done by a "signing device" through a 9600bps connection.</li> <li>Typical email messages are <em>tens or hundreds of MB</em> in size. (The email server and recipients can handle those sizes; the only issue is the unacceptable delay when signing.)</li> <li>Any new code <em>should</em> be in C, but it's acceptable, for example, to pipe the data to a stand-alone utility for encryption/signature as long as the data is never stored (<em>e.g.</em> no temporary files).</li> <li>Delivery is in 14-21 days.</li> </ol> <p><strong>Questions:</strong></p> <ol> <li>I was hoping to find an open-source utility or library that would generate the appropriate MIME headers and encrypt/sign a blob of data, but I didn't find that on Sourceforge, Google code, <em>etc.</em> Have you used one that you could recommend?</li> <li>I was desperately hoping to find an RFC that says it's acceptable to hash the 100MB of data and then sign the hash, as that would mitigate the 9600bps bottleneck. But again, no luck. Is there an industry-standard "shortcut" (RFC?) that would be compatible with typical email clients?</li> </ol> <p>Thanks for your thoughts.</p> http://stackoverflow.com/questions/1534940/is-there-a-product-development-model-for-an-stand-alone-embedded-programmer/1535510#1535510 1 Answer by Adam Liss for Is there a product development model for an stand alone embedded programmer? Adam Liss 2009-10-08T03:41:54Z 2009-10-08T03:41:54Z <p><strong>Hardware:</strong> You might want to start out with hobbyist-grade equipment, which is generally fairly easy to understand and reasonably inexpensive. For a totally random example, look here: <a href="http://www.parallax.com" rel="nofollow">http://www.parallax.com</a>.</p> <p>Many of these kits are designed to be used as analog or digital sensors, or as controllers, so there's a chance you'll find one that suits your needs fairly closely.</p> <p><strong>References:</strong> The same way you'd build a software library, electronics engineers have built "libraries" of basic circuits that perform simple functions and can be combined into larger designs. Search your library or the web for an "electronic circuit reference/archive/cookbook" like this: <a href="http://amasci.com/elehob/elehobcr.html" rel="nofollow">http://amasci.com/elehob/elehobcr.html</a> to find oodles of circuits that may be helpful for your particular project.</p> <p><strong>Options:</strong> If you don't want to do this yourself, you might offer a small fee to an EE major at a local college (some colleges allow seniors to do a "Special Project" for college credit, in which case it may cost you nothing), or offer a professional a percentage of the profits if your product takes off.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1519435/generating-the-same-random-secretkey-twice/1519824#1519824 2 Answer by Adam Liss for Generating the same random SecretKey twice Adam Liss 2009-10-05T12:37:06Z 2009-10-05T12:37:06Z <p>There are two ways to secure a key programmatically:</p> <ul> <li>Keep the key itself secret, or</li> <li>Keep the algorithm secret.</li> </ul> <p>Cryptographers (and common sense) will tell you that, of the two, the second is far less secure because it's relatively easy to reverse-engineer the code. So you're left with the first method.</p> <p>If I'm reading your requirements correctly, you need a key that is</p> <ol> <li>Guaranteed to be unique to each machine.</li> <li>Random.</li> <li>Not stored anywhere.</li> <li>Reproducible (by your software).</li> </ol> <p>But it's not possible to satisfy all of these. For example, a truly random key that is not stored anywhere (either as data or embedded in an algorithm) cannot be reproduced at will. So if I can take some leeway, I'll read into your use case and substitute these less stringent requirements:</p> <ol> <li>Tied to the host machine: a key from one machine cannot be used on another.</li> <li>Secure: unlikely to be duplicated, guessed, reverse-engineered, <em>etc</em>.</li> <li>Secure: not likely to be discovered within your program.</li> <li>Reproducible: your application must be able to regenerate the key as necessary.</li> </ol> <p>All of these new requirements, with the exception of #3, can be satisfied with this procedure:</p> <p><hr /></p> <ol> <li>Generate a secret random <em>seed</em> that will be used on every machine.</li> <li>Choose a machine-dependent <em>signature</em> that is unique to each host, and append it to the seed. The classic example is a MAC address, but on machines with two or more NICs you must be careful to use the same NIC each time!</li> <li><a href="http://en.wikipedia.org/wiki/Hash%5Ffunction#Hash%5Ffunction%5Falgorithms" rel="nofollow">Hash</a> the result with an algorithm (like <a href="http://en.wikipedia.org/wiki/Sha-1" rel="nofollow">SHA</a>) that will generate a result that is reasonably unique and irreversible.</li> </ol> <p><hr /></p> <p>Now all that's left is to satisfy the third requirement by making it reasonably difficult for an attacker to guess the one item that must be secret: the seed. And this is where the process becomes more of a religious argument than a technical one, because "reasonably difficult" depends on how badly an attacker wants to discover the key and the risks if s/he succeeds.</p> <p>To be as secure as possible, the key must be stored outside your application, <em>e.g.</em> in your brain, and supplied each time it's needed. But generally some form of the weaker <em>security through obscurity</em> mechanism is acceptable; one of my favorites is to use something like <code>0x%-6.2d</code> that is likely to be overlooked as a <code>printf()</code> format. If you're paranoid, store it in pieces and re-create it in a part of your application that isn't otherwise associated with the key-processing modules.</p> <p>Please do tell us a little more about your application and its use cases if you'd like more specific suggestions.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1459566/starting-to-develop-a-new-piece-of-functionality-easy-or-difficult-stuff-first/1459713#1459713 0 Answer by Adam Liss for Starting to develop a new piece of functionality - easy or difficult stuff first? Adam Liss 2009-09-22T12:12:26Z 2009-09-22T12:12:26Z <p>Both the scheduling and the development itself tend to be riskier, more difficult, and less predictable whenever a learning curve is involved. So you may find it helpful to start <em>investigating</em> the more unfamiliar piece first. That will help you identify some of the pitfalls. For example, you may need information or help from someone else; you may need to learn new techniques or technology; you may need additional tools; or you may want to experiment with several alternatives before committing to one of them. If you identify these issues early, you'll have time to address them while you make progress on the more familiar tasks <em>in parallel</em>. In project-management terms, you're identifying and shortening your project's <em>critical path</em>.</p> <p>We often use the analogy of putting unknowns "in a box," and then shrinking the sides &mdash; in other words, we try to understand just how risky/uncertain the tasks are, and then increase our expertise in those areas. You'll find that several smaller boxes are far better than one big one.</p> <p>Good luck! Please let us know how you decide to proceed.</p> http://stackoverflow.com/questions/1453876/why-does-strncpy-not-null-terminate/1453971#1453971 5 Answer by Adam Liss for Why does strncpy not null terminate? Adam Liss 2009-09-21T10:57:03Z 2009-09-21T11:16:58Z <p>Some new alternatives are specified in ISO/IEC TR 24731 (Check <a href="https://buildsecurityin.us-cert.gov/daisy/bsi/articles/knowledge/coding/317-BSI.html" rel="nofollow">https://buildsecurityin.us-cert.gov/daisy/bsi/articles/knowledge/coding/317-BSI.html</a> for info). Most of these functions take an additional parameter that specifies the maximum length of the target variable, ensure that all strings are null-terminated, and have names that end in <code>_s</code> (for "safe" ?) to differentiate them from their earlier "unsafe" versions.<sup>1</sup> </p> <p>Unfortunately, they're still gaining support and may not be available with your particular tool set. Later versions of Visual Studio will throw warnings if you use the old unsafe functions.</p> <p>If your tools <em>don't</em> support the new functions, it should be fairly easy to create your own wrappers for the old functions. Here's an example:</p> <pre><code>errCode_t strncpy_safe(char *sDst, size_t lenDst, const char *sSrc, size_t count) { // No NULLs allowed. if (sDst == NULL || sSrc == NULL) return ERR_INVALID_ARGUMENT; // Validate buffer space. if (count &gt;= lenDst) return ERR_BUFFER_OVERFLOW; // Copy and always null-terminate memcpy(sDst, sSrc, count); *(sDst + count) = '\0'; return OK; } </code></pre> <p>You can change the function to suit your needs, for example, to always copy as much of the string as possible without overflowing. In fact, the VC++ implementation can do this if you pass <code>_TRUNCATE</code> as the <code>count</code>.</p> <p><br><br><hr> <sup>1</sup>Of course, you still need to be accurate about the size of the target buffer: if you supply a 3-character buffer but tell <code>strcpy_s()</code> it has space for 25 chars, you're still in trouble.</p> http://stackoverflow.com/questions/1412051/how-to-zip-specified-folders-with-command-line/1424651#1424651 3 Answer by Adam Liss for How to zip specified folders with Command Line Adam Liss 2009-09-15T01:17:02Z 2009-09-15T01:17:02Z <p>I've abandoned WinZip in favor of <a href="http://www.7-zip.org/" rel="nofollow">7-Zip</a> because it's fast, free, efficient, and available for both Windows and Linux.</p> <p>If you're a WinZip fan, take a look at the WinZip command-line support add-on: <a href="http://winzip.com/prodpagecl.htm" rel="nofollow">http://winzip.com/prodpagecl.htm</a></p> <p>You can archive as many files or directories as your Windows command line will allow:</p> <pre><code>wzzip archive.zip dir1 dir2 dir3 ... </code></pre> http://stackoverflow.com/questions/1419087/c-definition-formatting-question/1419560#1419560 1 Answer by Adam Liss for C definition formatting question Adam Liss 2009-09-14T03:25:49Z 2009-09-14T03:25:49Z <p>One of the downsides to formats like this:</p> <pre><code>UITextView *tv; int i; int *j; </code></pre> <p>is that someday you'll need to add another variable whose type has more characters than <code>UITextview</code>&nbsp;:</p> <pre><code>UITextView *tv; int i; int *j; SomeOtherDataType t; </code></pre> <p>which presents you with the choice of either messing up the column layout and leaving a <strong><a href="http://www.sjvgreens.org/broken.shtml" rel="nofollow">broken window<sup>1</sup></a></strong>, or adding spaces to the other variables and committing the revision-control atrocity of <strong>Introducing Unnecessary Reformatting that Obscures the Material Changes</strong>.</p> <p>My preference is to declare variables one per line, ordered by type when it makes sense, and sacrifice some vertical space in favor of readability and ease of commenting:</p> <pre><code>UITextView *tv; // Data to be edited by the user. int i, // One-based index (for compatibility with BASIC) *j; // Will be malloc'ed -- free it later. SomeOtherDataType t; // See p. 23 of req'ts doc for details. </code></pre> <p>I'm not completely satisfied with this, however, and would be interested to see additional solutions. What are yours?</p> <p><br><hr> <sup>1</sup> I'd be remiss if I didn't mention that the entire article is quoted <a href="http://www.codinghorror.com/blog/files/Atlantic%20Monthly%20-%20Broken%20Windows.htm" rel="nofollow">here</a>. Where's that $20 you owe me, Jeff? :-)</p> http://stackoverflow.com/questions/1419449/piping-to-process-with-c/1419453#1419453 1 Answer by Adam Liss for Piping to process with c++ Adam Liss 2009-09-14T02:30:05Z 2009-09-14T02:45:24Z <p>Yes, that's exactly what you do: read from <code>stdin</code> and write to <code>stdout</code>.</p> <p>One of the strokes of genius behind linux is the simplicity of redirecting input and output almost effortlessly, as long as your apps obey some very simple, basic rules. For example: send data to <code>stdout</code> and errors or informational messages to <code>stderr</code>. That makes it easy for a user to keep track of status, and you can still use your app to send data to a pipe.</p> <p>You can also redirect data (from <code>stdout</code>) and messages (from <code>stderr</code>) independently:</p> <pre><code>myapp | tail -n 5 &gt; myapp.data # Save the last 5 lines, display msgs myapp 2&gt; myapp.err | sort # Sort the output, send msgs to a file myapp 2&gt; /dev/null # Throw msgs away, display output myapp &gt; myapp.out 2&gt;&amp;1 # Send all output (incl. msgs) to a file </code></pre> <p>Redirection may be a bit confusing at first, but you'll find the time spent learning will be well worth it!</p> http://stackoverflow.com/questions/211378/hidden-features-of-bash/1416125#1416125 0 Answer by Adam Liss for Hidden features of Bash Adam Liss 2009-09-12T21:01:46Z 2009-09-12T21:01:46Z <h2>More magic key combinations:</h2> <ul> <li><p><kbd>Ctrl</kbd> + <kbd>r</kbd> begins a &ldquo;reverse incremental search&rdquo; through your command history. As you continue to type, it retrieves the most recent command that contains all the text you enter.</p></li> <li><p><kbd>Tab</kbd> completes the word you've typed so far if it's unambiguous.</p></li> <li><p><kbd>Tab</kbd> <kbd>Tab</kbd> lists all completions for the word you've typed so far.</p></li> <li><p><kbd>Alt</kbd> + <kbd>*</kbd> <em>inserts</em> all possible completions, which is particularly helpful, say, if you've just entered a potentially destructive command with wildcards:</p> <p><code>rm -r source/d*.c</code> <kbd>Alt</kbd> + <kbd>*</kbd><br> <code>rm -r source/delete_me.c source/do_not_delete_me.c</code></p></li> <li><p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>e</kbd> performs alias, history, and shell expansion on the current line. In other words, the current line is redisplayed as it will be processed by the shell:</p> <p><code>ls $HOME/tmp</code> <kbd>Ctrl</kbd> <kbd>Alt</kbd> + <kbd>e</kbd><br> <code>ls -N --color=tty -T 0 /home/cramey</code></p></li> </ul> http://stackoverflow.com/questions/211378/hidden-features-of-bash/1416093#1416093 3 Answer by Adam Liss for Hidden features of Bash Adam Liss 2009-09-12T20:43:23Z 2009-09-12T20:43:23Z <h2>Magic key combinations from the bash <code>man</code> pages:</h2> <ul> <li><p><kbd>Ctrl</kbd> + <kbd>a</kbd> and <kbd>Ctrl</kbd> + <kbd>e</kbd> move the cursor to the beginning and end of the current line, respectively.</p></li> <li><p><kbd>Ctrl</kbd> + <kbd>t</kbd> and <kbd>Alt</kbd> + <kbd>t</kbd> transpose the character and word before the cursor with the current one, then move the cursor forward.</p></li> <li><p><kbd>Alt</kbd> + <kbd>u</kbd> and <kbd>Alt</kbd> + <kbd>l</kbd> convert the current word (from the cursor to the end) to uppercase and lowercase.</p> <p><strong>Hint:</strong> Press <kbd>Alt</kbd> + <kbd>&ndash;</kbd> followed by either of these commands to convert the <em>beginning</em> of the current word. </p></li> </ul> <p><br></p> <h2>Bonus <code>man</code> tips:</h2> <ul> <li><p>While viewing <code>man</code> pages, use <kbd>/</kbd> to search for text within the pages. Use <kbd>n</kbd> to jump ahead to the next match or <kbd>N</kbd> for the previous match.</p></li> <li><p>Speed your search for a particular command or sub-section within the <code>man</code> pages by taking advantage of their formatting:</p> <p>o Instead of typing <kbd>/history expansion</kbd> to find that section, try <kbd>/^history</kbd>, using the caret (<code>^</code>) to find only lines that <em>begin</em> with "history."</p> <p>o Try <kbd>/ &nbsp; read</kbd>, with a few leading spaces, to search for that builtin command. Builtins are always indented in the <code>man</code> pages.</p></li> </ul> http://stackoverflow.com/questions/1810942/general-strategy-for-finding-the-cause-of-random-freezes/1811006#1811006 Comment by Adam Liss on General strategy for finding the cause of random freezes? Adam Liss 2009-12-09T13:16:58Z 2009-12-09T13:16:58Z The question was tagged &quot;language-agnostic&quot; so I didn't want to make any assumptions about the platform or tools. And despite all the bad press, you can go a long way with printf() and some cleverness. http://stackoverflow.com/questions/245742/examples-of-good-gotos-in-c-or-c/245763#245763 Comment by Adam Liss on Examples of good gotos in C or C++ Adam Liss 2009-12-06T23:59:57Z 2009-12-06T23:59:57Z If you created these 3 extra functions, you'd need to pass pointers/handles to the resources and files to be freed/closed. You'd probably make freeResourcesCloseFileQuit() call closeFileQuit(), which in turn would call quit(). Now you have 4 tightly coupled functions to maintain, and 3 of them will probably be called at most once: from the single function above. If you insist on avoiding goto, IMO, nested if() blocks have less overhead and are easier to read and maintain. What do you gain with 3 extra functions? http://stackoverflow.com/questions/1811646/ie7-smartcard-pin-prompt/1811649#1811649 Comment by Adam Liss on IE7 Smartcard PIN Prompt Adam Liss 2009-12-02T01:51:02Z 2009-12-02T01:51:02Z Funny, I think I'm about to run into the opposite problem: I'm building an embedded device that reads CACs using C, and I <i>want</i> the PIN to be cached. Perhaps the discussion at <a href="http://www.eggheadcafe.com/software/aspnet/31611074/cryptacquirecertificatepr.aspx" rel="nofollow">eggheadcafe.com/software/aspnet/&hellip;</a> will start you in the right direction. Otherwise, the card should re-prompt for the PIN if you try to access the private key; you may be able to do this by asking it to sign or decrypt a throw-away piece of data. http://stackoverflow.com/questions/1811646/ie7-smartcard-pin-prompt/1811649#1811649 Comment by Adam Liss on IE7 Smartcard PIN Prompt Adam Liss 2009-11-30T01:35:43Z 2009-11-30T01:35:43Z Right. Clearly you don't want to change the PIN; you just want to end the transaction so the card behaves as if you've just re-inserted it. Can you provide more details about the programming environment, language, and API you're using? You may also find helpful information on the OpenSC project site: <a href="http://www.opensc-project.org" rel="nofollow">opensc-project.org</a> http://stackoverflow.com/questions/1729034/one-line-if-or-for Comment by Adam Liss on One Line 'If' or 'For'... Adam Liss 2009-11-13T12:51:16Z 2009-11-13T12:51:16Z Not sure what you're looking for ... can you explain a bit more? http://stackoverflow.com/questions/1707399/redirection-to-a-strange-file-descriptor-no/1707448#1707448 Comment by Adam Liss on Redirection to a strange file descriptor no. Adam Liss 2009-11-10T12:08:30Z 2009-11-10T12:08:30Z +1 for a helpful, real-world example. Redirecting file descriptors is one of those features that can perform magic if you take the time to learn the nuances. http://stackoverflow.com/questions/1697935/text-pattern-processing-in-paragraph-with-unix-linux-utilities/1698090#1698090 Comment by Adam Liss on Text Pattern Processing in paragraph with unix linux utilities Adam Liss 2009-11-08T22:22:00Z 2009-11-08T22:22:00Z +1 for including debugs. You're hired! :-) http://stackoverflow.com/questions/1694804/tool-for-network-traffic-analysis-of-a-custom-protocol/1695032#1695032 Comment by Adam Liss on Tool for network traffic analysis of a custom protocol Adam Liss 2009-11-08T04:28:23Z 2009-11-08T04:28:23Z What exactly do you need to measure? Are you trying to separate the individual conversations? http://stackoverflow.com/questions/1355412/what-is-a-scalable-process-of-project-management-in-small-development-firms/1357239#1357239 Comment by Adam Liss on What is a scalable process of Project Management in Small Development Firms? Adam Liss 2009-11-07T13:09:16Z 2009-11-07T13:09:16Z +1 for iterative process design, and for pre-emptively addressing the resistance that usually hitchhikes on process improvement. I cringe a bit at the word &quot;install&quot; -- perhaps &quot;implement&quot; would make it clearer that the problem will be solved by the team, not the software. :-) http://stackoverflow.com/questions/1689933/debugging-high-cpu-usage/1692485#1692485 Comment by Adam Liss on Debugging high cpu usage Adam Liss 2009-11-07T12:45:59Z 2009-11-07T12:45:59Z +1 ... thanks for following up! http://stackoverflow.com/questions/1690670/c-return-pointer-question/1690699#1690699 Comment by Adam Liss on C return pointer question Adam Liss 2009-11-06T21:51:57Z 2009-11-06T21:51:57Z Ack - good catch! http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289150#289150 Comment by Adam Liss on What is the single hardest programming skill or concept you have learned? Adam Liss 2009-10-30T11:26:18Z 2009-10-30T11:26:18Z @sleske: Definitely. Sometimes you're lucky and can make significant improvements with well-contained or low-risk changes. But it's so tempting to &quot;just make it right&quot; -- at the peril of introducing subtle bugs and exposing hidden interdependencies that become horrible time sinks. http://stackoverflow.com/questions/242225/what-are-the-benefits-of-java/242250#242250 Comment by Adam Liss on What are the benefits of Java? Adam Liss 2009-10-28T12:39:21Z 2009-10-28T12:39:21Z @Ken Liu: Very true - so why not add some value to your comment by suggesting a few? http://stackoverflow.com/questions/1628386/normalise-orientation-between-0-and-360/1628400#1628400 Comment by Adam Liss on Normalise orientation between 0 and 360 Adam Liss 2009-10-27T02:10:39Z 2009-10-27T02:10:39Z Try with orientation = 359 and degrees = 359. http://stackoverflow.com/questions/1628311/array-initialisation/1628347#1628347 Comment by Adam Liss on array initialisation Adam Liss 2009-10-27T02:00:14Z 2009-10-27T02:00:14Z @Pavel Minaev: I'd say &quot;too general&quot; rather than &quot;incorrect&quot; -- good catch, nonetheless; updated to reflect your comment. Thanks!