Remove EC_METHOD functions

Some appear not to be defined anywhere and they're not used anyway
This commit is contained in:
Steven Fackler 2016-11-13 22:14:10 +00:00
parent 82eb3c4f51
commit e9e58b27dc
1 changed files with 0 additions and 7 deletions

View File

@ -1394,13 +1394,6 @@ extern {
pub fn EC_KEY_check_key(key: *const EC_KEY) -> c_int; pub fn EC_KEY_check_key(key: *const EC_KEY) -> c_int;
pub fn EC_KEY_free(key: *mut EC_KEY); pub fn EC_KEY_free(key: *mut EC_KEY);
pub fn EC_GFp_simple_method() -> *const EC_METHOD;
pub fn EC_GFp_mont_method() -> *const EC_METHOD;
pub fn EC_GFp_nist_method() -> *const EC_METHOD;
pub fn EC_GFp_nistp224_method() -> *const EC_METHOD;
pub fn EC_GFp_nistp256_method() -> *const EC_METHOD;
pub fn EC_GFp_nistp521_method() -> *const EC_METHOD;
pub fn EC_GF2m_simple_method() -> *const EC_METHOD; pub fn EC_GF2m_simple_method() -> *const EC_METHOD;
pub fn EC_GROUP_new(meth: *const EC_METHOD) -> *mut EC_GROUP; pub fn EC_GROUP_new(meth: *const EC_METHOD) -> *mut EC_GROUP;