Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View zhangchunsheng's full-sized avatar
🎯
Focusing

一路向北 zhangchunsheng

🎯
Focusing
View GitHub Profile
@zhangchunsheng
zhangchunsheng / hello world
Created January 11, 2014 16:38
hello world
hello world
@zhangchunsheng
zhangchunsheng / gist:c7cc5f8a2ecec1619d5bc7c9dd689c66
Created April 20, 2018 00:11 — forked from davidnunez/gist:1404789
list all installed packages in android adb shell
pm list packages -f
https://tb-m.luomor.com/ 自己开发的,欢迎大家体验,请使用手机浏览
@zhangchunsheng
zhangchunsheng / encryption.java
Created February 9, 2018 04:53 — forked from itarato/encryption.java
Java AES CBC encryption example
package com.company;
import javax.crypto.Cipher;
import javax.crypto.Mac;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.security.MessageDigest;
import java.security.SecureRandom;
public class Main {