summaryrefslogtreecommitdiffstats
path: root/src/crypto/isa-l/isa-l_crypto/sha1_mb/aarch64/sha1_mb_x1_ce.S
blob: 22f736793ee320983d08c9be5db61055806610b5 (plain)
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
/**********************************************************************
  Copyright(c) 2019 Arm Corporation All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in
      the documentation and/or other materials provided with the
      distribution.
    * Neither the name of Arm Corporation nor the names of its
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**********************************************************************/
	.arch armv8-a+crypto
	.text
	.align	2
	.p2align 3,,7

/*
Macros
*/

.macro	declare_var_vector_reg name:req,reg:req
	\name\()_q	.req	q\reg
	\name\()_v	.req	v\reg
	\name\()_s	.req	s\reg
.endm

/**
maros for round 4-67
*/
.macro sha1_4_rounds inst:req,msg0:req,msg1:req,msg2:req,msg3:req,abcd:req,e0:req,tmp0:req,e1:req,tmp1:req,k:req
	sha1h	\e0\()_s, \abcd\()_s
	\inst	\abcd\()_q,\e1\()_s,\tmp1\()_v.4s
	add 	\tmp1\()_v.4s,\msg3\()_v.4s,\k\()_v.4s
	sha1su1	\msg0\()_v.4s,\msg3\()_v.4s
	sha1su0	\msg1\()_v.4s,\msg2\()_v.4s,\msg3\()_v.4s
.endm


/*
Variable list
*/

	declare_var_vector_reg	key_0,28
	declare_var_vector_reg	key_1,29
	declare_var_vector_reg	key_2,30
	declare_var_vector_reg	key_3,31


/*
digest variables
*/
	declare_var_vector_reg	abcd,0
	declare_var_vector_reg	e0,1
	declare_var_vector_reg	e1,2
	declare_var_vector_reg	abcd_saved,3
	declare_var_vector_reg	e0_saved,4
/*
Message variables
*/
	declare_var_vector_reg	msg_0,16
	declare_var_vector_reg	msg_1,17
	declare_var_vector_reg	msg_2,18
	declare_var_vector_reg	msg_3,19
/*
Temporay variables
*/
	declare_var_vector_reg	tmp_0,5
	declare_var_vector_reg	tmp_1,6

/*
	void sha1_mb_ce_x1(SHA1_JOB * job, int len);
*/
/*
Arguements list
*/
	job 	.req	x0
	len	.req	w1
	data	.req	x2
	tmp	.req	x3
	.global	sha1_mb_ce_x1
	.type	sha1_mb_ce_x1, %function
sha1_mb_ce_x1:
	ldr	data, [job]
	ldr	abcd_q, [job, 64]
	ldr	e0_s, [job, 80]
	adr	tmp, KEY
	ld1	{key_0_v.4s-key_3_v.4s},[tmp]

start_loop:

	//load msgs
	ld1	{msg_0_v.4s-msg_3_v.4s},[data]

	//adjust loop parameter
	add	data,data,64
	sub	len, len, #1
	cmp	len, 0
	//backup digest
	mov	abcd_saved_v.16b,abcd_v.16b
	mov	e0_saved_v.16b,e0_v.16b

	rev32	msg_0_v.16b,msg_0_v.16b
	rev32	msg_1_v.16b,msg_1_v.16b
	add	tmp_0_v.4s,msg_0_v.4s,key_0_v.4s
	rev32	msg_2_v.16b,msg_2_v.16b
	add	tmp_1_v.4s,msg_1_v.4s,key_0_v.4s
	rev32	msg_3_v.16b,msg_3_v.16b

	/* rounds 0-3 */
	sha1h	e1_s,abcd_s
	sha1c	abcd_q,e0_s,tmp_0_v.4s
	add	tmp_0_v.4s,msg_2_v.4s,key_0_v.4s
	sha1su0	msg_0_v.4s,msg_1_v.4s,msg_2_v.4s

	sha1_4_rounds	sha1c,msg_0,msg_1,msg_2,msg_3,abcd,e0,tmp_0,e1,tmp_1,key_0     /* rounds 4-7 */
	sha1_4_rounds	sha1c,msg_1,msg_2,msg_3,msg_0,abcd,e1,tmp_1,e0,tmp_0,key_0
	sha1_4_rounds	sha1c,msg_2,msg_3,msg_0,msg_1,abcd,e0,tmp_0,e1,tmp_1,key_1     /* rounds 12-15 */
	sha1_4_rounds	sha1c,msg_3,msg_0,msg_1,msg_2,abcd,e1,tmp_1,e0,tmp_0,key_1
	sha1_4_rounds	sha1p,msg_0,msg_1,msg_2,msg_3,abcd,e0,tmp_0,e1,tmp_1,key_1     /* rounds 20-23 */
	sha1_4_rounds	sha1p,msg_1,msg_2,msg_3,msg_0,abcd,e1,tmp_1,e0,tmp_0,key_1
	sha1_4_rounds	sha1p,msg_2,msg_3,msg_0,msg_1,abcd,e0,tmp_0,e1,tmp_1,key_1
	sha1_4_rounds	sha1p,msg_3,msg_0,msg_1,msg_2,abcd,e1,tmp_1,e0,tmp_0,key_2
	sha1_4_rounds	sha1p,msg_0,msg_1,msg_2,msg_3,abcd,e0,tmp_0,e1,tmp_1,key_2     /* rounds 36-39 */
	sha1_4_rounds	sha1m,msg_1,msg_2,msg_3,msg_0,abcd,e1,tmp_1,e0,tmp_0,key_2
	sha1_4_rounds	sha1m,msg_2,msg_3,msg_0,msg_1,abcd,e0,tmp_0,e1,tmp_1,key_2
	sha1_4_rounds	sha1m,msg_3,msg_0,msg_1,msg_2,abcd,e1,tmp_1,e0,tmp_0,key_2
	sha1_4_rounds	sha1m,msg_0,msg_1,msg_2,msg_3,abcd,e0,tmp_0,e1,tmp_1,key_3     /* rounds 52-55 */
	sha1_4_rounds	sha1m,msg_1,msg_2,msg_3,msg_0,abcd,e1,tmp_1,e0,tmp_0,key_3
	sha1_4_rounds	sha1p,msg_2,msg_3,msg_0,msg_1,abcd,e0,tmp_0,e1,tmp_1,key_3
	sha1_4_rounds	sha1p,msg_3,msg_0,msg_1,msg_2,abcd,e1,tmp_1,e0,tmp_0,key_3

	/* rounds 68-71 */
	sha1h   e0_s,abcd_s
	sha1p   abcd_q,e1_s,tmp_1_v.4s
	add     tmp_1_v.4s,msg_3_v.4s,key_3_v.4s
	sha1su1 msg_0_v.4s,msg_3_v.4s

	/* rounds 72-75 */
	sha1h   e1_s,abcd_s
	sha1p   abcd_q,e0_s,tmp_0_v.4s

	/* rounds 76-79 */
	sha1h   e0_s,abcd_s
	sha1p   abcd_q,e1_s,tmp_1_v.4s



	add     abcd_v.4s,abcd_v.4s,abcd_saved_v.4s
	add     e0_v.2s,e0_v.2s,e0_saved_v.2s


	bgt	start_loop
	str	abcd_q,	[job, 64]
	str	e0_s, 	[job, 80]

	ret

	.size	sha1_mb_ce_x1, .-sha1_mb_ce_x1
	.section	.rodata.cst16,"aM",@progbits,16
	.align	4
KEY:
	.word	0x5a827999
	.word	0x5a827999
	.word	0x5a827999
	.word	0x5a827999
	.word	0x6ed9eba1
	.word	0x6ed9eba1
	.word	0x6ed9eba1
	.word	0x6ed9eba1
	.word	0x8f1bbcdc
	.word	0x8f1bbcdc
	.word	0x8f1bbcdc
	.word	0x8f1bbcdc
	.word	0xca62c1d6
	.word	0xca62c1d6
	.word	0xca62c1d6
	.word	0xca62c1d6