ユーザーにピンを入力させ、式を使用して時間に敏感な文字列を作成しようとしています。IE の場合、関数を 1 分後に呼び出すと、文字列はまったく異なります。次に、この文字列を SHA1 アルゴリズムで実行します。私の問題は、同じ結果を生成するために .Net および Mono ライブラリが必要であり、そうでないことです。Xmarin スタジオを使用してモノラル ライブラリを Android にデプロイしています。.Net 3.5 フレームワークを使用して Web サービスを展開しています。
sha1 アグロリスムに引数として渡される 2 つの文字列が、android と .net の両方で同じであることを確認しました。問題は、SHA1 アルゴリズムの出力が異なることです。これは、さまざまなライブラリでの実装方法によるものだと思います。実際の C# コードは、両方のデバイスで同じです。
ライブラリに依存しない単純なアルゴリズムを知っている人はいますか? またはさらに良いことに、私が間違っている可能性があることについての提案。
これは私の C# 3.5 Web サービスのコードです
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Security.Cryptography;
namespace rasToken
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public string rasEncrypt(String userid)
{
//get pin from data base
String pin = "1234";
return generateToken(pin);
}
public string generateToken(String pin)
{
String debug="";
int month = DateTime.Now.Month;
debug+="month: "+month;
int year = DateTime.Now.DayOfYear;
debug+="year: "+year;
int hour = DateTime.Now.Hour;
debug+="hour: "+hour;
int minute = DateTime.Now.Minute;
debug+="minute: "+minute;
int day = DateTime.Now.Day;
debug+="day: "+day;
int concat = month * minute * year * day * hour * 7857564;
concat=Math.Abs(concat);
SHA1 sh1 = SHA1.Create();
String hash = concat + "23117345423219" + pin;
//MD5 hasher = MD5.Create();
byte[] result = sh1.ComputeHash(getBytes(hash));
String final = getString(result);
return final.Substring(0, 8)+hash;
}
private byte[] getBytes(String hash){
System.Text.ASCIIEncoding encoding=new System.Text.ASCIIEncoding();
return encoding.GetBytes(hash);
}
private String getString(byte[] bytes)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
String clean = Convert.ToBase64String(bytes).Replace(@"\", string.Empty);
return clean;
//return encoding.GetString(bytes);
}
}
}
これはモノアンドロイドライブラリの私のコードです
using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using System.Security.Cryptography;
namespace raskey
{
[Activity (Label = "raskey", MainLauncher = true)]
public class Activity1 : Activity
{
//int count = 1;
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
// Set our view from the "main" layout resource
SetContentView (Resource.Layout.Main);
// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button> (Resource.Id.myButton);
EditText input = FindViewById<EditText> (Resource.Id.pin);
//button.Click += delegate {
// button.Text = string.Format ("{0} clicks!", count++);
//};
input.KeyPress+=(object sender, View.KeyEventArgs e) => {
if (e.Event.Action == KeyEventActions.Down && e.KeyCode == Keycode.Enter) {
generateToken(input.Text);
Toast.MakeText (this, generateToken(input.Text), ToastLength.Short).Show ();
e.Handled = true;
}
};
}
public string generateToken(String pin)
{
String debug="";
int month = DateTime.Now.Month;
debug+="month: "+month;
int year = DateTime.Now.DayOfYear;
debug+="year: "+year;
int hour = DateTime.Now.Hour;
debug+="hour: "+hour;
int minute = DateTime.Now.Minute;
debug+="minute: "+minute;
int day = DateTime.Now.Day;
debug+="day: "+day;
int concat = month * minute * year * day * hour * 7857564;
concat=Math.Abs(concat);
SHA1 sh1 = SHA1.Create();
String hash = concat + "23117345423219" + pin;
//MD5 hasher = MD5.Create();
byte[] result = sh1.ComputeHash(getBytes(hash));
String final = getString(result);
return final.Substring(0, 8)+" "+hash;
}
private byte[] getBytes(String hash){
System.Text.ASCIIEncoding encoding=new System.Text.ASCIIEncoding();
return encoding.GetBytes(hash);
}
private String getString(byte[] bytes)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
String clean = Convert.ToBase64String(bytes).Replace(@"\", string.Empty);
return clean;
//return encoding.GetString(bytes);
}
}
}