blob: d24caa63c96edce6dafa277bc67f6a0c155f7454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use crate::PhpMixed;
use indexmap::IndexMap;
pub const OPENSSL_ALGO_SHA384: i64 = 9;
pub const OPENSSL_VERSION_NUMBER: i64 = 0;
pub const OPENSSL_VERSION_TEXT: &str = "";
pub fn openssl_x509_parse(
_certificate: &str,
_short_names: bool,
) -> Option<IndexMap<String, PhpMixed>> {
todo!()
}
|