美文网首页
android获取签名sha1值

android获取签名sha1值

作者: XiaoXred | 来源:发表于2020-11-02 19:35 被阅读0次

    /**

    * 获取签名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值

          本文链接:https://www.haomeiwen.com/subject/aoamvktx.html