產生license用於驗證認證__java

來源:互聯網
上載者:User

產生認證放到程式中

FileInputStream fis = new FileInputStream("outputLicense.xml");//輸入FileOutputStream fos = new FileOutputStream("license.enc");//輸出Key key = new EncryptionDecryption().getKey(PASS_PHRASE.getBytes());Cipher cipher = Cipher.getInstance("AES");cipher.init(Cipher.ENCRYPT_MODE, key);cipher.doFinal(PASS_PHRASE.getBytes());//將fis加密儲存到fosCipherOutputStream cos = new CipherOutputStream(fos, cipher);byte[] bytes = new byte[1024];while (true) {int rc = fis.read(bytes);if (rc == -1) {break;}cos.write(bytes, 0, rc);}fis.close();cos.flush();cos.close();fos.close();

登陸或者啟動時檢驗認證

 Key key = new EncryptionDecryption().getKey(PASS_PHRASE.getBytes());            Cipher cipher = Cipher.getInstance("AES");//加密方法            cipher.init(Cipher.DECRYPT_MODE, key);            InputStream is = new FileInputStream(PATH+"license.enc");//加密後的license檔案            CipherInputStream cis = new CipherInputStream(is, cipher);            int offset = 0;            byte[] bytes = new byte[2048];            while (true)            {                int rc = cis.read(bytes, offset, bytes.length - offset);                if (rc == -1)                {                    break;                }                offset += rc;            }            is.close();            cis.close();            //讀入到bean中            Properties licenseProps = new Properties();            licenseProps.loadFromXML(new ByteArrayInputStream(bytes, 0, offset));            license = new License(licenseProps);


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.