react-native-pinch icon indicating copy to clipboard operation
react-native-pinch copied to clipboard

Change the certification format on iOS from 'cer' to 'der'

Open ramosdevgrid opened this issue 7 years ago • 4 comments

According to the documentation https://developer.apple.com/documentation/security/1396073-seccertificatecreatewithdata?language=objc The method 'SecCertificateCreateWithData' only accepts '.der' format. If used with '.cer' a null value is returned. To transform a '.cer' to '.der', just call: 'openssl x509 -outform der -in filename.cer -out filename.der'

ramosdevgrid avatar Aug 10 '17 13:08 ramosdevgrid