diff options
Diffstat (limited to 'src/core/function/aes')
-rw-r--r-- | src/core/function/aes/aes_ssl.h | 8 | ||||
-rw-r--r-- | src/core/function/aes/aes_ssl_cbc.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/core/function/aes/aes_ssl.h b/src/core/function/aes/aes_ssl.h index b5f0820f..e75b68dd 100644 --- a/src/core/function/aes/aes_ssl.h +++ b/src/core/function/aes/aes_ssl.h @@ -29,11 +29,11 @@ #ifndef GPGFRONTEND_AES_SSL_H #define GPGFRONTEND_AES_SSL_H -#include "GpgFrontend.h" - #include <openssl/aes.h> #include <openssl/evp.h> +#include "GpgFrontend.h" + namespace GpgFrontend::RawAPI { /** @@ -69,6 +69,6 @@ uint8_t *aes_256_cbc_encrypt(EVP_CIPHER_CTX *e, uint8_t *plaintext, int *len); */ uint8_t *aes_256_cbc_decrypt(EVP_CIPHER_CTX *e, uint8_t *ciphertext, int *len); -} // namespace GpgFrontend::RawAPI +} // namespace GpgFrontend::RawAPI -#endif // GPGFRONTEND_AES_SSL_H +#endif // GPGFRONTEND_AES_SSL_H diff --git a/src/core/function/aes/aes_ssl_cbc.cpp b/src/core/function/aes/aes_ssl_cbc.cpp index 95ae0ce2..88a54baa 100644 --- a/src/core/function/aes/aes_ssl_cbc.cpp +++ b/src/core/function/aes/aes_ssl_cbc.cpp @@ -96,4 +96,4 @@ uint8_t *aes_256_cbc_decrypt(EVP_CIPHER_CTX *e, uint8_t *ciphertext, int *len) { return plaintext; } -} // namespace GpgFrontend::RawAPI
\ No newline at end of file +} // namespace GpgFrontend::RawAPI
\ No newline at end of file |