Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 67654 invoked from network); 19 Dec 2006 07:18:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Dec 2006 07:18:44 -0000 Received: (qmail 42151 invoked by uid 500); 19 Dec 2006 07:18:51 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 42130 invoked by uid 500); 19 Dec 2006 07:18:51 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 42121 invoked by uid 99); 19 Dec 2006 07:18:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Dec 2006 23:18:51 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Dec 2006 23:18:43 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 20086714289 for ; Mon, 18 Dec 2006 23:18:23 -0800 (PST) Message-ID: <17241044.1166512703128.JavaMail.jira@brutus> Date: Mon, 18 Dec 2006 23:18:23 -0800 (PST) From: "Stepan Mishura (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-2724) [classlib][security]AlgorithmParameters.init(byte[] params, String spec) throws NullPointerException while spec is Null on Harmony while not on RI. In-Reply-To: <33341447.1166160381062.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ http://issues.apache.org/jira/browse/HARMONY-2724?page=comments#action_12459555 ] Stepan Mishura commented on HARMONY-2724: ----------------------------------------- Leo, I did the same as for HARMONY-2733, HARMONY-2680 - I added test case which shows that null value should be passed to SPI provider's method. I can not say that there is no difference - the spec. doesn't say it explicitly. Also a guide that describes how to implement a security crypto provider says: " ... All API methods of an API object are declared "final", and their implementations invoke the corresponding SPI methods of the encapsulated SPI object ... " By analogy, we have engine class (AlgorithmParameters) and corresponding abstract SPI class (AlgorithmParametersSpi), so AlgorithmParameters.init(byte[]) = invokes => AlgorithmParametersSpi.engineInit(byte[]) AlgorithmParameters.init(byte[],String) = invokes => AlgorithmParametersSpi.engineInit(byte[],String) Thanks, Stepan. > [classlib][security]AlgorithmParameters.init(byte[] params, String spec) throws NullPointerException while spec is Null on Harmony while not on RI. > --------------------------------------------------------------------------------------------------------------------------------------------------- > > Key: HARMONY-2724 > URL: http://issues.apache.org/jira/browse/HARMONY-2724 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Leo Li > Assigned To: Stepan Mishura > > Here is a testcase: > public void test_algorithmParameters_init() throws Exception > { > AlgorithmParameters params = AlgorithmParameters.getInstance("DSA"); > params.init(new DSAParameterSpec(BigInteger.ONE, BigInteger.ONE, > BigInteger.ONE)); > byte[] encoded = params.getEncoded(); > AlgorithmParameters params2 = AlgorithmParameters.getInstance("DSA"); > params2.init(encoded, "ASN.1"); > byte[] encodedAfter2 = params2.getEncoded(); > > //Regression Test > AlgorithmParameters params3 = AlgorithmParameters.getInstance("DSA"); > params3.init(encoded, null); > byte[] encodedAfter3 = params3.getEncoded(); > assertTrue("param encoded is different", Arrays.equals(encodedAfter2, > encodedAfter3)); > } > RI passes. > Harmony fails. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira