Skip to content

Instantly share code, notes, and snippets.

View shahzad1's full-sized avatar
💻
Working

Shahzad Akhtar shahzad1

💻
Working
View GitHub Profile
@shahzad1
shahzad1 / StringEncryption.java
Created October 15, 2020 07:06 — forked from kostiakoval/StringEncryption.java
Encrypted SHA1 string for android
package no.rocketfarm.festivalcore.util;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class StringEncryption {
private static String convertToHex(byte[] data) {
StringBuilder buf = new StringBuilder();