hasnain-db opened a new pull request, #43163:
URL: https://github.com/apache/spark/pull/43163

   ### What changes were proposed in this pull request?
   
   This PR introduces test keys for SSL functionality. They keys were generated 
using something like the following:
   
   ```
   openssl genpkey -algorithm RSA -out key.pem -hexseed deadbeef
   openssl pkcs8 -topk8 -in key.pem -out key.pem.out
   openssl req -new -key key.pem -out csr.csr -days 3650 -subj 
"/CN=test/ST=California/L=San Francisco/OU=Org1/O=Org2/C=US"
   openssl x509 -req -in csr.csr -signkey key.pem -out certchain.pem -days 3650
   rm key.pem csr.csr
   mv key.pem.enc key.pem
   ```
   
   And then copied to all the relevant folders. I also copied over the keystore 
and trustore files (did not regenerate those).
   
   ### Why are the changes needed?
   
   We need these test files to run tests using PEM keys for SSL connections.
   
   ### Does this PR introduce _any_ user-facing change?
   
   No
   
   ### How was this patch tested?
   
   These test files will be used by follow up PRs. This was tested as part of 
https://github.com/apache/spark/pull/42685, whic is being split.
   
   
   ### Was this patch authored or co-authored using generative AI tooling?
   
   No
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to