Lines Matching +full:libressl +full:- +full:version
1 // Licensed under the Apache License, Version 2.0 (the "License");
5 // http://www.apache.org/licenses/LICENSE-2.0
14 //! Build and version information.
36 /// OPENSSL_VERSION_NUMBER is a numeric release version identifier:
48 pub fn number() -> i64 { in number()
52 /// The text variant of the version number and the release date. For example, "OpenSSL 0.9.5a 1 Apr…
54 pub fn version() -> &'static str { in version() function
65 pub fn c_flags() -> &'static str { in c_flags()
75 pub fn built_on() -> &'static str { in built_on()
85 pub fn platform() -> &'static str { in platform()
95 pub fn dir() -> &'static str { in dir()
108 println!("Version: '{}'", version()); in test_versions()
114 #[cfg(not(any(libressl, boringssl)))] in test_versions()
115 fn expected_name() -> &'static str { in test_versions()
118 #[cfg(libressl)] in test_versions()
119 fn expected_name() -> &'static str { in test_versions()
120 "LibreSSL" in test_versions()
123 fn expected_name() -> &'static str { in test_versions()
128 assert!(version().starts_with(expected_name())); in test_versions()