summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-08-30Add linux-mips32be target for new platformOpenSSL-fips-2_0_16OpenSSL-fips-2_0-stableSteve Marquess
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3300) (cherry picked from commit d674242a884368083bf1044cc4e6e30d8f452a50)
2017-08-30c6x/* "facelift":OpenSSL-fips-2_0_15Andy Polyakov
- make scripts executable; - "parameterize" platform selection in c6x/do_fips; - add c6x/fips_algvs.mak; - add c6x/run6x.js launcher for more recent CCS versions; Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4265) (cherry picked from commit 781280094ad389e8958631b97e70f498becbd9cb)
2017-08-30Add some C64x assembly modules [by minor adjustments of C64x+ modules].Andy Polyakov
AES, SHA256 and SHA512 modules can actually replace corresponding C64x+ modules. This is because C64x+ instructions don't actually provide "killer-argument" advantage in these modules. As for SHA1, even though its performance exactly same, C64x+ module is more responsive to interrupts, i.e. doesn't inhibit them for as long periods as C64x module. Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4265) (cherry picked from commit 5526e5791f1426553b6f4806d1ac82efd6ab33bc)
2016-11-14Update to match latest CAVSOpenSSL-fips-2_0_14Steve Marquess
Reviewed-by: Stephen Henson <steve@openssl.org>
2016-11-14FIPS MIPS assembly pack refresh.Andy Polyakov
Backport CVE-2014-3570 bug and postability fixes. Reviewed-by: Rich Salz <rsalz@openssl.org> (cherry picked from commit 10fa6736b137ad55bfcb0e72b4587ec419f1b13e)
2016-06-21PowerPC assembly pack: add POWER8 support.OpenSSL-fips-2_0_13Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org> (cherry picked from commit 4577871ca393275ac0436b2b08f1a75661ced314)
2016-02-15Add target for i686 cross compilationOpenSSL-fips-2_0_12Steve Marquess
Reviewed-by: Stephen Henson <steve@openssl.org>
2015-07-04Add new iOS subdirectoryOpenSSL-fips-2_0_11Steve Marquess
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org>
2015-07-04Add new VxWorks x86 platformAndy Polyakov
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org>
2015-05-13util/incore update that allows FINGERPRINT_premain-free build.OpenSSL-fips-2_0_10Andy Polyakov
As for complementary fips.c modification. Goal is to ensure that FIPS_signature does not end up in .bss segment, one guaranteed to be zeroed upon program start-up. One would expect explicitly initialized values to end up in .data segment, but it turned out that values explicitly initialized with zeros can end up in .bss. The modification does not affect program flow, because first byte was the only one of significance [to FINGERPRINT_premain]. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Add support for Android 5, both 32- and 64-bit cases.Andy Polyakov
Special note about additional -pie flag in android-armv7. The initial reason for adding it is that Android 5 refuses to execute non-PIE binaries. But what about older systems and previously validated platforms? It should be noted that flag is not used when compiling object code, fipscanister.o in this context, only when linking applications, *supplementary* fips_algvs used during validation procedure. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Additional vxWorks target.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13fipsalgtest.pl update.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Configure: add ios-cross target with ARM assembly support.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Add iOS-specific armv4cpud.S module.Andy Polyakov
Normally it would be generated from a perlasm module, but doing so would affect existing armv4cpuid.S, which in turn would formally void previously validated platforms. Hense separate module is generated. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Adapt ARM assembly pack for iOS.Andy Polyakov
This is achieved by filtering perlasm output through arm-xlate.pl. But note that it's done only if "flavour" argument is not 'void'. As 'void' is default value for other ARM targets, permasm output is not actually filtered on previously validated platforms. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13crypto/modes/modes_lcl.h: let STRICT_ALIGNMENT be on iOS.Andy Polyakov
While ARMv7 in general is capable of unaligned access, not all instructions actually are. And trouble is that compiler doesn't seem to differentiate those capable and incapable of unaligned access. As result exceptions could be observed in xts128.c and ccm128.c modules. Contemporary Linux kernels handle such exceptions by performing requested operation and resuming execution as is if it succeeded. While on iOS exception is fatal. Correct solution is to let STRICT_ALIGNMENT be on all ARM platforms, but doing so is in formal conflict with FIPS maintenance policy. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Add iOS-specific fips_algvs application.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Configure: engage ARMv8 assembly pack in ios64-cross target.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Engage ARMv8 assembly pack.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2015-05-13Add ARMv8 assembly pack.Andy Polyakov
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2014-10-24support for iOS 7.x/ARMv8OpenSSL-fips-2_0_9Dr. Stephen Henson
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Steve Marquess <marquess@openssl.org
2014-10-24Update fipsalgtest.pl to cope with changes in file names and formatDr. Stephen Henson
X9.31 tests need to look in files for '9.31' RSA-PSS tests may contain additonal text as well as "salt len: n". We now just look at the start of a filename for a match. Separate ECDSA2 test list. Reorder test to handle new formats: for example PQGVer for DSA2 can be detected based on file format but if this fails revert to PQGVER. For future debugging add a --debug-detect option which prints out more details of the test detection including the first few lines of each request file. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Steve Marquess <marquess@openssl.org
2014-07-11Remove Dual EC DRBG again...OpenSSL-fips-2_0_8Dr. Stephen Henson
Dual EC DRBG removal now accepted for 2.0.8 onwards.
2014-05-12Add linux-x86_64-cross target.OpenSSL-fips-2_0_7Dr. Stephen Henson
2014-05-12Revert "Remove Dual EC DRBG from FIPS module."Dr. Stephen Henson
Revert Dual EC DRBG removal commit as it was not accepted for 2.0.7 version of the module. This reverts commit 200f249b8c3b6439e0200d01caadc24806f1a983.
2013-12-16QNX6-armv4 support.OpenSSL-fips-2_0_6Dr. Stephen Henson
2013-12-16Remove Dual EC DRBG from FIPS module.Dr. Stephen Henson
2013-12-16eCos ARMv4/5 supportOpenSSL-fips-2_0_5Dr. Stephen Henson
2013-12-16sha1-armv4-large.pl: comply with ABI.Andy Polyakov
(cherry picked from commit 1a9d60d2e3b02d5e1954fc71c92bf3a6af691495)
2013-12-16Don't require tag before ciphertext in AESGCM modeDr. Stephen Henson
(cherry picked from commit 964eaad78ccdc6c4537664924e6082b08cc1c8ee)
2013-12-16Add MIPS support.OpenSSL-fips-2_0_4Dr. Stephen Henson
2013-04-10Support for WinEC7.OpenSSL-fips-2_0_3Dr. Stephen Henson
2012-10-14Add BSD-ppc85xx support and avoid copying overlapping buffers in fips_dssvs.cOpenSSL-fips-2_0_2Dr. Stephen Henson
2012-10-04update CHANGESOpenSSL-fips-2_0_1Dr. Stephen Henson
2012-10-04Add support for Windows CE and C64+ to FIPS module.Dr. Stephen Henson
2012-05-23file msincore was added on branch OpenSSL-fips-2_0-stable on 2012-10-04 ↵Dr. Stephen Henson
13:27:10 +0000
2012-05-23file hmac_sha1.pl was added on branch OpenSSL-fips-2_0-stable on 2012-10-04 ↵Dr. Stephen Henson
13:27:10 +0000
2012-01-18revert fipslink.pl unlink retry changeOpenSSL-fips-2_0-rc9OpenSSL-fips-2_0Dr. Stephen Henson
2012-01-18give a hand old assemblers assembling loop instruction. (original by Andy)Dr. Stephen Henson
2012-01-03typoOpenSSL-fips-2_0-rc8Dr. Stephen Henson
2012-01-03Prepare RC8Dr. Stephen Henson
2012-01-03unlink target and retry to avoid intermittent Win32 failuresDr. Stephen Henson
2011-12-12set version to rc8-devDr. Stephen Henson
2011-12-12Prepare for RC7.OpenSSL-fips-2_0-rc7Dr. Stephen Henson
2011-12-10Retry rename operation with a slight delay to workaround problems onDr. Stephen Henson
some versions of Windows.
2011-12-10use different names for asm temp files to avoid problems on some platformsDr. Stephen Henson
2011-12-08Close file streams in FIPS algorithm test utilities.Dr. Stephen Henson
2011-12-04prepare for RC6OpenSSL-fips-2_0-rc6Dr. Stephen Henson
2011-12-04For FIPS builds we don't use the normal test files (and in the restrictedDr. Stephen Henson
tarball some don't exist) so set TEST='' to avoid linking to them. This also avoids problems on platforms that copy instead of symlink.