Re: [External] : Re: PEM API github repo

2024-05-31 Thread Karl Scheibelhofer
Hi Tonay, in https://github.com/KarlScheibelhofer/jdk/tree/pem-keystore-2-pem-api you can find a PEM keystore implementation with tests. It is based on the latest https://github.com/ascarpino/jdk/tree/pem branch. I made these two modifications ( https://github.com/KarlScheibelhofer/jdk/commit/4d8

Re: [External] : Re: PEM API github repo

2024-05-31 Thread Karl Scheibelhofer
Hi Tony, today, I had a look at the recent sources of the PEM API implementation - i.e. https://github.com/ascarpino/jdk/commits/pem It seems that the PEM API Tests are out of sync. They fail with JT Harness : Tests that failed java/security/PEM/PEMDecoderTest.java: Testing PEM decodings java/s

Re: [External] : Re: PEM API github repo

2024-05-28 Thread Anthony Scarpino
On 5/25/24 8:22 AM, Karl Scheibelhofer wrote: Hi Tony, in https://github.com/KarlScheibelhofer/jdk/tree/pem-keystore-2-pem-api you can find a PEM keystore implementation with tests. It is based on the latest https://github.com/ascarpino/jdk/tree/pem branch. I made these two modifications

Re: [External] : Re: PEM API github repo

2024-05-28 Thread Anthony Scarpino
Hi, PEM didn't make JDK 23 as there were further comments about the API. It hasn't been updated because of that. Hopefully in June I will be updating the github repo. Tony On 5/18/24 3:55 AM, Karl Scheibelhofer wrote: Hi Tony, today, I had a look at the recent sources of the PEM API imp

Re: [External] : Re: PEM API github repo

2024-03-19 Thread Karl Scheibelhofer
Hi Tony, find my replies inline... On Mon, Mar 11, 2024 at 6:13 AM Anthony Scarpino wrote: > > > > On Mar 9, 2024, at 8:09 AM, Karl Scheibelhofer > wrote: > >  > ... try again from from my subscribed mail account... > >> Hi Tony, >> >> in my jdk fork, I created a branch named pem-feedback-kar

Re: [External] : Re: PEM API github repo

2024-03-12 Thread Karl Scheibelhofer
... try again from from my subscribed mail account... Hi Tony, > > in my jdk fork, I created a branch named pem-feedback-karl. > > https://github.com/KarlScheibelhofer/jdk/tree/pem-feedback-karl > > It is based on the pem branch of your jdk fork. > In this pem-feedback-karl branch, I did some clea

Re: [External] : Re: PEM API github repo

2024-03-10 Thread Anthony Scarpino
On Mar 9, 2024, at 8:09 AM, Karl Scheibelhofer wrote:  ... try again from from my subscribed mail account... Hi Tony, in my jdk fork, I created a branch named pem-feedback-karl. https://github.com/KarlScheibelhofer/jdk/tree/pem-feedback-karl

Re: [External] : Re: PEM API github repo

2024-01-25 Thread Anthony Scarpino
On 1/25/24 9:20 AM, Daniel Jeliński wrote: Hi Tony, Thanks for the links! The API looks very promising. Out of curiosity, why aren't you using the Base64 MIME encoder/decoder? They are supposed to produce/remove the newline characters. I can look it over again. I had inconsistencies during

Re: PEM API github repo

2024-01-25 Thread Daniel Jeliński
Hi Tony, Thanks for the links! The API looks very promising. Out of curiosity, why aren't you using the Base64 MIME encoder/decoder? They are supposed to produce/remove the newline characters. The relationship between the byte[] and String data should be specified. Base64 explicitly specifies that

PEM API github repo

2024-01-24 Thread Anthony Scarpino
Hi, The following github link is to the PEM API as it is written in the draft JEP (https://openjdk.org/jeps/8300911). There has been a few changes since the original posting. https://github.com/ascarpino/jdk/tree/pem The Encoder and PEMEncoder to now return byte[] for the encode() method.