Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a7e1390 authored by Sergio Giro's avatar Sergio Giro
Browse files

javax.crypto.spec: update PBEParameterSpec to Java 8

Pulling upstream changes from OpenJDK version jdk8u60 for
PBEParameterSpec.

Added new constructor allowing an AlgorithmParameterSpec and the
corresponding getter getParameterSpec.

This CL finishes the port of this package.

Change-Id: I02d463285e185fcb4031a5266d2857b1530159b7
Test: make droid docs, vogar PBEParameterSpecTest
Bug: 29631070
parent 24e38ab3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -61018,7 +61018,9 @@ package javax.crypto.spec {
  public class PBEParameterSpec implements java.security.spec.AlgorithmParameterSpec {
    ctor public PBEParameterSpec(byte[], int);
    ctor public PBEParameterSpec(byte[], int, java.security.spec.AlgorithmParameterSpec);
    method public int getIterationCount();
    method public java.security.spec.AlgorithmParameterSpec getParameterSpec();
    method public byte[] getSalt();
  }
+2 −0
Original line number Diff line number Diff line
@@ -63636,7 +63636,9 @@ package javax.crypto.spec {
  public class PBEParameterSpec implements java.security.spec.AlgorithmParameterSpec {
    ctor public PBEParameterSpec(byte[], int);
    ctor public PBEParameterSpec(byte[], int, java.security.spec.AlgorithmParameterSpec);
    method public int getIterationCount();
    method public java.security.spec.AlgorithmParameterSpec getParameterSpec();
    method public byte[] getSalt();
  }