暗号化2014年11月22日 21:39

暗号化、複合化プログラムcryptです。

入力文字と暗号化キーのXORをとることで暗号化しています。複合も同じです。

XORをとるには、組み込みのieorがありますが、ここでは、自作しました。

cryptのratfor版は下記の通り。

# crypt.r4 -- encrypt and decrypt
      character getc,xor
      character c,key(MAXKEY)
      integer getarg
      integer mod,i,keylen

      keylen = getarg(1,key,MAXKEY)
      if (keylen == EOF)
          call error('usage: crypt key.')
      for (i = 1; getc(c) != EOF; i = mode(i,keylen) + 1)
          call putc(xor(c,key(i)))
      stop
      end

とても単純ですね。Watcom Fortran 77版は下記の通り。

c crypt.for -- encrypt and decrypt
      program crypt
      integer*1 getc
      integer*1 c,key(11)               ! MAXKEY(11)
      integer getarg,ieor
      integer i,keylen

      keylen = getarg(1,key,11)         ! MAXKEY(11)
      if (keylen .eq. -1) then          ! EOF(-1)
          call error('usage: crypt key.')
      end if
      i = 1
      while (getc(c) .ne. -1) do        ! EOF(-1)
          call putc(xor(c,key(i)))
          i = mod(i,keylen) + 1
      end while
      stop
      end

xor()は、以下の通り。下請けルーチンbin2bit()は、integer*1の正の数を8ビットに分割します。bit2bin()は、8ビットに分割された数をinteger*1の数に戻します。いずれのルーチンも、負の数には対応できません。

c xor.for -- bit width xor
      integer*1 function xor(bin1,bin2)
      integer*1 bin1, bin2
      integer*1 bit2bin
      integer bit1(8),bit2(8),bit3(8),i

      call bin2bit(bin1,bit1)
      call bin2bit(bin2,bit2)
      do 10 i=1,8
          if (((bit1(i) .eq. 1) .and. (bit2(i) .eq. 0)) .or.
     1        ((bit1(i) .eq. 0) .and. (bit2(i) .eq. 1))) then
              bit3(i) = 1
          else
              bit3(i) = 0
          endif
   10 continue
      xor = bit2bin(bit3)
      return
      end

bin2bit()は、以下の通り。

c bin2bit.for -- convert bin to bit(i)
      subroutine bin2bit(bin8,bit)
      integer*1 bin8
      integer bit(8)
      integer abs,mod
      integer i,b

      b = bin8
      do 10 i=1,8
          bit(i) = abs(mod(b,2))
          b = b / 2
   10 continue
      return
      end

bit2bin()は、以下の通り。

c bit2bin.for -- convert bit(8) to bin
      integer*1 function bit2bin(bit)
      integer bit(8)

      bit2bin = bit(8)*128 + bit(7)*64 + bit(6)*32 + bit(5)*16
     1     + bit(4)*8 + bit(3)*4 + bit(2)*2 + bit(1)
      return
      end

実は、大きな落とし穴がありました。暗号化した文字が26、すなわち、0x1aになることがあります。 0x1aは、Windowsでは、テキストファイルの終わりのマークです。暗号化したファイルを読み込むと、0x1aのところで、 切れてしまいます。仕様なので、これ以上の事は追求しないことにしました。

コメント

_ plenty of fish sign on ― 2015年10月18日 07:27

Its like you read my mind! You seem to know so much 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 instead of that, this is wonderful blog. A fantastic read. I'll definitely be back.

_ best quest bar nutrition ― 2015年10月19日 05:39

If you would like to grow your knowledge just keep visiting this website and be updated with the hottest news update posted here.

_ coupons for match free trial ― 2015年10月25日 15:03

Thanks in favor of sharing such a fastidious thinking, post is fastidious, thats why i have read it completely

_ match free trial ― 2015年10月27日 08:29

Hi there! I'm at work surfing around your blog from my new apple iphone!
Just wanted to say I love reading through your blog and look forward to all your posts!
Keep up the outstanding work!

_ match.com free trial cancellation ― 2015年10月28日 16:05

Aw, this was a really nice post. Finding the time and actual effort to
create a top notch article… but what can I say… I procrastinate
a whole lot and don't seem to get nearly anything done.

_ promo code for match free trial ― 2015年10月30日 00:51

Hello, I enjoy reading through your article post.
I wanted to write a little comment to support you.

_ chocolate mint quest bar review ― 2015年11月01日 17:29

Howdy! I'm at work surfing around your blog from my new iphone 4!
Just wanted to say I love reading your blog and look forward to
all your posts! Keep up the superb work!

_ livewell labs pure forskolin extract ― 2015年11月04日 03:28

I really like what you guys are usually up too. This sort of clever work and exposure!
Keep up the good works guys I've added you guys to blogroll.

_ forskolin ― 2015年11月05日 05:33

Greetings from Ohio! I'm bored to tears at work so I decided to browse your
site on my iphone during lunch break. I love the knowledge
you present here and can't wait to take a look when I get home.

I'm surprised at how fast your blog loaded on my phone .. I'm not
even using WIFI, just 3G .. Anyways, great site!

_ forskolin at walmart ― 2015年11月05日 14:18

I don't even know how I ended up here, but I
thought this post was great. I don't know who you are but certainly you're
going to a famous blogger if you aren't already ;)
Cheers!

_ where to buy forskolin ― 2015年11月05日 15:08

I think this is among the most significant information for me.
And i am glad reading your article. But wanna remark on some general things, The website style is perfect,
the articles is really great : D. Good job, cheers

_ plenty of fish dating site of free dating ― 2015年11月05日 22:44

great issues altogether, you just gained a new reader.
What would you recommend about your post that you simply made
a few days in the past? Any certain?

_ plenty of fish dating site of free dating ― 2015年11月06日 20:20

Greate post. Keep writing such kind of information on your blog.
Im really impressed by your blog.
Hello there, You've done an incredible job. I'll certainly digg
it and for my part recommend to my friends. I'm sure they will
be benefited from this site.

_ plenty of fish dating site of free dating ― 2015年11月07日 15:32

Greetings! This is my first comment here so I just wanted to give a quick
shout out and say I truly enjoy reading your posts. Can you suggest any other blogs/websites/forums that cover
the same topics? Thank you!

_ kroger digital coupons ― 2015年11月11日 10:30

I couldn't refrain from commenting. Very well written!

_ kroger.com digital coupons ― 2015年11月13日 07:35

Very rapidly this site will be famous amid all blogging and site-building users, due to it's good posts

_ kroger feedback survey ― 2015年11月13日 09:46

Hey There. I found your blog using msn. This is an extremely well
written article. I will be sure to bookmark it
and return to read more of your useful information. Thanks for the post.

I'll certainly return.

_ kroger log in digital coupons ― 2015年11月17日 05:58

Hi would you mind letting me know which hosting company you're
working with? I've loaded your blog in 3 different internet browsers and I must say this blog loads a lot quicker then most.
Can you suggest a good internet hosting provider at a
reasonable price? Kudos, I appreciate it!

_ plenty of fish ― 2015年12月01日 13:07

Admiring the hard work you put into your website and in depth information you provide.
It's nice to come across a blog every once in a while that
isn't the same out of date rehashed material.
Great read! I've saved your site and I'm adding your RSS feeds
to my Google account.

_ kroger feedback ― 2015年12月05日 04:38

Someone necessarily lend a hand to make severely posts I
might state. That is the very first time I frequented your website page
and to this point? I amazed with the research you made to make this particular publish amazing.
Fantastic activity!

_ plenty of fish ― 2015年12月06日 01:01

Hola! I've been following your weblog for a while now and finally got the bravery
to go ahead and give you a shout out from Humble Tx!

Just wanted to say keep up the great work!

_ plenty of fish ― 2015年12月06日 01:17

For most recent news you have to pay a quick visit world-wide-web and on internet I found this website as a best website for most recent updates.

_ tinyurl.com ― 2015年12月08日 02:06

I was curious if you ever considered changing the layout of your website?
Its very well written; I love what youve got to
say. But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having 1 or 2 pictures.

Maybe you could space it out better?

_ http://tinyurl.com/pdcqzx7 ― 2015年12月08日 06:20

Wonderful blog! I found it while searching 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! Thanks

_ krogerfeedback.com ― 2015年12月09日 21:11

I loved as much as you will receive carried out right here.
The sketch is tasteful, your authored material stylish.
nonetheless, you command get bought an shakiness over that
you wish be delivering the following. unwell unquestionably come more formerly again since exactly the same nearly very often inside
case you shield this increase.

_ cheapest place for quest bars ― 2015年12月11日 16:08

A person essentially help to make critically posts I would state.

That is the very first time I frequented your website page and to this point?
I surprised with the analysis you made to make
this particular submit incredible. Wonderful activity!

_ Descargar Facebook Para Windows 7 ― 2015年12月18日 20:32

Hello mates, how is all, and what you wish for to say about
this post, in my view its actually amazing in favor of me.

_ Descargar Firefox ― 2016年01月05日 17:56

You ought to be a part of a contest for one of the highest quality sites on the web.

I'm going to recommend this web site!

_ Descargar Firefox :: ― 2016年01月06日 15:41

I simply couldn't go away your website prior to suggesting that I
actually loved the standard information a person supply in your guests?

Is gonna be back continuously to inspect new posts

_ quest bars ― 2016年02月08日 20:10

Greate post. Keep posting such kind of information on your site.
Im really impressed by your site.
Hi there, You have performed an incredible job. I'll certainly digg it and individually recommend to my friends.
I'm sure they will be benefited from this website.

_ quest bars ― 2016年02月19日 21:31

Hello to all, as I am in fact eager of reading this weblog's post to be updated on a
regular basis. It consists of good material.

_ plenty of fish dating site of free dating ― 2016年02月23日 14:16

I'm impressed, I have to admit. Seldom do I encounter a blog that's both equally
educative and entertaining, and without a doubt, you've hit the nail on the head.
The issue is something too few people are speaking
intelligently about. Now i'm very happy that
I found this in my hunt for something regarding this.

_ bernie sanders ― 2016年04月01日 00:39

Nice post. I learn something totally new and challenging on sites I stumbleupon everyday.
It's always interesting to read articles from other writers
and practice something from other websites.

_ bernie sanders ― 2016年04月01日 18:32

you are truly a excellent webmaster. The site loading velocity is amazing.

It kind of feels that you are doing any unique trick.
Furthermore, The contents are masterpiece. you've performed
a excellent activity in this topic!

_ plenty of fish dating site of free dating ― 2016年09月07日 21:24

I constantly spent my half an hour to read this
web site's articles every day along with a mug of coffee.

_ Windows 10 Free Upgrade ― 2016年09月15日 23:32

I have been exploring for a little bit for any high-quality
articles or blog posts in this sort of house . Exploring in Yahoo I eventually stumbled upon this web site.
Reading this info So i'm satisfied to express that I've
a very excellent uncanny feeling I came upon just what I needed.
I most without a doubt will make sure to don?t disregard this website and
give it a glance on a continuing basis.

_ quest bars ― 2016年09月25日 11:29

We're a bunch of volunteers and opening a brand
new scheme in our community. Your site provided us with useful information to work on. You've performed an impressive task and our entire neighborhood will likely be grateful to you.

_ minecraft sweet and awesome download ― 2016年10月01日 23:26

When I originally commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is
added I get several emails with the same comment.
Is there any way you can remove people from that
service? Appreciate it!

_ plenty of fish dating site of free dating ― 2016年10月04日 18:13

Hello! I know this is kind of off topic but I was wondering which blog platform are you using for
this site? I'm getting fed up of Wordpress because I've had
problems with hackers and I'm looking at alternatives for another platform.
I would be awesome if you could point me in the direction of a
good platform.

_ plenty of fish dating site of free dating ― 2016年10月05日 09:02

I'd like to find out more? I'd care to find
out some additional information.

_ quest bars ― 2016年10月06日 09:54

Hello there, I found your web site via Google while
searching for a related subject, your site came up,
it appears to be like great. I've bookmarked it in my google bookmarks.

Hello there, simply turned into aware of your blog via Google, and located that it is truly informative.
I am going to be careful for brussels. I will be grateful in case you proceed this in future.
Lots of other people shall be benefited out of your writing.
Cheers!

_ minecraft ― 2016年10月12日 05:39

I'm impressed, I must say. Seldom do I encounter a blog that's equally educative and amusing, and let me tell you,
you have hit the nail on the head. The problem is
something which too few men and women are speaking intelligently about.
I am very happy that I stumbled across this during my search for something regarding this.

_ como descargar minecraft ― 2016年10月13日 02:34

What i don't realize is actually how you're now not actually much more well-preferred than you might be now.
You are very intelligent. You already know therefore considerably on the subject of this matter,
made me for my part consider it from a lot of varied angles.
Its like men and women aren't fascinated unless
it's something to do with Girl gaga! Your personal stuffs great.
All the time handle it up!

_ descargar minecraft para pc ― 2016年10月13日 17:04

What's up it's me, I am also visiting this site daily, this web page is truly pleasant and
the viewers are really sharing good thoughts.

_ juegos de paper minecraft ― 2016年10月15日 05:13

Everything is very open with a very clear
explanation of the issues. It was definitely informative. Your
website is very useful. Thank you for sharing!

_ gamefly 3 month free trial ― 2016年11月15日 11:30

It is perfect time to make a few plans for the
long run and it is time to be happy. I have
learn this publish and if I could I desire to suggest you some attention-grabbing issues or advice.

Perhaps you can write subsequent articles regarding this article.
I wish to read more issues about it! Gamefly 3 month free trial

_ gamefly 3 month free trial ― 2016年11月15日 22:41

I truly love your blog.. Pleasant colors & theme.
Did you create this website yourself? Please reply back as I'm
wanting to create my own personal website and would like to learn where you got this from
or what the theme is called. Thank you! Gamefly 3 month free trial

_ gamefly 3 month free trial ― 2016年11月16日 12:01

It's not my first time to pay a visit this
web page, i am visiting this site dailly and get nice facts from here everyday.
Gamefly 3 month free trial

_ questbar protein bar ― 2016年11月20日 07:25

Why people still use to read news papers when in this technological world all is existing on web?

_ tinyurl.com ― 2016年12月02日 08:33

I got this site from my pal who informed me about this website and now this time I am visiting this site
and reading very informative articles at this place.

※コメントの受付件数を超えているため、この記事にコメントすることができません。

トラックバック

このエントリのトラックバックURL: http://kida.asablo.jp/blog/2014/11/22/7500379/tb