jdk/src/share/classes/sun/security/ec/ECParameters.java
changeset 13661 7c894680910a
parent 12436 1dc3d95b3bc9
child 13813 ca3a2b5731d0
--- a/jdk/src/share/classes/sun/security/ec/ECParameters.java	Thu Aug 30 12:55:40 2012 +0100
+++ b/jdk/src/share/classes/sun/security/ec/ECParameters.java	Thu Aug 30 14:40:57 2012 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -276,8 +276,8 @@
     static AlgorithmParameters getAlgorithmParameters(ECParameterSpec spec)
             throws InvalidKeyException {
         try {
-            AlgorithmParameters params = AlgorithmParameters.getInstance
-                                        ("EC", ECKeyFactory.ecInternalProvider);
+            AlgorithmParameters params =
+                AlgorithmParameters.getInstance("EC", "SunEC");
             params.init(spec);
             return params;
         } catch (GeneralSecurityException e) {