From 167f765128c4aced6c6a9dcf73f16b933910a798 Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 14 Nov 2007 18:08:10 +0000 Subject: Rename MemoryRegion::append to push_back Change all callers in the library and self-test code. --- modules/eng_ossl/ossl_bc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/eng_ossl/ossl_bc.cpp b/modules/eng_ossl/ossl_bc.cpp index 0782a9674..91767258c 100644 --- a/modules/eng_ossl/ossl_bc.cpp +++ b/modules/eng_ossl/ossl_bc.cpp @@ -113,7 +113,7 @@ void EVP_BlockCipher::key(const byte key[], u32bit length) SecureVector full_key(key, length); if(cipher_name == "TripleDES" && length == 16) - full_key.append(key, 8); + full_key.push_back(key, 8); else if(EVP_CIPHER_CTX_set_key_length(&encrypt, length) == 0 || EVP_CIPHER_CTX_set_key_length(&decrypt, length) == 0) -- cgit v1.2.3