Skip to content

Instantly share code, notes, and snippets.

View usoftglobal's full-sized avatar
🏠
Working from home

cjdad.eth usoftglobal

🏠
Working from home
View GitHub Profile
@usoftglobal
usoftglobal / install_zsh.sh
Last active August 8, 2024 14:45
install_zsh.sh
#!/bin/bash
# 安装 zsh
echo "Installing zsh..."
sudo apt update
sudo apt install zsh net-tools build-essential git -y
# 安装 oh-my-zsh
echo "Installing oh-my-zsh..."
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" || {
@usoftglobal
usoftglobal / STD3Des.java
Created September 1, 2016 12:07 — forked from forthxu/STD3Des.java
3des加密java版和php版
// javac test3.java
// java test3
import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESedeKeySpec;
import javax.crypto.spec.IvParameterSpec;