小程序數據加密
1. 小程序 加密
請問一下
你的這個小程序是用什麼語言寫的,有沒有源碼?至少要給我其中一個,我都能幫你做。
2. 編寫一個小程序,可以對輸入的一段英文字元串進行加密和解密,加密演算法中需要使
用VB編的
Option Explicit
'加密
Private Sub Command1_Click()
Text2 = ""
Dim i As Long
For i = 1 To Len(Text1)
Text2 = Text2 & Chr(Asc(Mid(Text1, i, 1)) - 300)
Next
Text1 = ""
End Sub
'解密
Private Sub Command2_Click()
Text1 = ""
Dim i As Long
For i = 1 To Len(Text2)
Text1 = Text1 & Chr(Asc(Mid(Text2, i, 1)) + 300)
Next
End Sub
'原字元串
Private Sub Form_Load()
Text1 = "中華人民共內和國容"
Text2 = ""
End Sub
3. 小程序可以將用戶上傳的文件加密再給別人看嗎
有一本書,是加密與解密。你先學學加密的演算法,然後再研究下,如果修改文件夾屬性等系統API函數。
4. 跪求一個加密小程序的題目,謝謝啦..急..
下面是個例子,對12345678加密。
想對哪個8位數加密,調ProcessInt這個函數就可以了。
如果8位內的任意整數的話,樓主做做改動即可,不難實現。
程序考慮到讓樓主看的清楚,並沒有將效率寫到最大。
#include <stdio.h>
#include <iostream>
#include <windows.h>
#include <math.h>
using namespace std;
void ProcessInt(int* piInt)
{
int iArray[8];
int iResult = (*piInt);
int iTmp = *piInt;
for (int i = 0; i < 8; i++)
{
iResult = iResult / (int)pow(10, 8 - 1 - i);
iArray[i] = iResult;
iResult = iTmp - iResult * (int)pow(10, 8 - 1 - i);
iTmp = iResult;
}
//1.sequence
//2.replace the number by plus 5 and then div 10
for (int i = 0; i < 8; i++)
{
iArray[i] = (iArray[i] + 5) % 10;
}
//3.first->last, last->first
//4.construct the number
iResult = iArray[0] * (int)pow(10, 7);
iResult = iResult + iArray[6] * (int)pow(10, 6);
iResult = iResult + iArray[5] * (int)pow(10, 5);
iResult = iResult + iArray[4] * (int)pow(10, 4);
iResult = iResult + iArray[3] * (int)pow(10, 3);
iResult = iResult + iArray[2] * (int)pow(10, 2);
iResult = iResult + iArray[1] * (int)pow(10, 1);
iResult = iResult + iArray[7];
*piInt = iResult;
}
void main()
{
int i = 12345678;
ProcessInt(&i);
printf("加密後的數據是:%d\n", i);
5. C語言 字元串數據加密 的小程序 ,求助求修改~~!
#include
"stdio.h"
#include
"conio.h"
void
main()
{
char
SN[255];
int
i=0;
int
num=0;
printf("請輸入需要加密的字元串,輸入完成按回車結束:");
printf("\n");
gets(SN);
printf("請輸入需要移動的位回數,輸入完成按回車結束:");
printf("\n");
scanf("%d",&num);
//num
->
&num
******************************
while(SN[i]!=0)
{
if(SN[i]<='z'&&SN[i]>='a')
SN[i++]+=num;
else
if(SN[i]<='Z'&&SN[i]>='A')
SN[i++]+=num;
else
{
printf("輸入錯誤!答");
break;//**********************************
}
}
printf("%s
\n",SN);
//
getch();
};
6. 怎樣寫這個加密小程序
加密的網站或小程序都需要一個證書,然後才能憑證書開通的
7. 編寫一個小程序,可以對輸入的一段英文字元串進行加密和解密,加密演算法中需要使用到自己學號的後兩位信息
您好,這樣:
// str 為 需要進行轉換的字元串.
public static string ConvertCode(string str)
{
System.Text.StringBuilder strBuilder=new System.Text.StringBuilder();
foreach(char ch in str)
{
if((ch>=65 && ch<=90) || (ch>=97 && ch<=122))
{ //+3 才會是 a --> d b -->e
strBuilder.Append(Convert.ToChar(Convert.ToInt32(ch)+3).ToString());
}
else
{
strBuilder.Append(ch.ToString());
}
}
return strBuilder.ToString();
}
8. 微信小程序中的加密運動數據怎麼破解
無法破解,目前微信小程序全部是CA SSL證書加密傳輸的。
9. 微信小程序用的是哪種加密演算法
這個問題你可以查一下客服,他會告訴你
10. 微信小程序怎麼做 RSA 加密
var input_rsa = this.data.input;
var encrypt_rsa = new RSA.RSAKey();
encrypt_rsa = RSA.KEYUTIL.getKey(publicKey);
encStr = encrypt_rsa.encrypt(input_rsa)
encStr = RSA.hex2b64(encStr);
console.log("加密來結果自:" + encStr)
資料來自CSDN:http://blog.csdn.net/ufo00001/article/details/72822907