android获取签名sha1值

/**

* 获取签名sha1值

*

* @param context

* @return

*/

public static StringgetSha1(Context context) {

String res ="";

    ArrayList mlist =getSignInfo(context, SHA1);

    if (mlist !=null && mlist.size() !=0) {

res = mlist.get(0);

    }

return res;

}

你可能感兴趣的:(android获取签名sha1值)