]> gitweb.factorcode.org Git - factor.git/blob - extra/crypto/aes/aes.factor
use radix literals
[factor.git] / extra / crypto / aes / aes.factor
1 ! Copyright (C) 2008 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: arrays kernel math memoize sequences math.bitwise
4 locals ;
5 IN: crypto.aes
6
7 CONSTANT: AES_BLOCK_SIZE 16
8
9 : sbox ( -- array )
10 {
11     0x63 0x7c 0x77 0x7b 0xf2 0x6b 0x6f 0xc5
12     0x30 0x01 0x67 0x2b 0xfe 0xd7 0xab 0x76
13     0xca 0x82 0xc9 0x7d 0xfa 0x59 0x47 0xf0
14     0xad 0xd4 0xa2 0xaf 0x9c 0xa4 0x72 0xc0
15     0xb7 0xfd 0x93 0x26 0x36 0x3f 0xf7 0xcc
16     0x34 0xa5 0xe5 0xf1 0x71 0xd8 0x31 0x15
17     0x04 0xc7 0x23 0xc3 0x18 0x96 0x05 0x9a
18     0x07 0x12 0x80 0xe2 0xeb 0x27 0xb2 0x75
19     0x09 0x83 0x2c 0x1a 0x1b 0x6e 0x5a 0xa0
20     0x52 0x3b 0xd6 0xb3 0x29 0xe3 0x2f 0x84
21     0x53 0xd1 0x00 0xed 0x20 0xfc 0xb1 0x5b
22     0x6a 0xcb 0xbe 0x39 0x4a 0x4c 0x58 0xcf
23     0xd0 0xef 0xaa 0xfb 0x43 0x4d 0x33 0x85
24     0x45 0xf9 0x02 0x7f 0x50 0x3c 0x9f 0xa8
25     0x51 0xa3 0x40 0x8f 0x92 0x9d 0x38 0xf5
26     0xbc 0xb6 0xda 0x21 0x10 0xff 0xf3 0xd2
27     0xcd 0x0c 0x13 0xec 0x5f 0x97 0x44 0x17
28     0xc4 0xa7 0x7e 0x3d 0x64 0x5d 0x19 0x73
29     0x60 0x81 0x4f 0xdc 0x22 0x2a 0x90 0x88
30     0x46 0xee 0xb8 0x14 0xde 0x5e 0x0b 0xdb
31     0xe0 0x32 0x3a 0x0a 0x49 0x06 0x24 0x5c
32     0xc2 0xd3 0xac 0x62 0x91 0x95 0xe4 0x79
33     0xe7 0xc8 0x37 0x6d 0x8d 0xd5 0x4e 0xa9
34     0x6c 0x56 0xf4 0xea 0x65 0x7a 0xae 0x08
35     0xba 0x78 0x25 0x2e 0x1c 0xa6 0xb4 0xc6
36     0xe8 0xdd 0x74 0x1f 0x4b 0xbd 0x8b 0x8a
37     0x70 0x3e 0xb5 0x66 0x48 0x03 0xf6 0x0e
38     0x61 0x35 0x57 0xb9 0x86 0xc1 0x1d 0x9e
39     0xe1 0xf8 0x98 0x11 0x69 0xd9 0x8e 0x94
40     0x9b 0x1e 0x87 0xe9 0xce 0x55 0x28 0xdf
41     0x8c 0xa1 0x89 0x0d 0xbf 0xe6 0x42 0x68
42     0x41 0x99 0x2d 0x0f 0xb0 0x54 0xbb 0x16
43 } ;
44
45 : inv-sbox ( -- array )
46     256 0 <array>
47     dup 256 [ dup sbox nth rot set-nth ] with each-integer ;
48
49 : rcon ( -- array )
50     {
51         0x00 0x01 0x02 0x04 0x08 0x10
52         0x20 0x40 0x80 0x1b 0x36
53     } ;
54
55 : xtime ( x -- x' )
56     [ 1 shift ]
57     [ 0x80 bitand 0 = 0 0x1b ? ] bi bitxor 8 bits ;
58
59 : ui32 ( a0 a1 a2 a3 -- a )
60     [ 8 shift ] [ 16 shift ] [ 24 shift ] tri*
61     bitor bitor bitor 32 bits ;
62
63 :: set-t ( T i -- )
64     i sbox nth :> a1
65     a1 xtime :> a2
66     a1 a2 bitxor :> a3
67
68     a2 a1 a1 a3 ui32 i T set-nth
69     a3 a2 a1 a1 ui32 i 0x100 + T set-nth
70     a1 a3 a2 a1 ui32 i 0x200 + T set-nth
71     a1 a1 a3 a2 ui32 i 0x300 + T set-nth ;
72
73 MEMO:: t-table ( -- array )
74     1024 0 <array>
75     dup 256 [ set-t ] with each-integer ;
76
77 :: set-d ( D i -- )
78     i inv-sbox nth :> a1
79     a1 xtime :> a2
80     a2 xtime :> a4
81     a4 xtime :> a8
82     a8 a1 bitxor :> a9
83     a9 a2 bitxor :> ab
84     a9 a4 bitxor :> ad
85     a8 a4 a2 bitxor bitxor :> ae
86
87     ae a9 ad ab ui32 i D set-nth
88     ab ae a9 ad ui32 i 0x100 + D set-nth
89     ad ab ae a9 ui32 i 0x200 + D set-nth
90     a9 ad ab ae ui32 i 0x300 + D set-nth ;
91     
92 MEMO:: d-table ( -- array )
93     1024 0 <array>
94     dup 256 [ set-d ] with each-integer ;
95
96
97 USE: multiline
98 /*
99 ! : HT ( i x s -- 
100
101
102 TUPLE: caes #rounds2 rkey ;
103 ! rounds / 2, rkey is a byte-array 60 long
104 ! key size is 16, 24, 32 bytes
105
106 TUPLE: caescbc prev4 caes ;
107
108
109
110 : aes-set-key-encode ( p key -- )
111     
112     ;
113 */