DHJJ [Hatsune's Journal Japan] blog

Hatsune's Journal Japan blog

目次

Blog 利用状況

ニュース

最新ツイート

運営サイト

Hatsune's Journal Japan
DHJJ

著作など

資格など

OCP
MCP

書庫

日記カテゴリ

わんくま同盟

TripleDES暗号化/複合サンプル

imodeTwiter(通称、いもつい)の暗号化にはTripleDESを使用しています。

暗号化/複合部分については、以下のMSDN Onlineのサンプルを参考にしています。

MSDN Online = 10 行シリーズ~ 10 行でズバリ !! 暗号化 (VB.NET) ~
http://www.microsoft.com/japan/msdn/thisweek/10lines/encrypt_vb.aspx

しかしながら、このサンプルには重大なバグがあり、バイト配列をEncoding.Unicode.GetStringで文字列化しているために、暗号化した結果のバイト配列の中にUnicodeとして定義されていない値が入ってきた場合、その文字列を再び複合しようとするとエラーが発生します。

これは、暗号化/複合するときの2つのキー値、暗号化/複合する文字列の3つの組み合わせにより発生するもので恒常的に発生しません。そのため、なかなか見つからない、分からないというのが実情でしょう。

それを回避するには、Encoding.Unicode.GetString、Encoding.Unicode.GetBytesを使わずにSystem.Convert.ToBase64String、System.Convert.FromBase64Stringを使います。

Imports System.Text
Imports System.Security.Cryptography
Public Class TripleDESCrypto
    Private Sub Execute_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Execute_Button.Click
        Me.Crypto_TextBox.Text = TextToCryp(Me.Original_TextBox.Text.Trim, "hogehogexxxxxxxxxxxxxxxx")
        Me.Plain_TextBox.Text = CrypToText(Me.Crypto_TextBox.Text.Trim, "hogehogexxxxxxxxxxxxxxxx")
    End Sub
    Public Function TextToCryp(ByVal plainText As String, ByVal keyValue As String) As String
        Dim key() As Byte = Encoding.ASCII.GetBytes(keyValue.Substring(0, 16))
        Dim iv() As Byte = Encoding.ASCII.GetBytes(keyValue.Substring(0, 8))
        Dim des As New TripleDESCryptoServiceProvider
        des.Key = key
        des.IV = iv
        Dim transform As ICryptoTransform = des.CreateEncryptor
        Dim destination As Byte()
        Using ms As System.IO.MemoryStream = New System.IO.MemoryStream
            Using cs As CryptoStream = New CryptoStream(ms, transform, CryptoStreamMode.Write)
                Try
                    Dim source As Byte() = Encoding.Unicode.GetBytes(plainText)
                    cs.Write(source, 0, source.Length) 'sourceの内容を暗号化してmsに書き出す()
                    cs.FlushFinalBlock()
                    destination = ms.ToArray()
                Catch ex As Exception
                    Throw
                Finally
                    cs.Close()
                    ms.Close()
                End Try
            End Using
        End Using
        Return System.Convert.ToBase64String(destination)      '<-----暗号化後のバイナリ値にGetStringは使わない
    End Function
    Public Function CrypToText(ByVal crypText As String, ByVal keyValue As String) As String
        Dim key() As Byte = Encoding.ASCII.GetBytes(keyValue.Substring(0, 16))
        Dim iv() As Byte = Encoding.ASCII.GetBytes(keyValue.Substring(0, 8))
        Dim source As Byte() = System.Convert.FromBase64String(crypText)       'GetBytesは使わない
        Dim des As New TripleDESCryptoServiceProvider
        des.Key = key
        des.IV = iv
        Dim transform As ICryptoTransform = des.CreateDecryptor
        Dim destination As Byte()
        Using ms As System.IO.MemoryStream = New System.IO.MemoryStream
            Using cs As CryptoStream = New CryptoStream(ms, transform, CryptoStreamMode.Write)
                Try
                    cs.Write(source, 0, source.Length)  'sourceの内容を複合してmsに書き出す()
                    cs.FlushFinalBlock()
                    destination = ms.ToArray()
                Catch ex As Exception
                    Throw
                Finally
                    cs.Close()
                    ms.Close()
                End Try
            End Using
        End Using
        Return Encoding.Unicode.GetString(destination)
    End Function
End Class

投稿日時 : 2008年8月25日 13:16

Feedback

# re: TripleDES暗号化/複合サンプル 2008/08/25 13:30 IIJIMAS

そうでした。そうでした。
.NET Framework 2.0以降だと
MSDN Online = 10 行シリーズ~ 10 行でズバリ !! 暗号化 (VB.NET) ~http://www.microsoft.com/japan/msdn/thisweek/10lines/encrypt_vb.aspx
のページのままだとそうなることがありますね。
ただ、この記事が書かれたのが.NET Framework 1.1時代だったのそのときはバグにはならなったのです。

「Encoding.Unicode.GetStringで数値文字列は扱えないのでしょうか?」
http://forums.microsoft.com/MSDN-JA/ShowPost.aspx?PostID=1287620&SiteID=7

CLR の1.1と2.0で挙動が違うのは”Unicode 標準に準拠するため”のようです。
MSDN Home > .NET Framework ホーム > プログラミング情報 > .NET Framework 1.x/2.0 概要 > .NET Framework 2.0 での重大な変更点 > ランタイム変更点 > CLR ランタイム変更点
http://www.microsoft.com/japan/msdn/netframework/programming/breakingchanges/runtime/clr.aspx
http://msdn2.microsoft.com/en-us/netframework/aa497241.aspx

# ukQYJfZBhvjSuNLi 2012/01/04 7:13 http://www.kosherbeefjerky.com/

SE84za Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:D

# oYJTRZoxNmT 2014/08/06 17:18 http://crorkz.com/

wEreeD A round of applause for your article post.Thanks Again. Want more.

# LBVWzKOGwKuYpOLT 2014/08/29 10:14 http://blogs.rediff.com/propertybazaar/

hi!,I like your writing very much! proportion we be in contact more about your post on AOL? I need an expert on this space to unravel my problem. Maybe that's you! Looking forward to peer you.

# PeMSXezqCFUtCq 2014/09/01 20:44 https://fifa14hackcoins.wordpress.com/

Well I sincerely liked studying it. This tip offered by you is very constructive for good planning.

# xFQdbEVvZrIjTB 2014/09/09 12:51 http://vente-sur-internet.com/

you might have a fantastic blog here! would you wish to make some invite posts on my blog?

# oquwAtHagVQVTXdDZ 2014/09/10 19:23 http://www.nobisca.com

I am typically to blogging and i really respect your content. The article has really peaks my interest. I am going to bookmark your web site and maintain checking for brand new information.

# SxVXaMIQifjZHxa 2014/09/14 20:17 www.distance2villes.com/

I'll immediately snatch your rss as I can not in finding your e-mail subscription hyperlink or newsletter service. Do you've any? Please let me recognize so that I may subscribe. Thanks.

# GaJdKwoVksW 2014/09/17 16:48 http://www.1818-888.com

This web page is mostly a stroll-via for the entire information you wanted about this and didn't know who to ask. Glimpse here, and also you'll definitely uncover it.

# Its like you read my mind! You seem to know a lot about this, like you wrote the book in it or something. I think that you could do with a few pics to drive the message home a bit, but other than that, this is wonderful blog. A great read. I will definit 2018/09/30 8:23 Its like you read my mind! You seem to know a lot

Its like you read my mind! You seem to know a lot about this, like you wrote the book in it or something.
I think that you could do with a few pics to drive the message home a bit, but other than that, this
is wonderful blog. A great read. I will definitely be back.

# After checking out a handful of the articles on your web site, I honestly like your way of writing a blog. I saved as a favorite it to my bookmark webpage list and will be checking back in the near future. Take a look at my website as well and tell me w 2018/10/01 17:58 After checking out a handful of the articles on yo

After checking out a handful of the articles
on your web site, I honestly like your way of writing a blog.
I saved as a favorite it to my bookmark webpage list and
will be checking back in the near future. Take a look at my website as well and tell me what you think.

# It's wonderful that you are getting thoughts from this article as well as from our discussion made at this time. 2018/10/02 12:38 It's wonderful that you are getting thoughts from

It's wonderful that you are getting thoughts from this article as well as from our discussion made
at this time.

# It's wonderful that you are getting thoughts from this article as well as from our discussion made at this time. 2018/10/02 12:39 It's wonderful that you are getting thoughts from

It's wonderful that you are getting thoughts from this article as well as from our discussion made
at this time.

# Hi! I could have sworn I've been to this website before but after browsing through some of the post I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be book-marking and checking back often! 2018/10/10 9:22 Hi! I could have sworn I've been to this website b

Hi! I could have sworn I've been to this website before but after browsing through some of the post I
realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be
book-marking and checking back often!

# Very descriptive blog, I enjoyed that a lot. Will there be a part 2? 2018/10/26 3:42 Very descriptive blog, I enjoyed that a lot. Will

Very descriptive blog, I enjoyed that a lot. Will there be
a part 2?

# Sweet blog! I found it while browsing on Yahoo News. Do you have any tips on how to get listed in Yahoo News? I've been trying for a while but I never seem to get there! Many thanks 2018/10/28 21:11 Sweet blog! I found it while browsing on Yahoo Ne

Sweet blog! I found it while browsing on Yahoo News. Do you have any tips on how to get listed in Yahoo News?
I've been trying for a while but I never seem to get there!
Many thanks

# Oh my goodness! Amazing article dude! Thanks, However I am encountering difficulties with your RSS. I don't understand why I am unable to subscribe to it. Is there anyone else having similar RSS issues? Anyone that knows the solution can you kindly respo 2018/11/19 8:57 Oh my goodness! Amazing article dude! Thanks, Howe

Oh my goodness! Amazing article dude! Thanks, However I am
encountering difficulties with your RSS. I don't understand why I am
unable to subscribe to it. Is there anyone else having similar RSS issues?
Anyone that knows the solution can you kindly respond? Thanx!!

# neXtsRkgCFdBO 2018/12/20 0:37 https://www.suba.me/

sHfPky Pretty! This has been an incredibly wonderful article. Thanks for supplying this info.

# This piece of writing presents clear idea for the new viewers of blogging, that really how to do blogging and site-building. 2019/04/26 10:17 This piece of writing presents clear idea for the

This piece of writing presents clear idea for the new viewers of blogging, that really how to do blogging and site-building.

# It's remarkable to visit this web page and reading the views of all mates concerning this piece of writing, while I am also keen of getting knowledge. 2019/04/30 1:44 It's remarkable to visit this web page and reading

It's remarkable to visit this web page and reading the views of all mates concerning this piece of writing, while I am also keen of getting
knowledge.

# I will immediately grasp your rss feed as I can not find your e-mail subscription link or newsletter service. Do you've any? Kindly permit me realize in order that I could subscribe. Thanks. 2019/05/13 17:34 I will immediately grasp your rss feed as I can no

I will immediately grasp your rss feed as I can not find your e-mail subscription link or newsletter service.

Do you've any? Kindly permit me realize in order that
I could subscribe. Thanks.

# I am sure this article has touched all the internet users, its really really pleasant article on building up new blog. 2019/06/02 11:11 I am sure this article has touched all the interne

I am sure this article has touched all the internet users, its really really pleasant article
on building up new blog.

# Hi my family member! I want to say that this post is awesome, great written and include approximately all important infos. I'd like to see extra posts like this . 2019/06/05 9:06 Hi my family member! I want to say that this post

Hi my family member! I want to say that this post is awesome,
great written and include approximately all important infos.
I'd like to see extra posts like this .

# What's up friends, how is all, and what you want to say regarding this paragraph, in my view its genuinely amazing in favor of me. 2019/06/07 5:11 What's up friends, how is all, and what you want t

What's up friends, how is all, and what you want to say regarding this paragraph,
in my view its genuinely amazing in favor of me.

# Juѕt wish to sаy your article is аs amazіng. The claritу in your submit is simpⅼy ccool and that i coսld think yoou are a professionaⅼ in this subject. Fine together with yoᥙr peгmission let me to seize your fwed to stay up to date with comіg near near 2019/07/12 8:39 Just wiѕh to say your articcle is as amazing. The

J?st wis? to say your article is as amazing.
The clarity in your submit is simply cool andd that i co?ld think
yοou are a profеssional in t?i? subject.
Fine togеther with yiur permission let me to size your feed
to stay up to datе with coming newr near post.
Th?nk youu 1,000,000 and please continue the rew?rding work.

# Hello friends, how is all, and what you want to say about this article, in my view its genuinely remarkable for me. 2019/08/19 13:50 Hello friends, how is all, and what you want to sa

Hello friends, how is all, and what you want to say about this
article, in my view its genuinely remarkable for me.

# This article offers clear idea in favor of the new people of blogging, that genuinely how to do running a blog. 2019/09/04 8:37 This article offers clear idea in favor of the ne

This article offers clear idea in favor of the new people of blogging, that genuinely how to do running a blog.

# YqXTONbDphQqJ 2021/07/03 2:37 https://amzn.to/365xyVY

Im obliged for the post.Really looking forward to read more. Keep writing.

# Illikebuisse rbmtb 2021/07/04 14:40 pharmacepticacom

does chloroquine work https://pharmaceptica.com/

# foods for erectile 2021/07/05 23:14 lupus usmle

hydroxychlor tab https://plaquenilx.com/# dosage for hydroxychloroquine

# re: TripleDES???/?????? 2021/07/24 3:10 hydrchloroquine

chloroquine malaria https://chloroquineorigin.com/# side effect of hydroxychloroquine

# I every time spent my half an hour to read this webpage's articles everyday along with a cup of coffee. 2021/09/03 5:06 I every time spent my half an hour to read this we

I every time spent my half an hour to read this
webpage's articles everyday along with a cup of coffee.

# I every time spent my half an hour to read this webpage's articles everyday along with a cup of coffee. 2021/09/03 5:07 I every time spent my half an hour to read this we

I every time spent my half an hour to read this
webpage's articles everyday along with a cup of coffee.

# I every time spent my half an hour to read this webpage's articles everyday along with a cup of coffee. 2021/09/03 5:08 I every time spent my half an hour to read this we

I every time spent my half an hour to read this
webpage's articles everyday along with a cup of coffee.

# I every time spent my half an hour to read this webpage's articles everyday along with a cup of coffee. 2021/09/03 5:09 I every time spent my half an hour to read this we

I every time spent my half an hour to read this
webpage's articles everyday along with a cup of coffee.

# What side effects can this medication cause? Best and news about drug.
https://edonlinefast.com
Learn about the side effects, dosages, and interactions. Get warning information here. 2023/02/17 11:09 EdOnline

What side effects can this medication cause? Best and news about drug.
https://edonlinefast.com
Learn about the side effects, dosages, and interactions. Get warning information here.

# pillole per erezione in farmacia senza ricetta https://viasenzaricetta.com/# 2023/04/16 13:14 ViaSenza

pillole per erezione in farmacia senza ricetta https://viasenzaricetta.com/#

# doxycycline tablets - https://doxycyclinesale.pro/# 2023/04/22 4:13 Doxycycline

doxycycline tablets - https://doxycyclinesale.pro/#

# online order prednisone 10mg - https://prednisonesale.pro/# 2023/04/22 15:20 Prednisone

online order prednisone 10mg - https://prednisonesale.pro/#

# cytotec online - https://cytotecsale.pro/# 2023/04/29 4:49 Cytotec

cytotec online - https://cytotecsale.pro/#

# male uti treatment over the counter https://overthecounter.pro/# 2023/05/08 22:55 OtcJikoliuj

male uti treatment over the counter https://overthecounter.pro/#

# medication for ed dysfunction: https://edpills.pro/# 2023/05/16 3:30 EdPillsPro

medication for ed dysfunction: https://edpills.pro/#

# list of approved canadian pharmacies https://pillswithoutprescription.pro/# 2023/05/16 9:42 PillsPro

list of approved canadian pharmacies https://pillswithoutprescription.pro/#

# prednisone 10mg tablet price https://prednisonepills.pro/# - buy prednisone with paypal canada 2023/06/05 5:26 Prednisone

prednisone 10mg tablet price https://prednisonepills.pro/# - buy prednisone with paypal canada

# paxlovid pill https://paxlovid.pro/# - paxlovid 2023/07/03 4:09 Paxlovid

paxlovid pill https://paxlovid.pro/# - paxlovid

# paxlovid for sale https://paxlovid.store/
paxlovid 2023/07/13 21:50 Paxlovid

paxlovid for sale https://paxlovid.store/
paxlovid

# buy paxlovid online https://paxlovid.life/# paxlovid 2023/07/26 6:26 Paxlovid

buy paxlovid online https://paxlovid.life/# paxlovid

# purchase cytotec https://cytotec.ink/# - buy cytotec online fast delivery 2023/07/27 1:23 PillsFree

purchase cytotec https://cytotec.ink/# - buy cytotec online fast delivery

# how to order valtrex online https://valtrex.auction/ generic valtrex 1000mg for sale 2023/10/24 22:16 Valtrex

how to order valtrex online https://valtrex.auction/ generic valtrex 1000mg for sale

# where can i get doxycycline https://doxycycline.forum/ doxycycline generic 2023/11/25 13:20 Doxycycline

where can i get doxycycline https://doxycycline.forum/ doxycycline generic

タイトル
名前
Url
コメント