User sylvarking - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:42:31Zhttp://stackoverflow.com/feeds/user/3474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811634/java-io-read-and-write-lock/1811684#18116844Answer by sylvarking for java io read and write locksylvarking2009-11-28T05:34:13Z2009-11-28T05:34:13Z<p>You'll need to devise your own locking protocol to implement in the applications. Specifics depend on the underlying operating system, but in general, nothing will stop one process from reading a file even when another process is writing to it.</p>
<p>Java has a <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileLock.html" rel="nofollow"><code>FileLock</code></a> class that can be used to coordinate access to a file. However, you'll need to read the caveats carefully, especially those relating to the system-dependence of this feature. Testing the feature on the target operating system is extremely important.</p>
<p>A key concept of Java's <code>FileLock</code> is that it is only "advisory". Your process should be able to detect that another process holds a lock on a file, but your process can ignore it and do what it likes with the file, no restrictions.</p>
<p>The question is ambiguous whether multiple process will use the file, or merely separate threads within a single Java process. That's a <em>big</em> difference. If the problem requires only thread safety within a single process, a <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/locks/ReentrantReadWriteLock.html" rel="nofollow"><code>ReentrantReadWriteLock</code></a> can provide a robust, high performance solution, without any platform-specific pitfalls.</p>
http://stackoverflow.com/questions/1805518/replacing-all-non-alphanumeric-characters-with-empty-strings/1805527#18055271Answer by sylvarking for Replacing all non-alphanumeric characters with empty stringssylvarking2009-11-26T20:31:16Z2009-11-26T20:31:16Z<pre><code>return value.replaceAll("[^A-Za-z0-9 ]", "");
</code></pre>
<p>This will <em>leave</em> spaces intact. I assume that's what you want. Otherwise, remove the space from the regex.</p>
http://stackoverflow.com/questions/1804901/send-email-attachement-using-byte-with-java-mail/1804921#18049212Answer by sylvarking for Send Email Attachement using byte[] with Java-Mailsylvarking2009-11-26T17:35:17Z2009-11-26T17:35:17Z<p>Creating a <code>DataSource</code> is the right approach. You don't have to write your own, though. Just use the <a href="http://java.sun.com/products/javamail/javadocs/javax/mail/util/ByteArrayDataSource.html#ByteArrayDataSource%28byte%5B%5D,%20java.lang.String%29" rel="nofollow"><code>ByteArrayDataSource</code></a> from JavaMail.</p>
http://stackoverflow.com/questions/1800745/cac-smartcard-reauthenticate/1800827#18008270Answer by sylvarking for CAC Smartcard Reauthenticate sylvarking2009-11-26T00:08:27Z2009-11-26T00:08:27Z<p>I believe that the prompt for PIN is controlled by the user's card reader software preferences (usually time-based). If that's the case, the server cannot reliably require a re-entry of the PIN, or even tell if the PIN was entered during the course of the current request.</p>
http://stackoverflow.com/questions/1793026/client-server-socket-security/1793059#17930593Answer by sylvarking for Client Server socket securitysylvarking2009-11-24T21:32:56Z2009-11-24T21:39:12Z<p>Your colleagues are naïve.</p>
<p>One high-profile attack occurred at <a href="http://www.usatoday.com/money/perfi/credit/2009-01-20-heartland-credit-card-security-breach%5FN.htm" rel="nofollow">Heartland Payment Systems</a>, a credit card processor that one would expect to be extremely careful about security. Assuming that internal communications behind their firewall were safe, they failed to use something like SSL to ensure their privacy. Hackers were able to eavesdrop on that traffic, and extract sensitive data from the system.</p>
<p>Here is <a href="http://www.bankinfosecurity.com/articles.php?art%5Fid=1168" rel="nofollow">another story</a> with a little more description of the attack itself:</p>
<blockquote>
<p>Described by Baldwin as "quite a
sophisticated attack," he says it has
been challenging to discover exactly
how it happened. The forensic teams
found that hackers "were grabbing
numbers with sniffer malware as it
went over our processing platform,"
Baldwin says. "Unfortunately, we are
confident that card holder names and
numbers were exposed." Data, including
card transactions sent over
Heartland's internal processing
platform, is sent unencrypted, he
explains, "As the transaction is being
processed, it has to be in unencrypted
form to get the authorization request
out."</p>
</blockquote>
http://stackoverflow.com/questions/1792639/java-substring-is-dropping-first-character-if-zero/1792662#179266213Answer by sylvarking for Java substring is dropping first character if zerosylvarking2009-11-24T20:19:23Z2009-11-24T20:37:17Z<p>The <code>String.substring()</code> methods do not examine the content of the substring, so what you are describing is likely a bug in your code. You can post the minimal amount of code necessary to reproduce the problem if you'd like some help troubleshooting.</p>
<p><hr></p>
<p>Given the code and information given in the update and comments, this is what I'd expect:</p>
<pre><code>String actnum = "03KL352"; /* Maybe actnum is actually entered via a JSP. */
System.out.println(actnum); /* Prints 03KL352 */
String ccode = actnum.substring(1,2); /* Assign characters [1,2) to ccode. */
System.out.println(ccode); /* Prints 3 */
</code></pre>
<p>Remember, Java's string indexes are zero-based. The first character is at index 0, the next at index 1. Also, the <code>substring</code> method takes two character indexes; the first is <em>included</em> in the new substring, the second is <em>not</em>—it is the index of the character after the last character in the new substring. So, the length of the new substring is <code>end - start</code>.</p>
http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server/1788047#17880471Answer by sylvarking for How can I have multiple SSL certificates for a Java serversylvarking2009-11-24T05:42:05Z2009-11-24T06:36:52Z<p>You won't be able to use the default <code>SSLServerSocketFactory</code>.</p>
<p>Instead, <a href="http://java.sun.com/javase/6/docs/api/javax/net/ssl/SSLContext.html#init%28javax.net.ssl.KeyManager%5B%5D,%20javax.net.ssl.TrustManager%5B%5D,%20java.security.SecureRandom%29" rel="nofollow">initialize</a> a different <code>SSLContext</code> for each site, each using a <code>KeyManagerFactory</code> <a href="http://java.sun.com/javase/6/docs/api/javax/net/ssl/KeyManagerFactory.html#init%28java.security.KeyStore,%20char%5B%5D%29" rel="nofollow">configured</a> with a key store containing a key entry with correct server certificate. (After initializing the <code>KeyManagerFactory</code>, pass its <a href="http://java.sun.com/javase/6/docs/api/javax/net/ssl/KeyManagerFactory.html#getKeyManagers%28%29" rel="nofollow">key managers</a> to the <code>init</code> method of the <code>SSLContext</code>.)</p>
<p>After the <code>SSLContext</code> is initalized, <a href="http://java.sun.com/javase/6/docs/api/javax/net/ssl/SSLContext.html#getServerSocketFactory%28%29" rel="nofollow">get its <code>SSLServerSocketFactory</code></a>, and use that to create your listener.</p>
<pre><code>KeyStore identity = KeyStore.getInstance(KeyStore.getDefaultType());
/* Load the keystore (a different one for each site). */
...
SSLContext ctx = SSLContext.getInstance("TLS");
KeyManagerFactory kmf =
KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
kmf.init(identity, password);
ctx.init(kmf.getKeyManagers(), null, null);
SSLServerSocketFactory factory = ctx.getServerSocketFactory();
ServerSocket server = factory.createSocket(port);
</code></pre>
http://stackoverflow.com/questions/1785555/how-should-i-generate-an-initialization-vector/1785814#17858140Answer by sylvarking for How should I generate an initialization vector?sylvarking2009-11-23T20:44:31Z2009-11-23T20:44:31Z<p>It depends on the mode in which you are using your cipher. If you are using CBC, bytes from a <code>SecureRandom</code> are the easiest, and probably the most secure…as long as your RNG is good.</p>
<p>Most Java providers will generate the required parameters automatically, but in order for you to figure out what was chosen, you need to understand the cipher and mode. For example, if you are using a mode that requires an IV, you'd do something like this:</p>
<pre><code>cipher.init(Cipher.ENCRYPT_MODE, secret);
IvParameterSpec spec =
cipher.getParameters().getParameterSpec(IvParameterSpec.class);
byte[] iv = spec.getIV();
</code></pre>
<p>This allows the provider to choose a suitable method for generating the IV itself. But if you were to use the same method on cipher using ECB mode, it would fail.</p>
<p>Using a counter mode obviously requires great care to avoid re-use of the counter.</p>
http://stackoverflow.com/questions/1779675/how-would-you-store-encrypted-information-in-public-dvcs-repository/1780220#17802201Answer by sylvarking for How would you store encrypted information in public DVCS repository?sylvarking2009-11-22T22:23:11Z2009-11-22T22:23:11Z<p>We encrypt passwords in the configuration files, and the application uses a key entered interactively at runtime to decrypt them. Because of the configuration system we use, only the configuration parser needed modification; the application code itself required no changes.</p>
<p>The main drawback is that we use a public-key algorithm, so that anyone can encrypt a value for the configuration file, but only authorized users can decrypt them. This makes the encrypted values much larger (we use 2048-bit RSA key, and encode with Base-64) and kind of ugly in the configuration files.</p>
<p>We are always careful to encode metadata along with the encrypted value. This identifies the encryption key, the algorithms used, and the parameters needed for the algorithms. That way, we can gracefully change keys or algorithms, migrating over some period of time.</p>
http://stackoverflow.com/questions/1777309/alternative-to-base64-encoding/1777411#17774111Answer by sylvarking for Alternative to Base64 encodingsylvarking2009-11-22T01:09:44Z2009-11-22T01:09:44Z<p>There is also a Base-85 encoding, or Ascii85. It's like base-64, but instead of 24 bits encoded with 4 "base-64 digits", 32 bits are encoded with 5 "base-85 digits".</p>
<p>The advantage is that it is a little more compact: for every 96 bits of binary data encoded, one character of encoded output is saved. The drawback is that more characters are used as "digits", so when base-85–encoded in other formats like URLs, conflicts are more likely.</p>
http://stackoverflow.com/questions/1774876/password-hashing-at-client-browser/1775826#17758260Answer by sylvarking for Password hashing at client browsersylvarking2009-11-21T15:47:38Z2009-11-21T15:47:38Z<p>Why would you bother doing this? Effectively, the password hash has become the password and a a man-in-the-middle who intercepts the hash can use it to authenticate and perform any action as the user. On the other hand, if you don't believe in the man-in-the-middle, why not just send the password itself?</p>
http://stackoverflow.com/questions/1774469/how-does-the-rsa-private-key-passphrase-work-under-the-hood/1774552#17745520Answer by sylvarking for How does the RSA private key passphrase work under the hood?sylvarking2009-11-21T04:50:40Z2009-11-21T04:50:40Z<p>Private keys stored on general-purpose file systems (as opposed to tamperproof, special-purpose hardware tokens) could be easily stolen if not protected. File system permissions might seem sufficient, but they can often be bypassed, especially if an attacker has physical access to the machine.</p>
<p>A strong symmetric cipher, keyed with a good password, helps prevent this. A good RSA private key is too long to remember (for me, anyway), but far smaller symmetric keys can provide the same level of security. A relatively short, symmetric key stored in one's brain is used to protect a large private key stored on disk.</p>
http://stackoverflow.com/questions/1772928/how-to-store-rmi-connections-in-java/1773166#17731661Answer by sylvarking for How to store rmi connections in java?sylvarking2009-11-20T20:51:32Z2009-11-20T20:51:32Z<p>If you can't modify <code>A</code>, then <code>B</code> needs to be responsible for blocking until <code>C</code> produces a result, and returning that result synchronous as the result of the RMI method. </p>
<p>So it seems the problem is more about how <code>C</code> can reply to <code>B</code> (or "Bs", since it sounds like you have a cluster of these) than how to respond to <code>A</code>.</p>
<p>Normally, synchronous calls like this are simulated via JMS by <a href="http://java.sun.com/products/jms/javadoc-102a/javax/jms/QueueSession.html#createTemporaryQueue%28%29" rel="nofollow">creating a temporary queue,</a> and <a href="http://java.sun.com/products/jms/javadoc-102a/javax/jms/Message.html#setJMSReplyTo%28javax.jms.Destination%29" rel="nofollow">specifying that as the reply address</a> on the message. So, <code>B</code> would create a temporary queue, then block on that queue until it received the result back from <code>C</code>, then return the content of the reply to <code>A</code>.</p>
<p>I might not understand your circumstances fully, but it seems like any other approach would require modifications to the <code>A</code>–<code>B</code> interface.</p>
http://stackoverflow.com/questions/1770974/best-practice-to-send-secure-information-over-e-mail/1771015#17710156Answer by sylvarking for Best practice to send secure information over e-mail?sylvarking2009-11-20T15:01:33Z2009-11-20T15:56:07Z<p>The best course of action would be to run the other way, fast. Redesign your application so that it doesn't enable identity theft.</p>
<p>You can use S/MIME or PGP to send secure email to most non-Web email clients, but it takes a lot of set up either way: the recipient has to have a certificate, and you have to get the right certificate for each recipient.</p>
<p><hr></p>
<p>As an example of a better design, consider one where the recipient is mailed a notification, and then returns to the web site to view the information after authenticating securely over SSL.</p>
<p>While it helps to reduce the complexity of the system needed by the recipient, the bigger win is that it strengthens control over the distribution and retention of the sensitive information, and aids in auditing the access to that information. Sending someone an email makes it that much easier for them to store it unsafely, forever, or forward it to unauthorized recipients.</p>
http://stackoverflow.com/questions/1770942/why-it-returns-null-password/1770969#17709690Answer by sylvarking for why it returns null password???sylvarking2009-11-20T14:57:14Z2009-11-20T14:57:14Z<p>If you call the constructor with no arguments (like <code>sys = new SystemManagement();</code>), the new object's <code>password</code> member is never set. That only happens if you call the constructor that takes a <code>String</code>—which you ignore.</p>
http://stackoverflow.com/questions/1766695/self-signed-ssl-link-not-working/1766726#17667261Answer by sylvarking for Self-Signed SSL Link not workingsylvarking2009-11-19T21:34:58Z2009-11-19T21:34:58Z<p>It's hard to say without looking at the packets. If I had to hazard a guess, it would be that on the second request, Firefox is trying to resume the SSL session, and for some reason, the server doesn't like that. On the next request, Firefox doesn't try to resume, and it succeeds again. Maybe?</p>
http://stackoverflow.com/questions/1761659/please-explain-this-line-of-code/1761690#17616903Answer by sylvarking for please explain this line of codesylvarking2009-11-19T08:09:32Z2009-11-19T08:09:32Z<p>It's converting the first argument of a Java program—passed as a <code>String[]</code> to the <code>main</code> method—to a character array.</p>
<p>Most password-oriented APIs use <code>char[]</code> so that after calling the method, the caller can "zero-ize" the array, effectively erasing the password from memory. Since Java <code>String</code> instances are immutable, they can't be zero-ized. However, in practice, it's hard to get user-input without using a <code>String</code>. All web frameworks will convert passwords submitted in a web request to a <code>String</code>. Swing password widgets and Java 6's <code>Console</code> class will input <code>char[]</code>, however.</p>
http://stackoverflow.com/questions/1761482/aes-encryption-password-salt-not-resolved/1761523#17615231Answer by sylvarking for AES encryption - password , salt not resolved ?sylvarking2009-11-19T07:33:59Z2009-11-19T07:33:59Z<p>Declare and initialize the <code>salt</code> and <code>password</code> variables.</p>
<p>For example, if you pass the password and salt (as a 16-digit hexadecimal number) as the first two arguments to the program when you launch it, it might look like this:</p>
<pre><code>char[] password = args[0].toCharArray();
byte[] salt = new byte[8];
for (int i = 0; i < 8; ++i) {
salt[i] = (byte) Integer.parseInt(args[1].substring(i * 2, i * 2 + 2), 16);
}
</code></pre>
<p>Cryptography is extremely difficult in itself. Trying to get familiar with it <em>and</em> a new language at the same is only compounding the problem.</p>
http://stackoverflow.com/questions/1761365/why-should-aes-key-be-generated-randomly/1761466#17614660Answer by sylvarking for why should aes key be generated randomly ?sylvarking2009-11-19T07:17:58Z2009-11-19T07:17:58Z<p>The code you show doesn't generate a random key. The generated key is a function of the password, and will be exactly the same every time a given password is used.</p>
<p>In this case, the user should be asked to enter the <code>password</code>. That password is used as the seed for an algorithm that deterministically produces a string of bytes which can be used as a cryptographic key.</p>
<p>There is something that should be chosen randomly for each operation: the initialization vector used for ciphers in CBC mode. This produces different ciphertexts even when the same key is used to encrypt the same plaintext.</p>
http://stackoverflow.com/questions/1761200/java-reflection-not-working-on-my-system-working-for-team-members/1761284#17612842Answer by sylvarking for Java Reflection not working on my system - working for team memberssylvarking2009-11-19T06:30:14Z2009-11-19T06:30:14Z<p><code>PATH</code> and <code>JAVA_HOME</code> won't help. <code>PATH</code> only affects dynamically-linked libraries ("native code"). <code>JAVA_HOME</code> is a scripting variable that happens to be used by some Java-based utilities like Ant and Tomcat; it means nothing to the Java runtime itself.</p>
<p>You need to be investigating the <em>classpath,</em> which should be specified by the <code>-classpath</code> option to the <code>java</code> command, in the <code>Build Path</code> in your Eclipse project properties, or in the <code>Class-Path</code> attribute of the main section of a JAR file if you're launching <code>java</code> with the <code>-jar</code> option.</p>
<p>From within your code, you should be able to list the contents of your classpath by examining the system property, <code>"java.class.path"</code></p>
<pre><code>System.out.println(System.getProperty("java.class.path"));
</code></pre>
http://stackoverflow.com/questions/1761155/whats-happening-in-the-line-of-code/1761228#17612280Answer by sylvarking for whats happening in the line of codesylvarking2009-11-19T06:12:48Z2009-11-19T06:12:48Z<p>"PBKDF2" is a function defined in <a href="http://www.faqs.org/rfcs/rfc2898.html" rel="nofollow">PKCS #5</a> used to derive key material from a password.</p>
<p>PBKDF2 requires a pseudo-random function, and in this case, a message authentication code based on the SHA-1 hash is used—"HmacSHA1".</p>
<p>So, this line is creating a factory. The factory might produce <code>SecretKey</code> objects that can be used to key a <code>Cipher</code> instance for a symmetric encryption algorithm or a <code>Mac</code> algorithm. Or, it can be used to make a "transparent" specification of an existing <code>SecretKey</code>.</p>
<p>One important thing to note about PBKDF2 is that it doesn't produce secret keys for any particular algorithm. It's a deterministic way to generate key "material" from a seed (a password), in such a way that the seed cannot be recovered from the generated key. Once the required number of bytes are generated, they are usually wrapped in a <code>SecretKeySpec</code> with the correct algorithm name.</p>
<p>You can see other standard names for secret key factories in the Java Crypto Architecture <a href="http://java.sun.com/javase/6/docs/technotes/guides/security/StandardNames.html#SecretKeyFactory" rel="nofollow">Standard Names</a> documentation.</p>
http://stackoverflow.com/questions/1760766/how-to-convert-non-supported-character-to-html-entity-in-java/1760910#17609101Answer by sylvarking for How to convert non-supported character to html entity in Javasylvarking2009-11-19T04:37:44Z2009-11-19T04:42:51Z<p>I'm not positive I understand the question, but something like this might help:</p>
<pre><code>import java.nio.charset.CharsetEncoder;
...
StringBuilder buf = new StringBuilder(c.length());
CharsetEncoder enc = Charset.forName("gb2312");
for (int idx = 0; idx < c.length(); ++idx) {
char ch = c.charAt(idx);
if (enc.canEncode(ch))
buf.append(ch);
else {
buf.append("&#");
buf.append((int) ch);
buf.append(';');
}
}
String result = buf.toString();
</code></pre>
<p>This code is not robust, because it doesn't handle characters beyond the Basic Multilingual Plane. But iterating over code points in the <code>String</code>, and using the <code>canEncode(CharSequence)</code> method of the <code>CharsetEncoder</code>, you should be able to handle any character. </p>
http://stackoverflow.com/questions/1760785/invalid-aes-key-length-error/1760868#17608682Answer by sylvarking for invalid AES key length errorsylvarking2009-11-19T04:27:34Z2009-11-19T04:27:34Z<p>Use a <code>SecretKeyFactory</code> to derive key bytes from a password.You can see a detailed example <a href="http://stackoverflow.com/questions/992019/java-256bit-aes-encryption/992413#992413">here.</a> However, I recommend using a 128-bit key instead of the AES-256 key shown in that example.</p>
<p>The next problem that you will run into is that you have not specified a padding scheme. Unless your messages are a multiple of 16 bytes (the AES block size), that will raise an error. Use PKCS5Padding as shown in the example. </p>
<p>Use of CBC mode on the cipher will require a new initialization vector to be chosen for each message. This unique IV must be sent along with the encrypted message to the recipient.</p>
<p>Trying to perform cryptography without a thorough understanding of the concepts raised here (and a lot more) is likely to result in an insecure system.</p>
http://stackoverflow.com/questions/1760361/illegalmonitorstateexception-raised-with-explicit-lock-condition/1760385#17603852Answer by sylvarking for IllegalMonitorStateException raised with explicit lock/conditionsylvarking2009-11-19T01:40:42Z2009-11-19T01:40:42Z<p>Use the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/locks/Condition.html#signal%28%29" rel="nofollow"><code>signal()</code></a> method on <code>Condition</code> in place of <code>notify()</code>.</p>
<p>While you can successfully <code>synchronize</code> on a <code>Condition</code> instance, and then use the traditional <code>wait()</code> and <code>notify()</code> methods, you might as well just use an <code>Object</code> if you aren't using the extended capabilities of the concurrent classes. </p>
<p><code>Condition</code> was intended to be used with the equivalent methods <code>await()</code> and <code>signal()</code>, and their enhanced variants.</p>
http://stackoverflow.com/questions/1759943/sending-encrypted-email/1760081#17600811Answer by sylvarking for sending encrypted emailsylvarking2009-11-19T00:20:44Z2009-11-19T00:20:44Z<p>Use S/MIME, so that you don't need a specialized client on the receiving end. </p>
<p>Not sure if iPhone has an app for that, though.</p>
http://stackoverflow.com/questions/1759549/java-generics-multiple-generic-parameters/1759573#17595731Answer by sylvarking for Java generics: multiple generic parameters?sylvarking2009-11-18T22:21:45Z2009-11-18T22:21:45Z<p>You can declare multiple type variables on a type or method. For example, using type parameters on the method:</p>
<pre><code><P, Q> int f(Set<P>, Set<Q>) {
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1759002/generate-random-number-histogram-using-java/1759165#17591650Answer by sylvarking for Generate random number histogram using javasylvarking2009-11-18T21:21:22Z2009-11-18T21:21:22Z<p>Another point to consider is that your histogram will be a flat, uniform distribution, not a normal distribution like you show in your question.</p>
http://stackoverflow.com/questions/1756801/how-to-sign-a-custom-jce-security-provider/1757186#17571861Answer by sylvarking for How to sign a custom JCE security providersylvarking2009-11-18T16:19:42Z2009-11-18T16:19:42Z<p>The process is described in the document, <a href="http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/HowToImplAProvider.html#Step6" rel="nofollow">"How to Implement a Provider."</a></p>
<p>It involves emailing Sun some information (including the CSR you generated for your signing key), then faxing a confirmation document. Getting your signed certificate back from Sun can take a week or more, so plan ahead. I'm not sure if recent layoffs at Sun may have impacted this turn-around time.</p>
<p>You only need to sign your provider if it provides services that are restricted by some (repressive) governments, like <code>Cipher</code>. I assume with the message you're getting, that you are trying to provide some of those services.</p>
<p>If you provide any of these services, <em>there's no way around it:</em> You need a code-signing certificate issued by Sun. (One from IBM might work too; if I recall correctly, their code-signing CA is supported, but I don't know anything about their issuing process.)</p>
http://stackoverflow.com/questions/1751275/are-there-any-plans-for-java-to-add-generic-collection-covariance/1751329#17513292Answer by sylvarking for Are there any plans for Java to add generic collection covariance?sylvarking2009-11-17T19:54:45Z2009-11-17T19:54:45Z<p>In order to support covariance in the way you expected, Java needs "reified" generics. A reified <code>List<ConcreteObject></code> would know that its elements need to be instances of <code>ConcreteObject</code>. So if a caller with a reference to that list declared as an <code>List<IObject></code> tried to add <code>AnAlternateImplObject</code>, the operation would fail at runtime with an exception—just as the analogous case with arrays throws an <code>ArrayStoreException</code> today.</p>
<p>At the time generics were added, no one could figure out a way to reify types without breaking compatibility with existing code. "Bounded" generic types, using wildcards, were provided instead. However, if I recall correctly, a compatible method for reification has been devised since then, so this change may be back on the table for the distant future (Java 8?).</p>
<p>In the meantime, the solution you've used is a customary way to handle this case.</p>
http://stackoverflow.com/questions/1750736/is-there-any-point-encrypting-passwords-with-more-than-md5/1750821#17508212Answer by sylvarking for Is there any point encrypting passwords with more than md5?sylvarking2009-11-17T18:27:39Z2009-11-17T18:27:39Z<p>Using a stronger algorithm is probably worth it.</p>
<p>First of all, most users of MD5 are probably using a library that has been tested and reviewed. A lot of these libraries are no-cost and open source. And most of these will also provide SHA-1, and maybe even the SHA-2 algorithms.</p>
<p>So, the "cost" of using SHA-1 or SHA-256 is likely to be very small.</p>
<p>On the other hand, what is the value? Even though an application might not contain much data of significance, and a compromise of the password table is likely to include the rest of the data anyway, it helps to remember that most passwords are used for multiple applications. Even though the user might not care about your application getting hacked, they will be upset if that gives the hackers access to the password they also use for banking.</p>
<p>I think that it's worth upgrading to a better hash algorithm.</p>
<p>Also, the motivation for ditching MD5 in favor of SHA-1 or SHA-256 would be that MD5 is "broken." There are shortcuts to find hash collisions, so that brute-force isn't required. To slow down a brute-force attack, you also need to use a key-strengthening technique. Usually, this means repeating the hash operation a few thousand times. You'll also need to use a random salt to thwart pre-computed lookup tables, like rainbow tables.</p>
<p>Of course, algorithms like the key derivation algorithms in PKCS #5 spell out in detail a secure way to "hash" passwords for authentication tables. Using a standard like that will give you access to high-quality analysis of your chosen technique, and alert you to potential vulnerabilities. You are also more likely to find implementations that have already been widely reviewed and tested.</p>
http://stackoverflow.com/questions/1813055/java-util-random-peculiarityComment by sylvarking on java.util.Random peculiaritysylvarking2009-11-28T17:07:45Z2009-11-28T17:07:45ZWorks as expected for me. Java 1.6 u17. Post a complete class, including imports, that reproduces the problem.http://stackoverflow.com/questions/1812572/how-to-handle-java-jobs-synchronously/1812579#1812579Comment by sylvarking on How to handle Java "jobs" synchronously?sylvarking2009-11-28T16:43:07Z2009-11-28T16:43:07ZSpecifically, set the rejection policy to <code>AbortPolicy</code> (<a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.AbortPolicy.html" rel="nofollow">java.sun.com/javase/6/…</a>)http://stackoverflow.com/questions/1811634/java-io-read-and-write-lock/1811684#1811684Comment by sylvarking on java io read and write locksylvarking2009-11-28T05:55:48Z2009-11-28T05:55:48ZWhat do you mean by "work"? It will create a lock, but other processes need to actively "look" for the lock too. Since it's an advisory lock, in general it won't prevent another process from using the file in an inconsistent way. It <i>will</i> allow another process to determine that the file is locked and it should wait to work on the file.http://stackoverflow.com/questions/1800745/cac-smartcard-reauthenticate/1800827#1800827Comment by sylvarking on CAC Smartcard Reauthenticate sylvarking2009-11-27T22:44:24Z2009-11-27T22:44:24ZThat's right. If you administer the workstations, you might be able to configure all of the card reader software to prompt for PIN more often. For example, I've used ActivClient as the card reader software. It's what actually pops up the dialog to ask for the PIN, and there's a setting to control how often a user needs to re-enter it.http://stackoverflow.com/questions/1805518/replacing-all-non-alphanumeric-characters-with-empty-strings/1805533#1805533Comment by sylvarking on Replacing all non-alphanumeric characters with empty stringssylvarking2009-11-26T20:35:09Z2009-11-26T20:35:09ZWith underscores, <code>return value.replaceAll("\\W", "");</code>http://stackoverflow.com/questions/1793979/registering-multiple-keystores-in-jvmComment by sylvarking on Registering multiple keystores in JVMsylvarking2009-11-25T01:15:35Z2009-11-25T01:15:35ZIf you think your issue is different that this, please clarify: <a href="http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server/1788047#1788047" rel="nofollow" title="how can i have multiple ssl certificates for a java server">stackoverflow.com/questions/1788031/…</a>http://stackoverflow.com/questions/1793552/set-a-default-digital-certificateComment by sylvarking on Set a Default Digital Certificatesylvarking2009-11-24T23:06:14Z2009-11-24T23:06:14ZNot programming related. And browser dependent.http://stackoverflow.com/questions/1792948/whats-a-good-simple-2d-rectangles-only-collision-detection-algorithm/1792997#1792997Comment by sylvarking on What's a good, simple, 2D rectangles-only collision detection algorithm?sylvarking2009-11-24T21:25:19Z2009-11-24T21:25:19ZBen, what Alvin is looking for here is the algorithm to decide which rectangles to test, not a fast way to test a pair.http://stackoverflow.com/questions/1792948/whats-a-good-simple-2d-rectangles-only-collision-detection-algorithmComment by sylvarking on What's a good, simple, 2D rectangles-only collision detection algorithm?sylvarking2009-11-24T21:22:38Z2009-11-24T21:22:38ZCan we assume also that you are only looking at rectangles aligned with "the" axes, whatever those are?http://stackoverflow.com/questions/1792134/a-colleague-said-dont-use-java-util-vector-anymore-why-not/1792153#1792153Comment by sylvarking on A colleague said don't use java.util.Vector anymore - why not?sylvarking2009-11-24T19:06:59Z2009-11-24T19:06:59ZGood point about rarely being "good enough for actual consistency." If a collection is visible to multiple threads, you should probably be using (and thoroughly understanding) the appropriate collection from <code>java.util.concurrent</code>. And if its not accessible to multiple threads, an <code>ArrayList</code> is cheaper. Eliminate grey areas where a collection "might be" used by multiple threads: you can't make a collection intrinsically thread-safe; how its clients use it is always a factor.http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-serverComment by sylvarking on How can I have multiple SSL certificates for a Java serversylvarking2009-11-24T06:43:12Z2009-11-24T06:43:12ZYou can implement your own KeyManager pretty easily, but your idea of building a new, temporary KeyStore in memory using an alias into the "master" key store is a good one.http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server/1788047#1788047Comment by sylvarking on How can I have multiple SSL certificates for a Java serversylvarking2009-11-24T06:36:28Z2009-11-24T06:36:28ZI skipped a step; I'll fix that up. Yes, you could do that from one key store. The mapping from alias to site would be part of your application config.http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server/1788047#1788047Comment by sylvarking on How can I have multiple SSL certificates for a Java serversylvarking2009-11-24T06:16:07Z2009-11-24T06:16:07ZIt could vary by provider, but Sun's TLS will support SSL clients. If you are concerned about a variety of client configurations, install the OpenSSL package and use its <code>openssl s_client</code> with the options you want to test.http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server/1788047#1788047Comment by sylvarking on How can I have multiple SSL certificates for a Java serversylvarking2009-11-24T05:55:23Z2009-11-24T05:55:23ZThey can all be stock JSSE. Your main task is to build a distinct key store for each site. See my update for an example. I didn't use an IDE so some of the methods names might be off.http://stackoverflow.com/questions/1786709/website-uses-an-invalid-security-certificate-error-code-sslerrorbadcertdomaComment by sylvarking on website uses an invalid security certificate (Error code: ssl_error_bad_cert_domain)sylvarking2009-11-23T23:23:46Z2009-11-23T23:23:46ZAssign another IP address to that box. Have one IP dedicated to each hostname.