Add blowfish ciphers to default provider
[openssl.git] / crypto / evp / evp_enc.c
2019-09-15 Shane LontisAdd blowfish ciphers to default provider
2019-09-13 Shane LontisAdd aes_xts cipher to providers
2019-09-05 Shane LontisChange provider params from int to size_t
2019-09-04 Richard LevitteNew function EVP_CIPHER_free()
2019-09-03 Richard LevitteRefactor how KEYMGMT methods get associated with other...
2019-08-29 Matt CaswellFix data races in EVP_CIPHER_fetch and EVP_MD_fetch
2019-08-26 Shane LontisCleanup ciphers and Add 3des ciphers.
2019-08-22 Shane LontisAdd basic aria and camellia ciphers modes to default...
2019-08-19 Shane LontisAdd aes_ccm to provider
2019-08-16 Richard LevitteRename ctx_{get,set}_params to {get,set}_ctx_params
2019-08-15 Richard LevitteAdd missing EVP param utility functions
2019-08-07 Matt CaswellDon't set ctx->cipher until after a successful fetch
2019-07-31 Shane LontisAdd gcm ciphers (aes and aria) to providers.
2019-07-31 Shane LontisAdd evp_util macros
2019-07-30 Matt CaswellDocument the provider CIPHER operation
2019-07-23 Richard LevitteAdd EVP_CIPHER_do_all_ex() and EVP_MD_do_all_ex()
2019-07-23 Richard LevitteAdd a mechnism to save the name of fetched methods
2019-07-15 Shane LontisAdd Common shared code needed to move aes ciphers to...
2019-07-11 Richard LevitteAdapt diverse EVP_CIPHER functions to use get_params...
2019-07-02 Richard Levitteossl_provider_upref to ossl_provider_up_ref
2019-06-28 Matt CaswellRename EVP_MD_upref/EVP_CIPHER_upref to EVP_MD_up_ref...
2019-05-26 Simo SorceFix input checks wrt legacy code
2019-05-23 Matt CaswellMake some EVP code available from within the FIPS module
2019-05-21 Matt CaswellRevert "EVP_*Update: ensure that input NULL with length...
2019-05-12 Richard LevitteEVP_FETCH: remove the need to transport the legacy...
2019-05-08 Guido VrankenEVP_EncryptUpdate, EVP_EncryptFinal_ex: don't branch...
2019-05-07 PauliCoverity CID 1444952: Null pointer dereferences
2019-05-07 PauliCoverity CID 1444953: Null pointer dereferences
2019-05-07 PauliCoverity CID 1444954: Integer handling issues
2019-05-07 PauliCoverity CID 1444958: Null pointer dereferences
2019-05-07 PauliCoverity CID 1444963: Null pointer dereferences
2019-04-30 Richard LevitteReplumbing: give the possibility for the provider to...
2019-04-23 Matt CaswellIf key or iv is NULL set the respective length to 0
2019-04-23 Matt CaswellFix EVP_CIPHER_CTX_rand_key()
2019-04-19 Matt CaswellMake implementation of blocksize, iv_length and key_len...
2019-04-19 Matt CaswellAdd a maximum output length to update and final calls
2019-04-19 Matt CaswellAdd iv length and key length params to the cipher init...
2019-04-19 Matt CaswellImplement AES CTR ciphers in the default provider
2019-04-19 Matt CaswellImplement AES CFB ciphers in the default provider
2019-04-19 Matt CaswellImplement AES OFB ciphers in the default provider
2019-04-19 Matt CaswellImplement AES CBC ciphers in the default provider
2019-04-19 Matt CaswellAdd support in the default provider for 192/128 bit...
2019-04-19 Matt CaswellImplement support for AES-256-ECB in the default provider
2019-04-19 Matt CaswellMake EVP_Encrypt*/EVP_Decrypt* and EVP_Cipher* provider...
2019-04-10 Richard LevitteEVP_*Update: ensure that input NULL with length 0 isn...
2018-12-10 Richard LevittePrevent calling decryption in an encryption context...
2018-12-06 Richard LevitteFollowing the license change, modify the boilerplates...
2018-04-02 Kurt RoeckxUse the private RNG for data that is not public
2018-03-20 Matt CaswellUpdate copyright year
2018-03-19 Kurt RoeckxDon't use a ssl specific DRBG anymore
2018-03-15 Dr. Matthias St... Publish the RAND_DRBG API
2018-02-28 Kurt RoeckxTell the ciphers which DRBG to use for generating rando...
2017-12-08 Rich SalzConsistent formatting for sizeof(foo)
2017-10-30 Kurt RoeckxOnly reset the ctx when a cipher is given
2017-10-18 KaoruTodaRemove parentheses of return.
2017-10-09 KaoruTodaSince return is inconsistent, I removed unnecessary...
2017-02-10 Lukasz PawelczykRestore EVP_CIPH_FLAG_LENGTH_BITS working properly
2017-02-07 Bernd EdlingerFix a crash in EVP_CIPHER_CTX_cleanup due to cipher_dat...
2017-01-25 Matt CaswellRemove assert from is_partially_overlapping()
2017-01-25 Matt CaswellFix the overlapping check for fragmented "Update" opera...
2016-07-31 Andy Polyakovevp/evp_enc.c: make assert error message more readable
2016-06-27 Andy Polyakovevp/evp_enc.c: refine partial buffer overlap detection.
2016-06-27 Andy Polyakovevp/evp_enc.c: check for partially[!] overlapping buffers
2016-05-17 Rich SalzCopyright consolidation 04/10
2016-05-16 Matt CaswellRemove an unneccessary check of cipher
2016-05-03 Matt CaswellFix encrypt overflow
2016-03-20 Rich SalzRemove #error from include files.
2016-02-25 Rich SalzGH715: ENGINE_finish can take NULL
2016-02-05 FdaSilvaYYGH601: Various spelling fixes.
2016-01-26 Rich SalzRemove /* foo.c */ comments
2016-01-12 Richard LevitteAdapt the internal EVP routines to opaque EVP_CIPHER
2016-01-12 Richard LevitteRemove EVP_CIPHER_CTX_flags, it's only confusing
2016-01-12 Richard LevitteAdapt the internal EVP routines to opaque EVP_CIPHER_CTX
2016-01-12 Richard LevitteMake EVP_CIPHER_CTX opaque and renew the creator /...
2015-12-10 Andy Polyakovevp/evp_enc.c: allow EVP_CIPHER.ctx_size to be 0.
2015-11-09 Matt CaswellContinue standardising malloc style for libcrypto
2015-09-03 Rich SalzAdd and use OPENSSL_zalloc
2015-08-10 Rich SalzRT3999: Remove sub-component version strings
2015-05-14 Richard LevitteIdentify and move common internal libcrypto header...
2015-05-13 Rich SalzRT3841: memset() cipher_data when allocated
2015-05-06 Rich Salzmemset, memcpy, sizeof consistency fixes
2015-05-04 Rich SalzUse safer sizeof variant in malloc
2015-05-01 Rich Salzfree null cleanup finale
2015-03-28 Rich Salzfree NULL cleanup
2015-01-29 Richard Levitteclang on Linux x86_64 complains about unreachable code.
2015-01-22 Matt CaswellRun util/openssl-format-source -v -c .
2014-12-17 Emilia KasperAdd a comment noting the padding oracle.
2014-12-17 Emilia KasperRevert "RT3425: constant-time evp_enc"
2014-10-15 Richard LevitteInclude "constant_time_locl.h" rather than "../constant...
2014-09-24 Emilia KasperRT3425: constant-time evp_enc
2013-07-17 Dr. Stephen HensonEVP support for wrapping algorithms.
2012-02-10 Dr. Stephen Hensononly cleanup ctx if we need to, save ctx flags when...
2011-10-13 Bodo MöllerMake CTR mode behaviour consistent with other modes:
2011-03-21 Dr. Stephen HensonUse a signed value to check return value of do_cipher().
2011-02-07 Dr. Stephen HensonUse 0 not -1 (since type is size_t) for finalisation...
2011-02-07 Dr. Stephen HensonNew flags EVP_CIPH_FLAG_CUSTOM_CIPHER in cipher structu...
2010-10-11 Dr. Stephen HensonPR: 2295
2010-07-28 Dr. Stephen HensonFix ctr mode properly this time....
2010-07-28 Dr. Stephen HensonMake ctr mode behaviour consistent with other modes.
2010-03-01 Dr. Stephen Henson'typo'
next