This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows 8 Pro Only Offline Activation RETAIL Keys [Retail Edition Only]: | |
slmgr.vbs -ipk 4NX96-C2K6G-XFD2G-9X4P9-4JMQH | |
slmgr.vbs -ipk 4NY9C-Q2VW8-84VH3-YPMDY-FF9T7 | |
slmgr.vbs -ipk 9FN3V-HDGGV-7F8K6-FVT9H-QPBQH | |
slmgr.vbs -ipk BKBGN-M2HWH-3MRQ6-WTJ9X-KP73H | |
slmgr.vbs -ipk BP4FX-DNGD9-P3FMR-PYR6Q-T6JXV | |
slmgr.vbs -ipk C37NF-QYM6Y-BVFCR-WMXGV-QPBQH | |
slmgr.vbs -ipk 3NM39-QTK29-YGY3C-TJ2BJ-K2BQH | |
slmgr.vbs -ipk 8B3N2-GWPXP-3VFP2-VX69Q-QRPKV |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.math.BigInteger; | |
import java.util.Arrays; | |
public class OpenHashMap { | |
class Entry { | |
String key; | |
String value; | |
public Entry(String key, String value) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.security.NoSuchAlgorithmException; | |
import java.security.SecureRandom; | |
import java.security.spec.InvalidKeySpecException; | |
import java.security.spec.KeySpec; | |
import java.util.Arrays; | |
import javax.crypto.SecretKeyFactory; | |
import javax.crypto.spec.PBEKeySpec; |