| /openbsd-src/lib/libcrypto/modes/ |
| H A D | xts128.c | 72 } tweak, scratch; in CRYPTO_xts128_encrypt() local 78 memcpy(tweak.c, iv, 16); in CRYPTO_xts128_encrypt() 80 (*ctx->block2)(tweak.c, tweak.c, ctx->key2); in CRYPTO_xts128_encrypt() 88 scratch.u[0] ^= tweak.u[0]; in CRYPTO_xts128_encrypt() 89 scratch.u[1] ^= tweak.u[1]; in CRYPTO_xts128_encrypt() 91 scratch.u[0] = ((u64 *)inp)[0] ^ tweak.u[0]; in CRYPTO_xts128_encrypt() 92 scratch.u[1] = ((u64 *)inp)[1] ^ tweak.u[1]; in CRYPTO_xts128_encrypt() 96 scratch.u[0] ^= tweak.u[0]; in CRYPTO_xts128_encrypt() 97 scratch.u[1] ^= tweak.u[1]; in CRYPTO_xts128_encrypt() 100 ((u64 *)out)[0] = scratch.u[0] ^= tweak.u[0]; in CRYPTO_xts128_encrypt() [all …]
|
| /openbsd-src/lib/libcrypto/aes/asm/ |
| H A D | aesni-x86_64.pl | 1311 my @tweak=map("%xmm$_",(10..15)); 1312 my ($twmask,$twres,$twtmp)=("%xmm8","%xmm9",@tweak[4]); 1341 movups ($ivp),@tweak[5] # load clear-text tweak 1346 &aesni_generate1("enc",$key2,$rounds,@tweak[5]); 1355 pcmpgtd @tweak[5],$twtmp # broadcast upper bits 1361 movdqa @tweak[5],@tweak[$i] 1362 paddq @tweak[5],@tweak[5] # psllq 1,$tweak 1364 pcmpgtd @tweak[5],$twtmp # broadcast upper bits 1365 pxor $twres,@tweak[5] 1380 movdqa @tweak[5],@tweak[4] [all …]
|
| H A D | aesni-x86.pl | 1019 { my ($tweak,$twtmp,$twres,$twmask)=($rndkey1,$rndkey0,$inout0,$inout1); 1049 &movdqa ($tweak,$inout0); 1052 &pcmpgtd($twtmp,$tweak); # broadcast upper bits 1068 &movdqa (&QWP(16*$i,"esp"),$tweak); 1069 &paddq ($tweak,$tweak); # &psllq($tweak,1); 1071 &pcmpgtd ($twtmp,$tweak); # broadcast upper bits 1072 &pxor ($tweak,$twres); 1075 &movdqa (&QWP(16*$i++,"esp"),$tweak); 1076 &paddq ($tweak,$tweak); # &psllq($tweak,1); 1080 &pxor ($inout5,$tweak); [all …]
|
| H A D | bsaes-x86_64.pl | 2185 paddq @XMM[7], @XMM[7] # psllq 1,$tweak 2234 paddq @XMM[7], @XMM[7] # psllq 1,$tweak 2252 paddq @XMM[7], @XMM[7] # psllq 1,$tweak 2574 paddq @XMM[7], @XMM[7] # psllq 1,$tweak 2623 paddq @XMM[7], @XMM[7] # psllq 1,$tweak 2641 paddq @XMM[7], @XMM[7] # psllq 1,$tweak 2823 paddq @XMM[7], @XMM[7] # psllq 1,$tweak
|
| /openbsd-src/sys/lib/libsa/ |
| H A D | aes_xts.c | 37 ctx->tweak[i] = blocknum & 0xff; in aes_xts_reinit() 41 bzero(ctx->tweak + AES_XTS_IVSIZE, AES_XTS_IVSIZE); in aes_xts_reinit() 43 rijndael_encrypt(&ctx->key2, ctx->tweak, ctx->tweak); in aes_xts_reinit() 53 block[i] = data[i] ^ ctx->tweak[i]; in aes_xts_crypt() 61 data[i] ^= ctx->tweak[i]; in aes_xts_crypt() 66 carry_out = ctx->tweak[i] & 0x80; in aes_xts_crypt() 67 ctx->tweak[i] = (ctx->tweak[i] << 1) | carry_in; in aes_xts_crypt() 70 ctx->tweak[0] ^= (AES_XTS_ALPHA & -carry_in); in aes_xts_crypt()
|
| H A D | aes_xts.h | 30 u_int8_t tweak[AES_XTS_BLOCKSIZE]; member
|
| /openbsd-src/sys/crypto/ |
| H A D | xform.c | 118 u_int8_t tweak[AES_XTS_BLOCKSIZE]; member 479 ctx->tweak[i] = blocknum & 0xff; in aes_xts_reinit() 483 bzero(ctx->tweak + AES_XTS_IVSIZE, AES_XTS_IVSIZE); in aes_xts_reinit() 485 rijndael_encrypt(&ctx->key2, ctx->tweak, ctx->tweak); in aes_xts_reinit() 495 block[i] = data[i] ^ ctx->tweak[i]; in aes_xts_crypt() 503 data[i] ^= ctx->tweak[i]; in aes_xts_crypt() 508 carry_out = ctx->tweak[i] & 0x80; in aes_xts_crypt() 509 ctx->tweak[i] = (ctx->tweak[i] << 1) | carry_in; in aes_xts_crypt() 512 ctx->tweak[0] ^= (AES_XTS_ALPHA & -carry_in); in aes_xts_crypt()
|
| /openbsd-src/gnu/usr.bin/perl/dist/Unicode-Normalize/ |
| H A D | Changes | 95 - Makefile.PL: a tweak 167 - tweak in pure perl: forced $codepoint to numeric (i.e. "+0065" to 65) 168 - tweak of POD and README. 171 - internal tweak (again): pack_U() and unpack_U(). 174 - internal tweak: for (?un)pack 'U'.
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | Packaging.rst | 14 etc.) will tweak them. This document lists settings we suggest you tweak.
|
| H A D | GitBisecting.rst | 65 hand and tweak the script until it works, then run ``git bisect good`` or
|
| H A D | XRay.rst | 66 get XRay instrumentation points. You can tweak that number through the
|
| /openbsd-src/gnu/usr.bin/perl/ext/SDBM_File/ |
| H A D | CHANGES | 16 This may look like a micro-performance tweak (maybe it is), but in fact,
|
| /openbsd-src/regress/sys/crypto/aesxts/ |
| H A D | aes_xts.c | 42 u_int8_t tweak[AES_XTS_BLOCKSIZE]; member
|
| /openbsd-src/sys/arch/amd64/amd64/ |
| H A D | aes_intel.S | 1088 pxor %xmm3,%xmm0 # xor block with tweak 1090 pxor %xmm3,%xmm0 # xor block with tweak 1122 pxor %xmm3,%xmm0 # xor block with tweak 1124 pxor %xmm3,%xmm0 # xor block with tweak
|
| H A D | aesni.c | 96 uint8_t *src, size_t len, uint8_t *tweak); 98 uint8_t *src, size_t len, uint8_t *tweak);
|
| /openbsd-src/gnu/usr.bin/perl/dist/Time-HiRes/ |
| H A D | Changes | 428 - VOS tweak for Makefile (core perl change #33259) 588 - tweak still needed for Const64(), from Jerry Hedden 846 - Change the Win32 recalibration limit to 0.5 seconds and tweak 895 - MPE/iX tweak (perl change #20042) 1069 - 12837: HiRes.t VMS tweak, from Craig A. Berry 1070 - 12797: HiRes.t VMS tweak, from Charles Lane 1071 - 12769: HiRes.t VMS tweak, from Craig A. Berry 1076 - 12680: minor VMS tweak, from Charles Lane
|
| /openbsd-src/gnu/usr.bin/perl/dist/I18N-LangTags/ |
| H A D | ChangeLog | 113 Slight tweak to ::List's entries for Greek.
|
| /openbsd-src/usr.sbin/pkg_add/OpenBSD/ |
| H A D | style.pod | 129 Let methods that tweak an object return the object itself,
|
| H A D | Ustar.pod | 26 # tweak some entry parameters
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/ |
| H A D | README.rst | 112 (In theory, the config approach means a new os / compiler just needs to tweak
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/doc/ |
| H A D | fragments.texi | 161 is installed, so you can instead tweak the @file{specs} file that will
|
| /openbsd-src/gnu/gcc/gcc/doc/ |
| H A D | fragments.texi | 168 is installed, so you can instead tweak the @file{specs} file that will
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/ |
| H A D | ChangeLog | 417 * testsuite/thread/pthread4.cc: Further tweak to avoid fini race. 2476 _S_extra_categories_size, tweak. 2484 _S_categories_size_*, tweak. 4442 both old and Euro-era localedata; tweak some tests. 5185 from the endianness of the platform; tweak UCS4 to UCS-4BE. 5199 * docs/doxygen/Intro.3: Date tweak. 5202 * docs/doxygen/mainpage.html: Date tweak. 5203 * docs/doxygen/run_doxygen: Version tweak. Copy tables.html over. 6297 const, tweak. 7023 * include/backward/tempbuf.h: Include <ext/memory>, tweak. [all …]
|
| H A D | ChangeLog-2001 | 3 * include/ext/iterator: Add #include <bits/std_iterator.h>, tweak. 35 tweak, add using declarations. 40 tweak, add using declarations. 52 tweak using declarations. 409 * include/bits/locale_facets.tcc: Re-arrange, tweak. 882 * libsupc++/eh_type.cc: Formatting tweak. 1043 Add hooks, tweak comments only. 1217 __throw_exception_again, tweak. 1613 * libsupc++/typeinfo: Doxygen markup tweak. 3257 * include/c_std/bits/cmath.tcc: Formatting tweak. [all …]
|
| /openbsd-src/etc/ |
| H A D | pf.os | 171 # Some users tweak their TCP/IP settings - enable or disable RFC1323 178 # possible /proc/sys/net/ipv4 tweak on Linux or so.
|