一個(gè)循環(huán),x*temp=2048(即是y)
卡若網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)公司2013年開創(chuàng)至今到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。
然后x值不斷+1,相除后得出的結(jié)果就是temp(一個(gè)中間變量),
if(y % x == 0)這段是確保了偶數(shù),不會(huì)除基數(shù)
然后中間變量+x小于 a(本次x+1的值)+ b(本次乘積的令一個(gè)值)
然后就賦值a = x;
b = temp;
最后不符合x y; 了,就退出循環(huán),然后就得出最小值了,
因?yàn)樵谘h(huán)過程中,a,b值是通過中間值變量temp不斷在變化的
22點(diǎn)24分準(zhǔn)時(shí)推送,第一時(shí)間送達(dá)
編輯:技術(shù)君 | 來源:youerning
上一篇:
正文
前言
用 Python 寫安卓 APP 肯定不是最好的選擇,目前用Java和 kotlin 寫的居多,但是肯定也是一個(gè)很偷懶的選擇,而且實(shí)在不想學(xué)習(xí) Java,再者,就編程而言已經(jīng)會(huì)的就 Python與Golang(注:Python,Golang水平都一般),那么久Google了一下Python 寫安卓的 APP 的可能性,還真行。
既然要寫個(gè)APP,那么總得要有個(gè)想法吧。其實(shí)想做兩個(gè)APP來著,一個(gè)是自己寫著好玩的,一個(gè)是關(guān)于運(yùn)維的。關(guān)于運(yùn)維的APP,設(shè)計(jì)應(yīng)該如下
可能長(zhǎng)這樣
然后設(shè)計(jì)應(yīng)該是這樣。
如果覺得可行的話,評(píng)論留言一下你覺得應(yīng)該寫進(jìn)這個(gè)APP的運(yùn)維常用命令吧^_^,筆者暫時(shí)想到的是top,free -m,df –h,uptime,iftop,iotop,如果有什么好的想法就狠狠的砸過來吧,筆者到時(shí)應(yīng)該也會(huì)把這個(gè)寫成一個(gè)項(xiàng)目放到github上,大家一起用嘛,開源才是王道,哈哈。
開發(fā)安卓APP
我們使用kivy開發(fā)安卓APP,Kivy是一套專門用于跨平臺(tái)快速應(yīng)用開發(fā)的開源框架,使用Python和Cython編寫,對(duì)于多點(diǎn)觸控有著非常良好的支持,不僅能讓開發(fā)者快速完成簡(jiǎn)潔的交互原型設(shè)計(jì),還支持代碼重用和部署,絕對(duì)是一款頗讓人驚艷的NUI框架。
因?yàn)榭缙脚_(tái)的,所以只寫一遍代碼,就可以同時(shí)生成安卓及IOS的APP,很酷吧。
本文會(huì)帶大家寫一個(gè)Hello world并瞧一瞧 Python 版的2048的代碼
kivy安裝
環(huán)境說明:筆者在用的是Python2.7.10
這里僅介紹windows平臺(tái)安裝
所有平臺(tái)參考:
更新pip,setuptools
python -m pip install --upgrade pip wheel setuptools
然后是安裝所需要的依賴
python -m pip install docutils pygmentspypiwin32 kivy.deps.sdl2 kivy.deps.glew \
kivy.deps.gstreamer --extra-index-url
值得注意的是,上面的安卓需要訪問Google,所以請(qǐng)自備梯子,而且kivy.deps.gstreamer這個(gè)包比較大(95MB),可以單獨(dú)本地安裝,
然后就是安裝kivy了
python -m pip install kivy
至此,安裝就已經(jīng)完畢了,值得注意的是64位系統(tǒng)沒有開啟虛擬化支持,在導(dǎo)入kivy的時(shí)候會(huì)報(bào)錯(cuò),如果是64位系統(tǒng)就設(shè)置一下機(jī)器的BIOS,開啟虛擬化支持吧。
注:這里只是kivy的運(yùn)行環(huán)境,這樣我就能直接在windows機(jī)器上直接調(diào)試了,怎么將代碼編譯成APK文件我們會(huì)在后面講到。
如果kivy在python中應(yīng)該就能導(dǎo)入了。
按照世界慣例,我們”hello”一下吧。
新建一個(gè).py文件
from kivy.app import Appfrom kivy.uix.button importButton
class TestApp(App):
def build(self):
return Button(text='Hello,kivy')
TestApp().run()
運(yùn)行
然后會(huì)彈出一個(gè)框,大概如下,點(diǎn)擊”hello,kivy”會(huì)變顏色
點(diǎn)擊窗口并按“F1”會(huì)這個(gè)窗口的一些屬性
然后我們回過頭看一看代碼。
##導(dǎo)入App,然后讓TestApp這個(gè)類繼承
from kivy.app import App##導(dǎo)入一個(gè)Button,運(yùn)維有這個(gè)button,當(dāng)你點(diǎn)擊的時(shí)候才會(huì)有所反應(yīng)
from kivy.uix.button
importButton
###定義類,名字必須是xxxAppclass TestApp(App):
###build一個(gè)Button
def build(self):
###返回一個(gè)Button,文字內(nèi)容是“Hello,kivy”
return Button(text='Hello,kivy')
##運(yùn)行,因?yàn)槔^承了App,所以才有的run這個(gè)方法TestApp().run()
上面就是我們的Hello了
在windows上運(yùn)行當(dāng)然沒有什么太大的意義,怎么在安卓手機(jī)上運(yùn)行才是我們想要的,
這時(shí)我們需要一個(gè)編譯環(huán)境。
官方說明的環(huán)境,如下:
You’ll need:
A linux computer or a virtual machine
Java
Python 2.7 (not 2.6.)
Jinja2 (python module)
Apache ant
Android SDK
雖然官方提供了一個(gè)似乎還不錯(cuò)的虛擬機(jī)鏡像,但是還是有很多內(nèi)容需要翻出去,所以筆者在這里提供相對(duì)而言更加完善的鏡像
下載地址:
注:virtualbox,vmware需自行下載
root密碼:kivy
默認(rèn)使用賬戶kivy,密碼:kivy123
當(dāng)然你也可以下載官方鏡像,因?yàn)榈谝淮尉幾g需要去國(guó)外下一大堆東西,所以請(qǐng)自行去下載。
Virtual Machine
A Virtual Machine with Android SDK and NDK and all otherpre-requisites pre installed to ease apk generation:
Kivy Buildozer VM
Or select the Torrent
在筆者提供的鏡像里,桌面上有一個(gè)dev_and,只要將上面寫的代碼,放入這個(gè)文件夾即可(當(dāng)然也可以在其他目錄,后面會(huì)講到)。
在公眾號(hào)Python人工智能技術(shù)后臺(tái)回復(fù)“面試”,獲取騰訊Python面試題和答案。
cd Desktop/dev_and/
初始化會(huì)在當(dāng)前目錄生成一個(gè)buildozer.spec文件 用于配置生成的apk相關(guān)信息
buildozer init
###修改buildozer.spec文件
vi buildozer.spec
至少修改下面三項(xiàng)
# (str) Title of your applicationtitle = helloworld
# (str) Package namepackage.name = helloapp
# (str) Package domain (needed for android/ios packaging)package.domain = youer.com
然后注釋
# (str) Application versioning (method 1)#version.regex = __version__ = ['"](.*)['"]#version.filename = %(source.dir)s/main.py
下面這行改為非注釋
version = 1.2.0
最后我們生成我們需要的apk文件
buildozer -v android debug
buildozer.spec更詳細(xì)的相關(guān)參數(shù)配置參考:
buildozer命令會(huì)在當(dāng)前文件夾創(chuàng)建一個(gè)bin,該文件夾里面有我們想要的apk文件
helloapp-1.2.0-debug.apk
helloapp-1.2.0-debug.apk
安裝以后是這樣:
話說在編譯的時(shí)候可能出現(xiàn)空間不足的情況,根據(jù)虛擬機(jī)的不同(vmware或virtualbox)自行擴(kuò)容吧。
最后我們來瞧瞧簡(jiǎn)易版Python開發(fā)的2048這個(gè)游戲的源代碼。
代碼:
先看效果圖:
試玩了一下,還是蠻流暢的,有興趣的可以下載玩一下
下載地址:
這個(gè)游戲代碼雖然不長(zhǎng),但是還是蠻占篇幅的,所以簡(jiǎn)要的說明一下流程。
主要由三部分組成,一是素材,圖片音頻之類的文件,二是Python代碼,三是kv文件,這個(gè)kv文件有點(diǎn)像 html 中的css。
Python代碼的文件名一般命名為 main.py
然后一定有一個(gè)叫做 XXXApp 的類,并繼承 App。
比如該類叫做GameApp,那么該目錄下的kv文件則必須為Game,如上圖所示,如果不是,那么kv文件中的一些設(shè)定就不會(huì)生效。
比如設(shè)定一個(gè)標(biāo)簽
Label:
id: time
text: 'xxxx'
font_size: 60
id為time,text文本內(nèi)容為'xxxx',然后字體為60
好吧,點(diǎn)到為止吧,不過似乎什么都沒點(diǎn)到~~~
你還有什么想要補(bǔ)充的嗎?
你在看嗎?一起成長(zhǎng)
轉(zhuǎn)換文件成為二進(jìn)制數(shù)據(jù)并保存的Java代碼:
取出數(shù)據(jù)并還原文件到本地的java代碼:
[java]?view plain?copy//讀取數(shù)據(jù)庫(kù)二進(jìn)制文件
public?void?readerJpg()?throws?SQLException
{
connection=connectionManager.getconn();//自己連接自己的數(shù)據(jù)庫(kù)
String?sqlString="select?images?from?save_image?where?id=4";//從數(shù)據(jù)庫(kù)中讀出要還原文件的二進(jìn)制碼,這里我讀的是自己的數(shù)據(jù)庫(kù)id為4的文件
File?file=new?File("E:\\1.jpg");//本地生成的文件
if(!file.exists())
{
try?{
file.createNewFile();
}?catch?(Exception?e)?{
e.printStackTrace();
}
}
try?{
byte[]?Buffer?=?new?byte[4096*5];
statement=connection.prepareStatement(sqlString);
resultSet?=?statement.executeQuery();
if(resultSet.next())
{
FileOutputStream?outputStream?=?new?FileOutputStream(file);
InputStream?iStream?=?resultSet.getBinaryStream("images");//去字段用getBinaryStream()
int?size=0;
while((size=iStream.read(Buffer))!=-1)
{
System.out.println(size);
outputStream.write(Buffer,0,size);
}
}
}?catch?(Exception?e)?{
e.printStackTrace();
}
}
//在我電腦運(yùn)行沒問題,把E:/EKI.txt傳送到D:/EKI.txt你可以換成其它文件
//先運(yùn)行Server,然后client,共三個(gè)class有問題QQ23400262
package ch.socket.file;
import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;
public class Server extends Thread {
public static int port = 6789;
public static String host = "127.0.0.1";
private static ServerSocket server = null;
public void run() {
if (server == null) {
try {
// 1、新建ServerSocket實(shí)例
server = new ServerSocket(port);
} catch (IOException e) {
e.printStackTrace();
}
}
System.out.println("服務(wù)器啟動(dòng)...");
while (true) {
try {
// 2、訪問ServerSocket實(shí)例的accept方法取得一個(gè)客戶端Socket對(duì)象
Socket client = server.accept();
if (client == null)
continue;
new SocketConnection(client, "D:\\").start();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
public static void main(String[] args) {
new Server().start();
}
}
package ch.socket.file;
import java.io.*;
import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;
public class Client {
private Socket client;
private boolean connected;
public boolean isConnected() {
return connected;
}
public void setConnected(boolean connected) {
this.connected = connected;
}
public Client(String host, int port) {
try {
// 1、新建Socket對(duì)象
client = new Socket(host, port);
System.out.println("服務(wù)器連接成功!");
this.connected = true;
} catch (UnknownHostException e) {
this.connected = false;
close();
} catch (IOException e) {
System.out.println("服務(wù)器連接失??!");
this.connected = false;
close();
}
}
/**
* 將文件內(nèi)容發(fā)送出去
*
* @param filepath
* 文件的全路徑名
*/
public void sendFile(String filepath) {
DataOutputStream out = null;
DataInputStream reader = null;
try {
if (client == null)
return;
File file = new File(filepath);
reader = new DataInputStream(new BufferedInputStream(
new FileInputStream(file)));
// 2、將文件內(nèi)容寫到Socket的輸出流中
out = new DataOutputStream(client.getOutputStream());
out.writeUTF(file.getName()); // 附帶文件名
int bufferSize = 2048; // 2K
byte[] buf = new byte[bufferSize];
int read = 0;
while ((read = reader.read(buf)) != -1) {
out.write(buf, 0, read);
}
out.flush();
} catch (IOException ex) {
ex.printStackTrace();
close();
} finally {
try {
reader.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**
* 關(guān)閉Socket
*/
public void close() {
if (client != null) {
try {
client.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
Client client = new Client(Server.host, Server.port);
if (client.isConnected()) {
client.sendFile("E:\\EKI.txt");
client.close();
}
}
}
package ch.socket.file;
import java.net.Socket;
import java.io.*;
public class SocketConnection extends Thread{
private Socket client;
private String filepath;
public SocketConnection(Socket client, String filepath){
this.client = client;
this.filepath = filepath;
}
public void run(){
if(client == null) return;
DataInputStream in = null;
DataOutputStream writer = null;
try{
//3、訪問Socket對(duì)象的getInputStream方法取得客戶端發(fā)送過來的數(shù)據(jù)流
in = new DataInputStream(new BufferedInputStream(client.getInputStream()));
String fileName = in.readUTF(); //取得附帶的文件名
if(filepath.endsWith("/") == false filepath.endsWith("\\") == false){
filepath += "\\";
}
filepath += fileName;
//4、將數(shù)據(jù)流寫到文件中
writer = new DataOutputStream(new BufferedOutputStream(new BufferedOutputStream(new FileOutputStream(new File(filepath)))));
int bufferSize = 2048;
byte[] buf = new byte[bufferSize];
int read = 0;
while((read=in.read(buf)) != -1){
writer.write(buf, 0, read);
}
writer.flush();
System.out.println("數(shù)據(jù)接收完畢");
}catch(IOException ex){
ex.printStackTrace();
}finally{
try{
in.close();
writer.close();
client.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
RSA算法非常簡(jiǎn)單,概述如下:
找兩素?cái)?shù)p和q
取n=p*q
取t=(p-1)*(q-1)
取任何一個(gè)數(shù)e,要求滿足et并且e與t互素(就是最大公因數(shù)為1)
取d*e%t==1
這樣最終得到三個(gè)數(shù): n d e
設(shè)消息為數(shù)M (M n)
設(shè)c=(M**d)%n就得到了加密后的消息c
設(shè)m=(c**e)%n則 m == M,從而完成對(duì)c的解密。
注:**表示次方,上面兩式中的d和e可以互換。
在對(duì)稱加密中:
n d兩個(gè)數(shù)構(gòu)成公鑰,可以告訴別人;
n e兩個(gè)數(shù)構(gòu)成私鑰,e自己保留,不讓任何人知道。
給別人發(fā)送的信息使用e加密,只要?jiǎng)e人能用d解開就證明信息是由你發(fā)送的,構(gòu)成了簽名機(jī)制。
別人給你發(fā)送信息時(shí)使用d加密,這樣只有擁有e的你能夠?qū)ζ浣饷堋?/p>
rsa的安全性在于對(duì)于一個(gè)大數(shù)n,沒有有效的方法能夠?qū)⑵浞纸?/p>
從而在已知n d的情況下無法獲得e;同樣在已知n e的情況下無法
求得d。
二實(shí)踐
接下來我們來一個(gè)實(shí)踐,看看實(shí)際的操作:
找兩個(gè)素?cái)?shù):
p=47
q=59
這樣
n=p*q=2773
t=(p-1)*(q-1)=2668
取e=63,滿足et并且e和t互素
用perl簡(jiǎn)單窮舉可以獲得滿主 e*d%t ==1的數(shù)d:
C:\Tempperl -e "foreach $i (1..9999){ print($i),last if $i*63%2668==1 }"
847
即d=847
最終我們獲得關(guān)鍵的
n=2773
d=847
e=63
取消息M=244我們看看
加密:
c=M**d%n = 244**847%2773
用perl的大數(shù)計(jì)算來算一下:
C:\Tempperl -Mbigint -e "print 244**847%2773"
465
即用d對(duì)M加密后獲得加密信息c=465
解密:
我們可以用e來對(duì)加密后的c進(jìn)行解密,還原M:
m=c**e%n=465**63%2773 :
C:\Tempperl -Mbigint -e "print 465**63%2773"
244
即用e對(duì)c解密后獲得m=244 , 該值和原始信息M相等。
三字符串加密
把上面的過程集成一下我們就能實(shí)現(xiàn)一個(gè)對(duì)字符串加密解密的示例了。
每次取字符串中的一個(gè)字符的ascii值作為M進(jìn)行計(jì)算,其輸出為加密后16進(jìn)制
的數(shù)的字符串形式,按3字節(jié)表示,如01F
代碼如下:
#!/usr/bin/perl -w
#RSA 計(jì)算過程學(xué)習(xí)程序編寫的測(cè)試程序
#watercloud 2003-8-12
#
use strict;
use Math::BigInt;
my %RSA_CORE = (n=2773,e=63,d=847); #p=47,q=59
my $N=new Math::BigInt($RSA_CORE{n});
my $E=new Math::BigInt($RSA_CORE{e});
my $D=new Math::BigInt($RSA_COREsqu6kqw);
print "N=$N D=$D E=$E\n";
sub RSA_ENCRYPT
{
my $r_mess = shift @_;
my ($c,$i,$M,$C,$cmess);
for($i=0;$i length($$r_mess);$i++)
{
$c=ord(substr($$r_mess,$i,1));
$M=Math::BigInt-new($c);
$C=$M-copy(); $C-bmodpow($D,$N);
$c=sprintf "%03X",$C;
$cmess.=$c;
}
return \$cmess;
}
sub RSA_DECRYPT
{
my $r_mess = shift @_;
my ($c,$i,$M,$C,$dmess);
for($i=0;$i length($$r_mess);$i+=3)
{
$c=substr($$r_mess,$i,3);
$c=hex($c);
$M=Math::BigInt-new($c);
$C=$M-copy(); $C-bmodpow($E,$N);
$c=chr($C);
$dmess.=$c;
}
return \$dmess;
}
my $mess="RSA 娃哈哈哈~~~";
$mess=$ARGV[0] if @ARGV = 1;
print "原始串:",$mess,"\n";
my $r_cmess = RSA_ENCRYPT(\$mess);
print "加密串:",$$r_cmess,"\n";
my $r_dmess = RSA_DECRYPT($r_cmess);
print "解密串:",$$r_dmess,"\n";
#EOF
測(cè)試一下:
C:\Tempperl rsa-test.pl
N=2773 D=847 E=63
原始串:RSA 娃哈哈哈~~~
加密串:5CB6CD6BC58A7709470AA74A0AA74A0AA74A6C70A46C70A46C70A4
解密串:RSA 娃哈哈哈~~~
C:\Tempperl rsa-test.pl 安全焦點(diǎn)(xfocus)
N=2773 D=847 E=63
原始串:安全焦點(diǎn)(xfocus)
加密串:3393EC12F0A466E0AA9510D025D7BA0712DC3379F47D51C325D67B
解密串:安全焦點(diǎn)(xfocus)
四提高
前面已經(jīng)提到,rsa的安全來源于n足夠大,我們測(cè)試中使用的n是非常小的,根本不能保障安全性,
我們可以通過RSAKit、RSATool之類的工具獲得足夠大的N 及D E。
通過工具,我們獲得1024位的N及D E來測(cè)試一下:
n=0x328C74784DF31119C526D18098EBEBB943B0032B599CEE13CC2BCE7B5FCD15F90B66EC3A85F5005D
BDCDED9BDFCB3C4C265AF164AD55884D8278F791C7A6BFDAD55EDBC4F017F9CCF1538D4C2013433B383B
47D80EC74B51276CA05B5D6346B9EE5AD2D7BE7ABFB36E37108DD60438941D2ED173CCA50E114705D7E2
BC511951
d=0x10001
e=0xE760A3804ACDE1E8E3D7DC0197F9CEF6282EF552E8CEBBB7434B01CB19A9D87A3106DD28C523C2995
4C5D86B36E943080E4919CA8CE08718C3B0930867A98F635EB9EA9200B25906D91B80A47B77324E66AFF2
C4D70D8B1C69C50A9D8B4B7A3C9EE05FFF3A16AFC023731D80634763DA1DCABE9861A4789BD782A592D2B
1965
設(shè)原始信息
M=0x11111111111122222222222233333333333
完成這么大數(shù)字的計(jì)算依賴于大數(shù)運(yùn)算庫(kù),用perl來運(yùn)算非常簡(jiǎn)單:
A) 用d對(duì)M進(jìn)行加密如下:
c=M**d%n :
C:\Tempperl -Mbigint -e " $x=Math::BigInt-bmodpow(0x11111111111122222222222233
333333333, 0x10001, 0x328C74784DF31119C526D18098EBEBB943B0032B599CEE13CC2BCE7B5F
CD15F90B66EC3A85F5005DBDCDED9BDFCB3C4C265AF164AD55884D8278F791C7A6BFDAD55EDBC4F0
17F9CCF1538D4C2013433B383B47D80EC74B51276CA05B5D6346B9EE5AD2D7BE7ABFB36E37108DD6
0438941D2ED173CCA50E114705D7E2BC511951);print $x-as_hex"
0x17b287be418c69ecd7c39227ab681ac422fcc84bb35d8a632543b304de288a8d4434b73d2576bd
45692b007f3a2f7c5f5aa1d99ef3866af26a8e876712ed1d4cc4b293e26bc0a1dc67e247715caa6b
3028f9461a3b1533ec0cb476441465f10d8ad47452a12db0601c5e8beda686dd96d2acd59ea89b91
f1834580c3f6d90898
即用d對(duì)M加密后信息為:
c=0x17b287be418c69ecd7c39227ab681ac422fcc84bb35d8a632543b304de288a8d4434b73d2576bd
45692b007f3a2f7c5f5aa1d99ef3866af26a8e876712ed1d4cc4b293e26bc0a1dc67e247715caa6b
3028f9461a3b1533ec0cb476441465f10d8ad47452a12db0601c5e8beda686dd96d2acd59ea89b91
f1834580c3f6d90898
B) 用e對(duì)c進(jìn)行解密如下:
m=c**e%n :
C:\Tempperl -Mbigint -e " $x=Math::BigInt-bmodpow(0x17b287be418c69ecd7c39227ab
681ac422fcc84bb35d8a632543b304de288a8d4434b73d2576bd45692b007f3a2f7c5f5aa1d99ef3
866af26a8e876712ed1d4cc4b293e26bc0a1dc67e247715caa6b3028f9461a3b1533ec0cb4764414
65f10d8ad47452a12db0601c5e8beda686dd96d2acd59ea89b91f1834580c3f6d90898, 0xE760A
3804ACDE1E8E3D7DC0197F9CEF6282EF552E8CEBBB7434B01CB19A9D87A3106DD28C523C29954C5D
86B36E943080E4919CA8CE08718C3B0930867A98F635EB9EA9200B25906D91B80A47B77324E66AFF
2C4D70D8B1C69C50A9D8B4B7A3C9EE05FFF3A16AFC023731D80634763DA1DCABE9861A4789BD782A
592D2B1965, 0x328C74784DF31119C526D18098EBEBB943B0032B599CEE13CC2BCE7B5FCD15F90
B66EC3A85F5005DBDCDED9BDFCB3C4C265AF164AD55884D8278F791C7A6BFDAD55EDBC4F017F9CCF
1538D4C2013433B383B47D80EC74B51276CA05B5D6346B9EE5AD2D7BE7ABFB36E37108DD60438941
D2ED173CCA50E114705D7E2BC511951);print $x-as_hex"
0x11111111111122222222222233333333333
(我的P4 1.6G的機(jī)器上計(jì)算了約5秒鐘)
得到用e解密后的m=0x11111111111122222222222233333333333 == M
C) RSA通常的實(shí)現(xiàn)
RSA簡(jiǎn)潔幽雅,但計(jì)算速度比較慢,通常加密中并不是直接使用RSA 來對(duì)所有的信息進(jìn)行加密,
最常見的情況是隨機(jī)產(chǎn)生一個(gè)對(duì)稱加密的密鑰,然后使用對(duì)稱加密算法對(duì)信息加密,之后用
RSA對(duì)剛才的加密密鑰進(jìn)行加密。
最后需要說明的是,當(dāng)前小于1024位的N已經(jīng)被證明是不安全的
自己使用中不要使用小于1024位的RSA,最好使用2048位的。
----------------------------------------------------------
一個(gè)簡(jiǎn)單的RSA算法實(shí)現(xiàn)JAVA源代碼:
filename:RSA.java
/*
* Created on Mar 3, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
import java.math.BigInteger;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.FileWriter;
import java.io.FileReader;
import java.io.BufferedReader;
import java.util.StringTokenizer;
/**
* @author Steve
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class RSA {
/**
* BigInteger.ZERO
*/
private static final BigInteger ZERO = BigInteger.ZERO;
/**
* BigInteger.ONE
*/
private static final BigInteger ONE = BigInteger.ONE;
/**
* Pseudo BigInteger.TWO
*/
private static final BigInteger TWO = new BigInteger("2");
private BigInteger myKey;
private BigInteger myMod;
private int blockSize;
public RSA (BigInteger key, BigInteger n, int b) {
myKey = key;
myMod = n;
blockSize = b;
}
public void encodeFile (String filename) {
byte[] bytes = new byte[blockSize / 8 + 1];
byte[] temp;
int tempLen;
InputStream is = null;
FileWriter writer = null;
try {
is = new FileInputStream(filename);
writer = new FileWriter(filename + ".enc");
}
catch (FileNotFoundException e1){
System.out.println("File not found: " + filename);
}
catch (IOException e1){
System.out.println("File not found: " + filename + ".enc");
}
/**
* Write encoded message to 'filename'.enc
*/
try {
while ((tempLen = is.read(bytes, 1, blockSize / 8)) 0) {
for (int i = tempLen + 1; i bytes.length; ++i) {
bytes[i] = 0;
}
writer.write(encodeDecode(new BigInteger(bytes)) + " ");
}
}
catch (IOException e1) {
System.out.println("error writing to file");
}
/**
* Close input stream and file writer
*/
try {
is.close();
writer.close();
}
catch (IOException e1) {
System.out.println("Error closing file.");
}
}
public void decodeFile (String filename) {
FileReader reader = null;
OutputStream os = null;
try {
reader = new FileReader(filename);
os = new FileOutputStream(filename.replaceAll(".enc", ".dec"));
}
catch (FileNotFoundException e1) {
if (reader == null)
System.out.println("File not found: " + filename);
else
System.out.println("File not found: " + filename.replaceAll(".enc", "dec"));
}
BufferedReader br = new BufferedReader(reader);
int offset;
byte[] temp, toFile;
StringTokenizer st = null;
try {
while (br.ready()) {
st = new StringTokenizer(br.readLine());
while (st.hasMoreTokens()){
toFile = encodeDecode(new BigInteger(st.nextToken())).toByteArray();
System.out.println(toFile.length + " x " + (blockSize / 8));
if (toFile[0] == 0 toFile.length != (blockSize / 8)) {
temp = new byte[blockSize / 8];
offset = temp.length - toFile.length;
for (int i = toFile.length - 1; (i = 0) ((i + offset) = 0); --i) {
temp[i + offset] = toFile[i];
}
toFile = temp;
}
/*if (toFile.length != ((blockSize / 8) + 1)){
temp = new byte[(blockSize / 8) + 1];
System.out.println(toFile.length + " x " + temp.length);
for (int i = 1; i temp.length; i++) {
temp[i] = toFile[i - 1];
}
toFile = temp;
}
else
System.out.println(toFile.length + " " + ((blockSize / 8) + 1));*/
os.write(toFile);
}
}
}
catch (IOException e1) {
System.out.println("Something went wrong");
}
/**
* close data streams
*/
try {
os.close();
reader.close();
}
catch (IOException e1) {
System.out.println("Error closing file.");
}
}
/**
* Performs ttbase/tt^supttpow/tt/sup within the modular
* domain of ttmod/tt.
*
* @param base the base to be raised
* @param pow the power to which the base will be raisded
* @param mod the modular domain over which to perform this operation
* @return ttbase/tt^supttpow/tt/sup within the modular
* domain of ttmod/tt.
*/
public BigInteger encodeDecode(BigInteger base) {
BigInteger a = ONE;
BigInteger s = base;
BigInteger n = myKey;
while (!n.equals(ZERO)) {
if(!n.mod(TWO).equals(ZERO))
a = a.multiply(s).mod(myMod);
s = s.pow(2).mod(myMod);
n = n.divide(TWO);
}
return a;
}
}
在這里提供兩個(gè)版本的RSA算法JAVA實(shí)現(xiàn)的代碼下載:
1. 來自于 的RSA算法實(shí)現(xiàn)源代碼包:
2. 來自于 的實(shí)現(xiàn):
- 源代碼包
- 編譯好的jar包
另外關(guān)于RSA算法的php實(shí)現(xiàn)請(qǐng)參見文章:
php下的RSA算法實(shí)現(xiàn)
關(guān)于使用VB實(shí)現(xiàn)RSA算法的源代碼下載(此程序采用了psc1算法來實(shí)現(xiàn)快速的RSA加密):
RSA加密的JavaScript實(shí)現(xiàn):
代碼哪里看不懂追問我
如下
import java.io.*;
public class BaiDuRandomFile
{
public static void main(String[] args) throws Exception
{
String str = "012345678vasdjhklsadfqwiurewopt"; //自己補(bǔ)全字母和數(shù)字,這個(gè)字符數(shù)是作為隨機(jī)取值的源
PrintWriter pw = new PrintWriter(new FileWriter("random.txt"));
int len = str.length();
//每次寫入10K,寫入2048次就是 20M
for (int i = 0; i 2048; i++)
{
StringBuilder s = new StringBuilder();
for (int j = 0; j 10240; j++)
{
s.append(str.charAt((int)(Math.random()*len)));
}
pw.println(s.toString());
}
pw.close();
}
}