Home
last modified time | relevance | path

Searched refs:Sigma0 (Results 1 – 22 of 22) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/sha/asm/
Dsha512-armv8.pl59 @Sigma0=(28,34,39);
68 @Sigma0=( 2,13,22);
127 ror $T0,$a,#$Sigma0[0]
129 eor $t1,$a,$a,ror#`$Sigma0[2]-$Sigma0[1]`
134 eor $t1,$T0,$t1,ror#$Sigma0[1] // Sigma0(a)
146 ror $T0,$a,#$Sigma0[0]
153 eor $T0,$T0,$a,ror#$Sigma0[1]
160 eor $t1,$T0,$a,ror#$Sigma0[2] // Sigma0(a)
Dsha512-armv4.pl509 my @Sigma0=(28,34,39);
547 vshr.u64 $t0,$a,#@Sigma0[0]
550 vshr.u64 $t1,$a,#@Sigma0[1]
551 vsli.64 $t0,$a,#`64-@Sigma0[0]`
553 vshr.u64 $t2,$a,#@Sigma0[2]
555 vsli.64 $t1,$a,#`64-@Sigma0[1]`
557 vsli.64 $t2,$a,#`64-@Sigma0[2]`
Dsha256-armv4.pl78 @Sigma0=( 2,13,22);
123 eor $t0,$a,$a,ror#`$Sigma0[1]-$Sigma0[0]`
141 eor $t0,$t0,$a,ror#`$Sigma0[2]-$Sigma0[0]` @ Sigma0(a)
145 add $h,$h,$t0,ror#$Sigma0[0] @ h+=Sigma0(a)
Dsha512-x86_64.pl149 @Sigma0=(28,34,39);
161 @Sigma0=( 2,13,22);
189 ror \$`$Sigma0[2]-$Sigma0[1]`,$a1
200 ror \$`$Sigma0[1]-$Sigma0[0]`,$a1
213 ror \$$Sigma0[0],$a1 # Sigma0(a)
/external/epid-sdk/epid/member/tiny/math/src/
Dsha256.c148 #define Sigma0(a) (ROTR((a), 2) ^ ROTR((a), 13) ^ ROTR((a), 22)) macro
187 t2 = Sigma0(a) + Maj(a, b, c); in sha256_compress()
206 t2 = Sigma0(a) + Maj(a, b, c); in sha256_compress()
Dsha512.c100 #define Sigma0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39)) macro
163 a = t + Sigma0(work_ptr[0]) + Maj(work_ptr[0], work_ptr[1], work_ptr[2]); in sha512_compress()
/external/wpa_supplicant_8/src/crypto/
Dsha256-internal.c75 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
108 t1 = Sigma0(a) + Maj(a, b, c); \ in sha256_compress()
Dsha512-internal.c96 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
138 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in sha512_compress()
/external/boringssl/src/crypto/fipsmodule/sha/
Dsha512.c352 #define Sigma0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39)) macro
388 A = T + Sigma0(A) + Maj(A, F[1], F[2]); in sha512_block_data_order()
401 A = T + Sigma0(A) + Maj(A, F[1], F[2]); in sha512_block_data_order()
422 h = Sigma0(a) + Maj(a, b, c); \
524 #undef Sigma0
Dsha256.c197 #define Sigma0(x) (ROTATE((x), 30) ^ ROTATE((x), 19) ^ ROTATE((x), 10)) macro
208 h = Sigma0(a) + Maj(a, b, c); \
328 #undef Sigma0
/external/curl/lib/
Dsha256.c122 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
147 unsigned long t1 = Sigma0(a) + Maj(a, b, c); \ in sha256_compress()
/external/e2fsprogs/lib/ext2fs/
Dsha256.c41 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
49 t1 = Sigma0(a) + Maj(a, b, c); \
Dsha512.c68 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
74 t1 = Sigma0(a) + Maj(a, b, c);\
/external/openssh/
Dblocks.c45 #define Sigma0(x) (ROTR(x,28) ^ ROTR(x,34) ^ ROTR(x,39)) macro
72 T2 = Sigma0(a) + Maj(a,b,c); \
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/digests/
DLongDigest.java265 W[t] = Sigma1(W[t - 2]) + W[t - 7] + Sigma0(W[t - 15]) + W[t - 16]; in processBlock()
372 private long Sigma0( in Sigma0() method in LongDigest
/external/f2fs-tools/tools/
Dsha512.c88 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
94 t1 = Sigma0(a) + Maj(a, b, c);\
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DLongDigest.java263 W[t] = Sigma1(W[t - 2]) + W[t - 7] + Sigma0(W[t - 15]) + W[t - 16]; in processBlock()
370 private long Sigma0( in Sigma0() method in LongDigest
/external/ImageMagick/MagickCore/
Dsignature.c595 #define Sigma0(x) (RotateRight(x,7) ^ RotateRight(x,18) ^ Trunc32((x) >> 3)) in TransformSignature() macro
699 W[i]=Trunc32(Sigma1(W[i-2])+W[i-7]+Sigma0(W[i-15])+W[i-16]); in TransformSignature()
/external/python/cpython3/Modules/
Dsha256module.c119 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
146 t1 = Sigma0(a) + Maj(a, b, c); \ in sha_transform()
Dsha512module.c128 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
155 t1 = Sigma0(a) + Maj(a, b, c); \ in sha512_transform()
/external/python/cpython2/Modules/
Dsha256module.c120 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
145 t1 = Sigma0(a) + Maj(a, b, c); \ in sha_transform()
Dsha512module.c130 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
155 t1 = Sigma0(a) + Maj(a, b, c); \ in sha512_transform()