Home
last modified time | relevance | path

Searched refs:Sigma0 (Results 1 – 16 of 16) 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.pl505 my @Sigma0=(28,34,39);
543 vshr.u64 $t0,$a,#@Sigma0[0]
546 vshr.u64 $t1,$a,#@Sigma0[1]
547 vsli.64 $t0,$a,#`64-@Sigma0[0]`
549 vshr.u64 $t2,$a,#@Sigma0[2]
551 vsli.64 $t1,$a,#`64-@Sigma0[1]`
553 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.pl138 @Sigma0=(28,34,39);
150 @Sigma0=( 2,13,22);
178 ror \$`$Sigma0[2]-$Sigma0[1]`,$a1
189 ror \$`$Sigma0[1]-$Sigma0[0]`,$a1
202 ror \$$Sigma0[0],$a1 # Sigma0(a)
/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
133 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in sha512_compress()
/external/boringssl/src/crypto/fipsmodule/sha/
Dsha256.c202 #define Sigma0(x) (ROTATE((x), 30) ^ ROTATE((x), 19) ^ ROTATE((x), 10)) macro
213 h = Sigma0(a) + Maj(a, b, c); \
328 #undef Sigma0
Dsha512.c425 #define Sigma0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39)) macro
463 A = T + Sigma0(A) + Maj(A, F[1], F[2]); in sha512_block_data_order()
476 A = T + Sigma0(A) + Maj(A, F[1], F[2]); in sha512_block_data_order()
497 h = Sigma0(a) + Maj(a, b, c); \
601 #undef Sigma0
/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/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/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/ImageMagick/MagickCore/
Dsignature.c605 #define Sigma0(x) (RotateRight(x,7) ^ RotateRight(x,18) ^ Trunc32((x) >> 3)) in TransformSignature() macro
708 W[i]=Trunc32(Sigma1(W[i-2])+W[i-7]+Sigma0(W[i-15])+W[i-16]); in TransformSignature()
/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()