René Buffat
René Buffat
@reaperhulk Unfortunately not. I updated the script and output in the original post that wraps the ca certificate in a pkcs12.PKCS12Certificate before exporting. When listing the certificates of the truststore...
@reaperhulk Thanks for looking into it. When querying the generated trust stores using openssl the following output is shown: ``` openssl pkcs12 -info -in keytool.truststore.p12: MAC: sha1, Iteration 100000 MAC...
The OpenSSL command utility seems not to export this functionality. I'm not sure yet for the openssl API, but it is the first time I'm looking at it. PKCS12_create contains...
@reaperhulk Much appreciated that you checked! Should we close this issue or leave it open until eventually OpenSSL API supports this?
@piksel yes. The check interval `--interval 60` we intend to use would hit the docker hub rate limit quite fast. The different context is to differentiate between images that are...
A working minimal example would be very helpful.
I just noticed the KML driver is not registered in the supported list of drivers: https://github.com/Toblerity/Fiona/blob/1.8.13.post1/fiona/drvsupport.py#L80 This does not necessarily mean that this driver does not work with Fiona. However,...
@wheeled For the above-mentioned reasons, I hope you understand that Fiona does not support KML. However, it is still strange that data can be written without error, but just the...
I found the issue: https://github.com/Toblerity/Fiona/blob/master/fiona/ogrext.pyx#L1119-L1122 Here it is assumed that the ordering of the schema retrieved by gdal is the same as originally specified. However, the KML driver seems to...
The real issue is, that the KML driver automatically adds fields: https://github.com/OSGeo/gdal/blob/master/gdal/ogr/ogrsf_frmts/kml/ogrkmllayer.cpp#L116-L120 https://github.com/Toblerity/Fiona/blob/master/fiona/ogrext.pyx#L1119-L1122 assumes that only the fields in the schema provided to Fiona exist. The same issue is also...