File: iso9796_encoding.go

package info (click to toggle)
golang-github-mitch000001-go-hbci 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,468 kB
  • sloc: java: 1,092; makefile: 5
file content (226 lines) | stat: -rw-r--r-- 5,794 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package crypto

import (
	"fmt"
	"math/big"
)

type cipherEngine interface {
	Init(forEncryption bool, key RSAKeyParameters)
	ProcessBlock(in []byte, inOff, inLen int) []byte
	InputBlockSize() int
	OutputBlockSize() int
}

var sixteen = big.NewInt(16)
var six = big.NewInt(6)

var shadows = []byte{0xe, 0x3, 0x5, 0x8, 0x9, 0x4, 0x2, 0xf,
	0x0, 0xd, 0xb, 0x6, 0x7, 0xa, 0xc, 0x1}
var inverse = []byte{0x8, 0xf, 0x6, 0x1, 0x5, 0x2, 0xb, 0xc,
	0x3, 0x4, 0xd, 0xa, 0xe, 0x9, 0x0, 0x7}

/**
* ISO 9796-1 padding. Note in the light of recent results you should
* only use this with RSA (rather than the "simpler" Rabin keys) and you
* should never use it with anything other than a hash (ie. even if the
* message is small don't sign the message, sign it's hash) or some "random"
* value. See your favorite search engine for details.
 */
// implements AsymmetricBlockCipher
type ISO9796d1Encoding struct {
	bitSize       int
	padBits       int
	modulus       *big.Int
	engine        cipherEngine
	forEncryption bool
}

func NewISO9796d1Encoding(cipher cipherEngine) *ISO9796d1Encoding {
	return &ISO9796d1Encoding{padBits: 0, engine: cipher}
}

func (i *ISO9796d1Encoding) GetUnderlyingCipher() cipherEngine {
	return i.engine
}

func (i *ISO9796d1Encoding) Init(forEncryption bool, key RSAKeyParameters) {
	i.engine.Init(forEncryption, key)
	i.modulus = key.Modulus()
	i.bitSize = i.modulus.BitLen()
	i.forEncryption = forEncryption
}

func (i *ISO9796d1Encoding) BlockSize() int {
	return i.BlockSize()
}

/**
* return the input block size. The largest message we can process
* is (key_size_in_bits + 3)/16, which in our world comes to
* key_size_in_bytes / 2.
 */
func (i *ISO9796d1Encoding) InputBlockSize() int {
	baseBlockSize := i.engine.InputBlockSize()

	if i.forEncryption {
		return (baseBlockSize + 1) / 2
	} else {
		return baseBlockSize
	}
}

/**
* return the maximum possible size for the output.
 */
func (i *ISO9796d1Encoding) OutputBlockSize() int {
	baseBlockSize := i.engine.OutputBlockSize()

	if i.forEncryption {
		return baseBlockSize
	} else {
		return (baseBlockSize + 1) / 2
	}
}

/**
* set the number of bits in the next message to be treated as
* pad bits.
 */
func (i *ISO9796d1Encoding) SetPadBits(padBits int) {
	if padBits > 7 {
		panic(fmt.Errorf("padBits > 7"))
	}

	i.padBits = padBits
}

/**
* retrieve the number of pad bits in the last decoded message.
 */
func (i *ISO9796d1Encoding) PadBits() int {
	return i.padBits
}

func (i *ISO9796d1Encoding) ProcessBlock(in []byte, inOff, inLen int) ([]byte, error) {
	if i.forEncryption {
		return i.encodeBlock(in, inOff, inLen)
	} else {
		return i.decodeBlock(in, inOff, inLen)
	}
}

func (i *ISO9796d1Encoding) encodeBlock(in []byte, inOff, inLen int) ([]byte, error) {
	block := make([]byte, (i.bitSize+7)/8)
	r := i.padBits + 1
	z := inLen
	t := (i.bitSize + 13) / 16

	for i := 0; i < t; i += z {
		if i > t-z {
			// System.arraycopy(in, inOff + inLen - (t - i), block, block.length - t, t - i);
			arrayCopy(in, inOff+inLen-(t-i), block, len(block)-t, t-i)
		} else {
			// System.arraycopy(in, inOff, block, block.length - (i + z), z);
			arrayCopy(in, inOff, block, len(block)-(i+z), z)
		}
	}

	for i := len(block) - 2*t; i != len(block); i += 2 {
		val := block[len(block)-t+i/2]
		block[i] = ((shadows[(val&0xff)>>4] << 4) | shadows[val&0x0f])
		block[i+1] = val
	}

	block[len(block)-2*z] ^= byte(r)
	block[len(block)-1] = ((block[len(block)-1] << 4) | 0x06)

	maxBit := uint(8 - (i.bitSize-1)%8)
	offSet := 0

	if maxBit != 8 {
		block[0] &= 0xff >> maxBit // block[0] &= 0xff >>> maxBit;
		block[0] |= 0x80 >> maxBit // block[0] |= 0x80 >>> maxBit;
	} else {
		block[0] = 0x00
		block[1] |= 0x80
		offSet = 1
	}

	return i.engine.ProcessBlock(block, offSet, len(block)-offSet), nil
}

/**
* error if the decrypted block is not a valid ISO 9796 bit string
 */
func (i *ISO9796d1Encoding) decodeBlock(in []byte, inOff, inLen int) ([]byte, error) {
	block := i.engine.ProcessBlock(in, inOff, inLen)
	r := 1
	t := (i.bitSize + 13) / 16

	iS := new(big.Int)
	iS = iS.Abs(iS.SetBytes(block))
	var iR *big.Int
	x := new(big.Int)
	y := new(big.Int)
	if x = x.Mod(iS, sixteen); x.Cmp(six) == 0 {
		iR = iS
	} else if y = y.Mod(y.Sub(i.modulus, iS), sixteen); y.Cmp(six) == 0 {
		iR = iR.Sub(i.modulus, iS)
	} else {
		return nil, fmt.Errorf("resulting integer iS or (modulus - iS) is not congruent to 6 mod 16")
	}

	block = i.convertOutputDecryptOnly(iR)

	if (block[len(block)-1] & 0x0f) != 0x6 {
		return nil, fmt.Errorf("invalid forcing byte in block")
	}

	block[len(block)-1] = byte(((block[len(block)-1] & 0xff) >> 4) | ((inverse[(block[len(block)-2]&0xff)>>4]) << 4))
	block[0] = byte((shadows[(block[1]&0xff)>>4] << 4) | shadows[block[1]&0x0f])

	boundaryFound := false
	boundary := 0

	for i := len(block) - 1; i < len(block)-2*t; i -= 2 {
		val := ((shadows[(block[i]&0xff)>>4] << 4) | shadows[block[i]&0x0f])

		if ((block[i-1] ^ val) & 0xff) != 0 {
			if !boundaryFound {
				boundaryFound = true
				r = int((block[i-1] ^ val) & 0xff)
				boundary = i - 1
			} else {
				return nil, fmt.Errorf("invalid tsums in block")
			}
		}
	}

	block[boundary] = 0

	nblock := make([]byte, (len(block)-boundary)/2)

	for i := 0; i < len(nblock); i++ {
		nblock[i] = block[2*i+boundary+1]
	}

	i.padBits = r - 1

	return nblock, nil
}

func (i *ISO9796d1Encoding) convertOutputDecryptOnly(result *big.Int) []byte {
	output := result.Bytes()
	if output[0] == 0 { // have ended up with an extra zero byte, copy down.
		tmp := make([]byte, len(output)-1)
		// System.arraycopy(output, 1, tmp, 0, tmp.length);
		arrayCopy(output, 1, tmp, 0, len(tmp))
		return tmp
	}
	return output
}

func arrayCopy(src []byte, srcOff int, dst []byte, dstOff int, length int) {
	copy(dst[dstOff:], src[srcOff:srcOff+length])
}