Add the ability to generate a files MD5sum.

This adds the ability to generate a files MD5sum in the ISO properties.
This uses polarssl to generate the MD5Sum.
This commit is contained in:
Ryan Houdek
2014-04-12 05:50:12 -05:00
parent b106dbc96e
commit a30a528dd1
2 changed files with 67 additions and 7 deletions

View File

@ -95,6 +95,8 @@ private:
wxTextCtrl *m_Revision;
wxTextCtrl *m_Date;
wxTextCtrl *m_FST;
wxTextCtrl *m_MD5Sum;
wxButton *m_MD5SumCompute;
wxArrayString arrayStringFor_Lang;
wxChoice *m_Lang;
wxTextCtrl *m_ShortName;
@ -154,6 +156,8 @@ private:
ID_REVISION,
ID_DATE,
ID_FST,
ID_MD5SUM,
ID_MD5SUMCOMPUTE,
ID_VERSION,
ID_LANG,
ID_SHORTNAME,
@ -176,6 +180,7 @@ private:
void OnClose(wxCloseEvent& event);
void OnCloseClick(wxCommandEvent& event);
void OnEditConfig(wxCommandEvent& event);
void OnComputeMD5Sum(wxCommandEvent& event);
void OnShowDefaultConfig(wxCommandEvent& event);
void ListSelectionChanged(wxCommandEvent& event);
void PatchButtonClicked(wxCommandEvent& event);