repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
marvin-hansen/iggy-streaming-system
42,272
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjmixadd_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point mixed addition on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjmixa...
marvin-hansen/iggy-streaming-system
5,313
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_tomont_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert to Montgomery form z := (2^384 * x) mod p_384 // Input x[6]; output z[6] // // extern void bignum_to...
marvin-hansen/iggy-streaming-system
2,094
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_mod_p384_6.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Reduce modulo field characteristic, z := x mod p_384 // Input x[6]; output z[6] // // extern void bignum_mod...
marvin-hansen/iggy-streaming-system
4,918
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_littleendian_6.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert 6-digit (384-bit) bignum to/from little-endian form // Input x[6]; output z[6] // // extern void big...
marvin-hansen/iggy-streaming-system
5,265
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_deamont_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert from almost-Montgomery form, z := (x / 2^384) mod p_384 // Input x[6]; output z[6] // // extern void...
marvin-hansen/iggy-streaming-system
7,814
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_montsqr_p384_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery square, z := (x^2 / 2^384) mod p_384 // Input x[6]; output z[6] // // extern void bignum_montsqr_...
marvin-hansen/iggy-streaming-system
5,084
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_bigendian_6.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert 6-digit (384-bit) bignum to/from big-endian form // Input x[6]; output z[6] // // extern void bignum...
marvin-hansen/iggy-streaming-system
4,412
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_demont_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert from Montgomery form z := (x / 2^384) mod p_384, assuming x reduced // Input x[6]; output z[6] // // ...
marvin-hansen/iggy-streaming-system
1,915
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_neg_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Negate modulo p_384, z := (-x) mod p_384, assuming x reduced // Input x[6]; output z[6] // // extern void bi...
marvin-hansen/iggy-streaming-system
3,805
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_cmul_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Multiply by a single word modulo p_384, z := (c * x) mod p_384, assuming // x reduced // Inputs c, x[6]; output...
marvin-hansen/iggy-streaming-system
12,551
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_montmul_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery multiply, z := (x * y / 2^384) mod p_384 // Inputs x[6], y[6]; output z[6] // // extern void bign...
marvin-hansen/iggy-streaming-system
69,878
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_inv_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Modular inverse modulo p_384 = 2^384 - 2^128 - 2^96 + 2^32 - 1 // Input x[6]; output z[6] // // extern void big...
marvin-hansen/iggy-streaming-system
209,871
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjscalarmul_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery-Jacobian form scalar multiplication for P-384 // Input scalar[6], point[18]; output res[18] // // ex...
marvin-hansen/iggy-streaming-system
169,561
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjadd.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point addition on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjadd // ...
marvin-hansen/iggy-streaming-system
43,472
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjadd_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point addition on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjadd_alt //...
marvin-hansen/iggy-streaming-system
2,444
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_add_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Add modulo p_384, z := (x + y) mod p_384, assuming x and y reduced // Inputs x[6], y[6]; output z[6] // // e...
marvin-hansen/iggy-streaming-system
1,246
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_nonzero_6.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // 384-bit nonzeroness test, returning 1 if x is nonzero, 0 if x is zero // Input x[6]; output function return // ...
marvin-hansen/iggy-streaming-system
42,887
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjdouble_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point doubling on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjdouble_alt...
marvin-hansen/iggy-streaming-system
4,398
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_mod_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Reduce modulo field characteristic, z := x mod p_384 // Input x[k]; output z[6] // // extern void bignum_mod...
marvin-hansen/iggy-streaming-system
2,459
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_optneg_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Optionally negate modulo p_384, z := (-x) mod p_384 (if p nonzero) or // z := x (if p zero), assuming x reduced...
marvin-hansen/iggy-streaming-system
1,950
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_half_p384.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Halve modulo p_384, z := (x / 2) mod p_384, assuming x reduced // Input x[6]; output z[6] // // extern void ...
marvin-hansen/iggy-streaming-system
282,429
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjscalarmul.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery-Jacobian form scalar multiplication for P-384 // Input scalar[6], point[18]; output res[18] // // ex...
marvin-hansen/iggy-streaming-system
1,750
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/bignum_mux_6.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // 384-bit multiplex/select z := x (if p nonzero) or z := y (if p zero) // Inputs p, x[6], y[6]; output z[6] // //...
marvin-hansen/iggy-streaming-system
83,222
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/p384_montjdouble.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point doubling on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjdouble // ...
marvin-hansen/iggy-streaming-system
3,859
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_cmul_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Multiply by a single word modulo p_521, z := (c * x) mod p_521, assuming // x reduced // Inputs c, x[9]; output...
marvin-hansen/iggy-streaming-system
38,606
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jmixadd_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point mixed addition on NIST curve P-521 in Jacobian coordinates // // extern void p521_jmixadd_alt // ...
marvin-hansen/iggy-streaming-system
53,301
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jdouble.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point doubling on NIST curve P-521 in Jacobian coordinates // // extern void p521_jdouble // (uint64_t ...
marvin-hansen/iggy-streaming-system
18,205
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_mul_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Multiply modulo p_521, z := (x * y) mod p_521, assuming x and y reduced // Inputs x[9], y[9]; output z[9] // //...
marvin-hansen/iggy-streaming-system
40,830
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_mul_p521_neon.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Multiply modulo p_521, z := (x * y) mod p_521, assuming x and y reduced // Inputs x[9], y[9]; output z[9] // //...
marvin-hansen/iggy-streaming-system
13,787
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_montmul_p521_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery multiply, z := (x * y / 2^576) mod p_521 // Inputs x[9], y[9]; output z[9] // // extern void bign...
marvin-hansen/iggy-streaming-system
40,077
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jmixadd.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point mixed addition on NIST curve P-521 in Jacobian coordinates // // extern void p521_jmixadd // (uin...
marvin-hansen/iggy-streaming-system
33,857
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_sqr_p521_neon.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Square modulo p_521, z := (x^2) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void b...
marvin-hansen/iggy-streaming-system
3,087
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_triple_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Triple modulo p_521, z := (3 * x) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void...
marvin-hansen/iggy-streaming-system
16,163
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_montsqr_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery square, z := (x^2 / 2^576) mod p_521 // Input x[9]; output z[9] // // extern void bignum_montsqr_...
marvin-hansen/iggy-streaming-system
68,018
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jdouble_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point doubling on NIST curve P-521 in Jacobian coordinates // // extern void p521_jdouble_alt // (uint6...
marvin-hansen/iggy-streaming-system
12,980
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_mul_p521_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Multiply modulo p_521, z := (x * y) mod p_521, assuming x and y reduced // Inputs x[9], y[9]; output z[9] // //...
marvin-hansen/iggy-streaming-system
4,944
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_tolebytes_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert 9-digit 528-bit bignum to little-endian bytes // // extern void bignum_tolebytes_p521 // (uint8_...
marvin-hansen/iggy-streaming-system
3,654
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_tomont_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert to Montgomery form z := (2^576 * x) mod p_521 // Input x[9]; output z[9] // // extern void bignum_to...
marvin-hansen/iggy-streaming-system
2,192
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_neg_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Negate modulo p_521, z := (-x) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void bi...
marvin-hansen/iggy-streaming-system
73,370
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_inv_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Modular inverse modulo p_521 = 2^521 - 1 // Input x[9]; output z[9] // // extern void bignum_inv_p521(uint64_t...
marvin-hansen/iggy-streaming-system
5,406
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_fromlebytes_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert little-endian bytes to 9-digit 528-bit bignum // // extern void bignum_fromlebytes_p521 // (uint...
marvin-hansen/iggy-streaming-system
9,213
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_sqr_p521_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Square modulo p_521, z := (x^2) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void b...
marvin-hansen/iggy-streaming-system
3,195
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_deamont_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert from Montgomery form z := (x / 2^576) mod p_521 // Input x[9]; output z[9] // // extern void bignum_...
marvin-hansen/iggy-streaming-system
41,231
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_montmul_p521_neon.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery multiply, z := (x * y / 2^576) mod p_521 // Inputs x[9], y[9]; output z[9] // // extern void bign...
marvin-hansen/iggy-streaming-system
40,991
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jadd_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point addition on NIST curve P-521 in Jacobian coordinates // // extern void p521_jadd_alt // (uint64_t...
marvin-hansen/iggy-streaming-system
43,932
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jadd.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point addition on NIST curve P-521 in Jacobian coordinates // // extern void p521_jadd // (uint64_t p3[...
marvin-hansen/iggy-streaming-system
2,786
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_mod_p521_9.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Reduce modulo field characteristic, z := x mod p_521 // Input x[9]; output z[9] // // extern void bignum_mod...
marvin-hansen/iggy-streaming-system
1,799
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_double_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Double modulo p_521, z := (2 * x) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void...
marvin-hansen/iggy-streaming-system
2,369
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_optneg_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Optionally negate modulo p_521, z := (-x) mod p_521 (if p nonzero) or // z := x (if p zero), assuming x reduced...
marvin-hansen/iggy-streaming-system
2,312
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_sub_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Subtract modulo p_521, z := (x - y) mod p_521 // Inputs x[9], y[9]; output z[9] // // extern void bignum_sub...
marvin-hansen/iggy-streaming-system
15,374
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_sqr_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Square modulo p_521, z := (x^2) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void b...
marvin-hansen/iggy-streaming-system
2,550
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_add_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Add modulo p_521, z := (x + y) mod p_521, assuming x and y reduced // Inputs x[9], y[9]; output z[9] // // e...
marvin-hansen/iggy-streaming-system
9,675
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_montsqr_p521_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery square, z := (x^2 / 2^576) mod p_521 // Input x[9]; output z[9] // // extern void bignum_montsqr_...
marvin-hansen/iggy-streaming-system
64,566
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jscalarmul_alt.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Jacobian form scalar multiplication for P-521 // Input scalar[9], point[27]; output res[27] // // extern void p...
marvin-hansen/iggy-streaming-system
18,396
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_montmul_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery multiply, z := (x * y / 2^576) mod p_521 // Inputs x[9], y[9]; output z[9] // // extern void bign...
marvin-hansen/iggy-streaming-system
79,446
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/p521_jscalarmul.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Jacobian form scalar multiplication for P-521 // Input scalar[9], point[27]; output res[27] // // extern void p...
marvin-hansen/iggy-streaming-system
1,932
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_demont_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Convert from Montgomery form z := (x / 2^576) mod p_521, assuming x reduced // Input x[9]; output z[9] // // ...
marvin-hansen/iggy-streaming-system
33,514
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_montsqr_p521_neon.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Montgomery square, z := (x^2 / 2^576) mod p_521 // Input x[9]; output z[9] // // extern void bignum_montsqr_...
marvin-hansen/iggy-streaming-system
4,133
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_mod_n521_9.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Reduce modulo group order, z := x mod n_521 // Input x[9]; output z[9] // // extern void bignum_mod_n521_9 /...
marvin-hansen/iggy-streaming-system
1,800
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p521/bignum_half_p521.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Halve modulo p_521, z := (x / 2) mod p_521, assuming x reduced // Input x[9]; output z[9] // // extern void ...
marvin-hansen/iggy-streaming-system
27,078
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/unopt/p384_montjadd.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point addition on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjadd // ...
marvin-hansen/iggy-streaming-system
36,523
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/third_party/s2n-bignum/arm/p384/unopt/p384_montjdouble.S
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT-0 // ---------------------------------------------------------------------------- // Point doubling on NIST curve P-384 in Montgomery-Jacobian coordinates // // extern void p384_montjdouble // ...
marvin-hansen/iggy-streaming-system
62,471
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/crypto/poly1305/poly1305_arm_asm.S
#include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) # This implementation was taken from the public domain, neon2 version in # SUPERCOP by D. J. Bernstein and Peter Schwabe. # qhasm: int32 input_0 # qhasm: int32 input_1 # qhasm: int32 input_2 # qhasm: int32 input...
marvin-hansen/iggy-streaming-system
242,854
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/crypto/hrss/asm/poly_rq_mul.S
// Copyright (c) 2017, the HRSS authors. // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DIS...
marvin-hansen/iggy-streaming-system
5,330
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/test/trampoline-x86.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl abi_test_trampoline .hidden abi_test_trampoline .type abi_test_trampoline,@function .al...
marvin-hansen/iggy-streaming-system
98,892
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/sha256-586.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl sha256_block_data_order_nohw .hidden sha256_block_data_order_nohw .type sha256_block_da...
marvin-hansen/iggy-streaming-system
67,571
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/sha1-586.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl sha1_block_data_order_nohw .hidden sha1_block_data_order_nohw .type sha1_block_data_ord...
marvin-hansen/iggy-streaming-system
16,212
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/vpaes-x86.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text #ifdef BORINGSSL_DISPATCH_TEST #endif .align 64 .L_vpaes_consts: .long 218628480,235210255,168...
marvin-hansen/iggy-streaming-system
17,356
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/co-586.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl bn_mul_comba8 .hidden bn_mul_comba8 .type bn_mul_comba8,@function .align 16 bn_mul_comb...
marvin-hansen/iggy-streaming-system
11,526
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/md5-586.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl md5_block_asm_data_order .hidden md5_block_asm_data_order .type md5_block_asm_data_orde...
marvin-hansen/iggy-streaming-system
51,315
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/aesni-x86.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text #ifdef BORINGSSL_DISPATCH_TEST #endif .globl aes_hw_encrypt .hidden aes_hw_encrypt .type aes_h...
marvin-hansen/iggy-streaming-system
5,668
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/ghash-ssse3-x86.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl gcm_gmult_ssse3 .hidden gcm_gmult_ssse3 .type gcm_gmult_ssse3,@function .align 16 gcm_g...
marvin-hansen/iggy-streaming-system
15,486
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/bn-586.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl bn_mul_add_words .hidden bn_mul_add_words .type bn_mul_add_words,@function .align 16 bn...
marvin-hansen/iggy-streaming-system
8,981
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/x86-mont.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl bn_mul_mont .hidden bn_mul_mont .type bn_mul_mont,@function .align 16 bn_mul_mont: .L_b...
marvin-hansen/iggy-streaming-system
49,847
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/sha512-586.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl sha512_block_data_order .hidden sha512_block_data_order .type sha512_block_data_order,@...
marvin-hansen/iggy-streaming-system
6,610
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/fipsmodule/ghash-x86.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl gcm_init_clmul .hidden gcm_init_clmul .type gcm_init_clmul,@function .align 16 gcm_init...
marvin-hansen/iggy-streaming-system
19,257
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-x86/crypto/chacha/chacha-x86.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl ChaCha20_ctr32_nohw .hidden ChaCha20_ctr32_nohw .type ChaCha20_ctr32_nohw,@function .al...
marvin-hansen/iggy-streaming-system
10,917
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/test/trampoline-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .text // abi_test_trampoline loads callee-saved registers from |s...
marvin-hansen/iggy-streaming-system
47,076
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/aesv8-armx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .section .rodat...
marvin-hansen/iggy-streaming-system
34,129
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/sha256-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under the...
marvin-hansen/iggy-streaming-system
285,754
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-unroll8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include "openssl/arm_arch.h" #if __ARM_MAX_ARCH__>=8 .text .arch armv8.2-a+crypto .globl aesv8_...
marvin-hansen/iggy-streaming-system
7,433
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include "openssl/arm_arch.h" .text .globl beeu_mod_inverse_vartime .align 4 beeu_mod_inverse_...
marvin-hansen/iggy-streaming-system
37,795
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/p256-armv8-asm.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include "openssl/arm_arch.h" .section .rodata .align 5 Lpoly: .quad 0xffffffffffffffff,0x000000...
marvin-hansen/iggy-streaming-system
45,099
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/md5-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) .text .globl md5_block_asm_data_order md5_block_asm_data_order: // Save all callee-sav...
marvin-hansen/iggy-streaming-system
49,131
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/sha512-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under the...
marvin-hansen/iggy-streaming-system
17,297
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/ghashv8-armx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .globl gcm_init...
marvin-hansen/iggy-streaming-system
42,639
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/vpaes-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .section .rodata .align 7 // totally strategic alignment _vpaes_...
marvin-hansen/iggy-streaming-system
10,892
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/ghash-neon-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .text .globl gcm_init_neon .def gcm_init_neon .type 32 .endef...
marvin-hansen/iggy-streaming-system
28,215
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/sha1-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .text .globl sha1_block_data_order_nohw .def sha1_block_data_ord...
marvin-hansen/iggy-streaming-system
80,057
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .arch armv8-a+crypto .text .globl aes_gc...
marvin-hansen/iggy-streaming-system
21,910
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/keccak1600-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .text .align 8 // strategic alignment and padding that allows to us...
marvin-hansen/iggy-streaming-system
1,923
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/bn-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .text // BN_ULONG bn_add_words(BN_ULONG *rp, const BN_ULONG *ap, ...
marvin-hansen/iggy-streaming-system
31,029
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/armv8-mont.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .text .globl bn_mul_mont .def bn_mul_mont .type 32 .endef .al...
marvin-hansen/iggy-streaming-system
40,231
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/chacha/chacha-armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .section .rodata .align 5 Lsigma: .quad 0x3320646e61707865,0x6b20...
marvin-hansen/iggy-streaming-system
74,015
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/win-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <openssl/arm_arch.h> .section .rodata .align 7 Lchacha20_consts: .byte 'e','x','p','a',...
marvin-hansen/iggy-streaming-system
9,066
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-arm/crypto/test/trampoline-armv4.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) .syntax unified .arch armv7-a .fpu vfp .text @ abi_test_trampoline loads callee-saved registers f...
marvin-hansen/iggy-streaming-system
19,390
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-arm/crypto/fipsmodule/aesv8-armx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <openssl/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv7-a @ don't confuse not-so-la...
marvin-hansen/iggy-streaming-system
32,442
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-arm/crypto/fipsmodule/bsaes-armv7.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) @ Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. @ @ Licensed under the OpenS...
marvin-hansen/iggy-streaming-system
40,888
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-arm/crypto/fipsmodule/vpaes-armv7.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) .syntax unified .arch armv7-a .fpu neon #if defined(__thumb2__) .thumb #else .code 32 #endif .tex...
marvin-hansen/iggy-streaming-system
21,840
thirdparty/crates/aws-lc-sys-0.25.1/aws-lc/generated-src/linux-arm/crypto/fipsmodule/armv4-mont.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <openssl/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <openssl/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is used...