Skip to content

Instantly share code, notes, and snippets.

View Pro-Bithub's full-sized avatar
:octocat:
Focusing

Hatem-ghozzi Pro-Bithub

:octocat:
Focusing
View GitHub Profile
@destan
destan / ParseRSAKeys.java
Last active October 28, 2024 07:07
Parse RSA public and private key pair from string in Java
import java.io.IOException;
import java.net.URISyntaxException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.KeyFactory;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;
import java.security.interfaces.RSAPublicKey;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.PKCS8EncodedKeySpec;
@cxubrix
cxubrix / EncryptionUtil.java
Created December 17, 2012 08:25
Simple encrypt/decrypt util for url parameters
package lv.org.substance.crypt
import java.security.spec.AlgorithmParameterSpec;
import java.security.spec.KeySpec;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.PBEKeySpec;
import javax.crypto.spec.PBEParameterSpec;