2011年3月19日土曜日

TripleDESのサンプル



using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;
using System.IO;
using System.Diagnostics;
namespace TripleDESWindowsFormsApplication
{
 public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }
  private void _buttonDecrypt_Click(object sender, EventArgs e)
  {
   string source = _textResult.Text;
   string key = _textKey.Text;
   byte[] b = Convert.FromBase64String(source);
   TribleDES tdes = new TribleDES(Encoding.ASCII, 24);
   byte[] v = tdes.Decrypt(b, key);
   //仕様は全てASCII
   WriteDebug(Encoding.ASCII.GetString(v));
  }
  private void _buttonEncrypt_Click(object sender, EventArgs e)
  {
   string source = _textValue.Text;
   string key = _textKey.Text;
   byte[] b = Encoding.ASCII.GetBytes(source);
 
   TribleDES tdes = new TribleDES(Encoding.ASCII, 24);
   byte[] v = tdes.Encrypt(b, key);
   //byte[]を直接Base64へ変換
   string ret = Convert.ToBase64String(v);
    
   WriteDebug(ret);
  }
  void WriteDebug(string msg)
  {
   StringBuilder sb = new StringBuilder();
   sb.Append(DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"));
   sb.Append(":");
   sb.Append(msg);
   sb.AppendLine();
   Debug.WriteLine(sb.ToString());
   _textDebug.Text +=  sb.ToString();
  }
  public class TribleDES
  {
   Encoding _enc;
   int _keySIze;
   public TribleDES(Encoding enc, int keySize)
   {
    _enc = enc;
    _keySIze = keySize;
   }
   public byte[] Encrypt(byte[] source, string key)
   {
    //TripleDESだけど全てキーが同じです。
    // Tripe DES のサービス プロバイダを生成します
    TripleDESCryptoServiceProvider tDes = new TripleDESCryptoServiceProvider();
    tDes.KeySize = _keySIze * 8;//192; //192bit 24byte KeySize
    byte[] keyBin = _enc.GetBytes(key); //GenerateKey(key, tDes.Key.Length);
    byte[] iv = _enc.GetBytes(key); //GenerateKey(key, tDes.IV.Length);
    // 入出力用のストリームを生成します
    MemoryStream ms = new MemoryStream();
    CryptoStream cs = new CryptoStream(ms,
     tDes.CreateEncryptor(keyBin, iv), CryptoStreamMode.Write);
    // ストリームに暗号化されたデータを書き込みます
    cs.Write(source, 0, source.Length);
    cs.Close();
    // 復号化されたデータを byte 配列で取得します
    byte[] destination = ms.ToArray();
    ms.Close();
    // byte 配列を文字列に変換して表示します
    //return _enc.GetString(destination);
    return destination;
   }
   public byte[] Decrypt(byte[] source, string key)
         {
    // Tripe DES のサービス プロバイダを生成します
    TripleDESCryptoServiceProvider tDes = new TripleDESCryptoServiceProvider();
    tDes.KeySize = _keySIze * 8;//192; //最大 192bit 24byte KeySize
    byte[] keyBin = _enc.GetBytes(key); //GenerateKey(key, tDes.Key.Length);
    byte[] iv = _enc.GetBytes(key); //GenerateKey(key, tDes.IV.Length);
    // 入出力用のストリームを生成します
    MemoryStream ms = new MemoryStream();
    CryptoStream cs = new CryptoStream(ms,
     tDes.CreateDecryptor(keyBin, iv), CryptoStreamMode.Write);
    // ストリームに暗号化されたデータを書き込みます
    cs.Write(source, 0, source.Length);
    cs.Close();
    // 復号化されたデータを byte 配列で取得します
    byte[] destination = ms.ToArray();
    ms.Close();
    // byte 配列を文字列に変換して表示します
    //return _enc.GetString(destination);
    return destination;
        }
  }
  public class Base642String
  {
   private Encoding enc;
   public Base642String(string encStr)
   {
    enc = Encoding.GetEncoding(encStr);
   }
   public string Encode(string str)
   {
    return Convert.ToBase64String(enc.GetBytes(str));
   }
   public string DecodeString(string str)
   {
    return enc.GetString(Convert.FromBase64String(str));
   }
   public byte[] DecodeByte(string str)
   {
    return Convert.FromBase64String(str);
   }
  }

 }
}

2011年3月11日金曜日

エラー 2 The derived entity type 'User' must be declared in a KnownTypeAttribute on the root entity 'AbstractUser'. HogeHogeProjectが発生した。

⇒これは、WCF RIA Serviceで、継承関係にあるUserモデルとAbstractUserモデルの両方を公開したために、Silverlight側でコードがジェネレイトできずにエラーとなってしまった。

2011年3月10日木曜日

This EntitySet of type 'Kiyo.Web.User' does not support the 'Edit' operation.
が発生した。

↓下記の通りに対応したらうまくいきました。

DTOをWCF RIA Servicesで公開するには
http://d.hatena.ne.jp/taedium/20100507/p1