File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -217,6 +217,7 @@ impl<T> PKeyRef<T> {
217
217
/// Returns the BigNum value associated with the given key name.
218
218
#[ corresponds( EVP_PKEY_get_bn_param ) ]
219
219
#[ cfg( ossl300) ]
220
+ #[ allow( dead_code) ]
220
221
pub ( crate ) fn get_bn_param ( & self , key : & str ) -> Result < & BigNumRef , ErrorStack > {
221
222
let key = CString :: new ( key) . unwrap ( ) ;
222
223
let mut value = ptr:: null_mut ( ) ;
@@ -233,6 +234,7 @@ impl<T> PKeyRef<T> {
233
234
/// Returns the String value associated with the given key name.
234
235
#[ corresponds( EVP_PKEY_get_utf8_string_param ) ]
235
236
#[ cfg( ossl300) ]
237
+ #[ allow( dead_code) ]
236
238
pub ( crate ) fn get_utf8_string_param ( & self , key : & str ) -> Result < String , ErrorStack > {
237
239
const VALUE_LEN : usize = 4096 ;
238
240
let key = CString :: new ( key) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments