On Fri, 7 Jun 2024 01:14:39 GMT, Francisco Ferrari Bihurriet
wrote:
>> Hi,
>>
>> I would like to propose an implementation to support AES CBC with Ciphertext
>> Stealing (CTS) in SunPKCS11, according to what has been specified in
>> [JDK-8330843 CSR](https://bugs.openjdk.org/browse/JDK-833084
On Thu, 6 Jun 2024 22:21:57 GMT, Martin Balao wrote:
>> src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Cipher.java
>> line 1169:
>>
>>> 1167: }
>>> 1168: if (ciphertextArr != null) {
>>> 1169: ciphertextBuf = ByteBuffer.wrap(ciphertextArr);
>>
>> Can w
On Fri, 7 Jun 2024 01:08:40 GMT, Martin Balao wrote:
>> test/jdk/sun/security/pkcs11/Cipher/TestCipherTextStealingMultipart.java
>> line 139:
>>
>>> 137: byte [] outArray = new byte[cipher.getOutputSize(0) + outOfs];
>>> 138: cipher.doFinal(outArray, outOfs);
>>> 139: ac
On Thu, 6 Jun 2024 15:45:54 GMT, Fernando Guallini
wrote:
>> As highlighted in the bug description, The test
>> **security/Security/SynchronizedAccess.java** have some issues:
>>
>> 1. it needs to implement the sigalg, otherwise it throws
>> java.security.NoSuchAlgorithmException . Even thoug
> Hi,
>
> I would like to propose an implementation to support AES CBC with Ciphertext
> Stealing (CTS) in SunPKCS11, according to what has been specified in
> [JDK-8330843 CSR](https://bugs.openjdk.org/browse/JDK-8330843).
>
> What follows are implementation notes that describe the most releva
On Fri, 7 Jun 2024 00:39:50 GMT, Valerie Peng wrote:
>> Francisco Ferrari Bihurriet has updated the pull request incrementally with
>> one additional commit since the last revision:
>>
>> Apply code-review suggestion
>>
>> Co-authored-by: Francisco Ferrari
>> Co-authored-by: Martin Ba
On Wed, 5 Jun 2024 20:19:25 GMT, Francisco Ferrari Bihurriet
wrote:
>> Hi,
>>
>> I would like to propose an implementation to support AES CBC with Ciphertext
>> Stealing (CTS) in SunPKCS11, according to what has been specified in
>> [JDK-8330843 CSR](https://bugs.openjdk.org/browse/JDK-833084
> Hi,
>
> I would like to propose an implementation to support AES CBC with Ciphertext
> Stealing (CTS) in SunPKCS11, according to what has been specified in
> [JDK-8330843 CSR](https://bugs.openjdk.org/browse/JDK-8330843).
>
> What follows are implementation notes that describe the most releva
On Thu, 6 Jun 2024 22:22:06 GMT, Valerie Peng wrote:
>> Francisco Ferrari Bihurriet has updated the pull request incrementally with
>> one additional commit since the last revision:
>>
>> Apply code-review suggestion
>>
>> Co-authored-by: Francisco Ferrari
>> Co-authored-by: Martin Ba
On 6/5/24 2:51 AM, Osipov, Michael wrote:
On 2024-05-31 21:38, Jonathan Gibbons wrote:
Michael,
There is no `element-list` file for any version of JDK before JDK 9.
Before JDK 9, the appropriate information was in the `package-list`
file. In JDK 9, with the introduction of modules, the format
On Thu, 6 Jun 2024 21:18:04 GMT, Valerie Peng wrote:
>> Francisco Ferrari Bihurriet has updated the pull request incrementally with
>> one additional commit since the last revision:
>>
>> Apply code-review suggestion
>>
>> Co-authored-by: Francisco Ferrari
>> Co-authored-by: Martin Ba
On Wed, 5 Jun 2024 20:19:25 GMT, Francisco Ferrari Bihurriet
wrote:
>> Hi,
>>
>> I would like to propose an implementation to support AES CBC with Ciphertext
>> Stealing (CTS) in SunPKCS11, according to what has been specified in
>> [JDK-8330843 CSR](https://bugs.openjdk.org/browse/JDK-833084
On Wed, 5 Jun 2024 20:19:25 GMT, Francisco Ferrari Bihurriet
wrote:
>> Hi,
>>
>> I would like to propose an implementation to support AES CBC with Ciphertext
>> Stealing (CTS) in SunPKCS11, according to what has been specified in
>> [JDK-8330843 CSR](https://bugs.openjdk.org/browse/JDK-833084
On Tue, 4 Jun 2024 02:32:31 GMT, Mark Powers wrote:
> https://bugs.openjdk.org/browse/JDK-864
src/java.base/share/classes/com/sun/crypto/provider/AESKeyWrap.java line 121:
> 119: @Override
> 120: int encrypt(byte[] pt, int ptOfs, int ptLen, byte[] ct, int ctOfs) {
> 121: thr
On Wed, 5 Jun 2024 23:08:57 GMT, Valerie Peng wrote:
> The CSR is quite lengthy and some wordings may be more suitable for another
> section, so I made some adjustments. In addition, I made some minor wording
> changes to the specification section to be more align with the existing
> guide. Co
On Tue, 4 Jun 2024 07:47:46 GMT, SendaoYan wrote:
> Hi all,
> This PR several extra empty spaces and extra empty lines in several
> Makefiles. It's trivial fix, no risk.
>
> Thanks.
Changes requested by liach (Author).
test/jdk/java/rmi/reliability/benchmark/bench/rmi/Makefile line 1:
> 1:
> As highlighted in the bug description, The test
> **security/Security/SynchronizedAccess.java** have some issues:
>
> 1. it needs to implement the sigalg, otherwise it throws
> java.security.NoSuchAlgorithmException . Even though it does not fail as it
> catches the exception, it never reache
On Wed, 5 Jun 2024 23:48:56 GMT, Anthony Scarpino wrote:
>> test/jdk/javax/net/ssl/templates/TLSBase.java line 101:
>>
>>> 99: if (!empty) {
>>> 100: fis = new FileInputStream(System.getProperty("test.src",
>>> "./") +
>>> 101: "/" + pathToStores + "/" + keyS
On Thu, 6 Jun 2024 13:13:00 GMT, Fernando Guallini
wrote:
>> As highlighted in the bug description, The test
>> **security/Security/SynchronizedAccess.java** have some issues:
>>
>> 1. it needs to implement the sigalg, otherwise it throws
>> java.security.NoSuchAlgorithmException . Even thoug
> As highlighted in the bug description, The test
> **security/Security/SynchronizedAccess.java** have some issues:
>
> 1. it needs to implement the sigalg, otherwise it throws
> java.security.NoSuchAlgorithmException . Even though it does not fail as it
> catches the exception, it never reache
On Thu, 6 Jun 2024 11:25:39 GMT, Matthew Donovan wrote:
>> Fernando Guallini has updated the pull request with a new target base due to
>> a merge or a rebase. The incremental webrev excludes the unrelated changes
>> brought in by the merge/rebase. The pull request contains three additional
>>
On Mon, 3 Jun 2024 09:54:16 GMT, Fernando Guallini
wrote:
>> As highlighted in the bug description, The test
>> **security/Security/SynchronizedAccess.java** have some issues:
>>
>> 1. it needs to implement the sigalg, otherwise it throws
>> java.security.NoSuchAlgorithmException . Even thoug
22 matches
Mail list logo