This is an automated email from the ASF dual-hosted git repository.

gary pushed a commit to branch release-1.8
in repository https://gitbox.apache.org/repos/asf/flink.git

commit eb58bf7113267da35b021a3682ca3966b74ddf84
Author: Gary Yao <[email protected]>
AuthorDate: Tue Feb 26 11:14:44 2019 +0100

    [FLINK-10585][tests, ssl] Re-create testing keystore and truststore
    
    Create new key so that IPv6 loopback address is included in subject 
alternative
    names section. Used the commands below to re-create the stores:
    
    keytool -genkeypair -alias flink.test -keystore test.keystore -keyalg RSA \
    -keysize 4096 -storetype PKCS12 -ext 
"SAN=dns:localhost,ip:127.0.0.1,ip:::1" \
    -dname "CN=Unknown, OU=Unknown, O=Unknown, L=Unknown, ST=Unknown, 
C=Unknown" \
    -storepass password
    
    keytool -exportcert -keystore test.keystore -alias flink.test -file 
test.cer \
    -storepass password
    
    keytool -importcert -keystore test.truststore -alias ca -storepass password 
\
    -file test.cer --noprompt
---
 flink-runtime/src/test/resources/local127.keystore   | Bin 2130 -> 4311 bytes
 flink-runtime/src/test/resources/local127.truststore | Bin 840 -> 1508 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/flink-runtime/src/test/resources/local127.keystore 
b/flink-runtime/src/test/resources/local127.keystore
index 1b3ca36..4992ac4 100644
Binary files a/flink-runtime/src/test/resources/local127.keystore and 
b/flink-runtime/src/test/resources/local127.keystore differ
diff --git a/flink-runtime/src/test/resources/local127.truststore 
b/flink-runtime/src/test/resources/local127.truststore
index 4a1da38..df4acf8 100644
Binary files a/flink-runtime/src/test/resources/local127.truststore and 
b/flink-runtime/src/test/resources/local127.truststore differ

Reply via email to