Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename JNI related files #55

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <jni.h>
#include "jssl.h"
#include "cipher.h"
#include "com_canonical_openssl_cipher_OpenSSLCipher.h"
#include "OpenSSLCipher.h"

#define LARGE_SIZE 1024
extern OSSL_LIB_CTX *global_libctx;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "com_canonical_openssl_drbg_OpenSSLDrbg.h"
#include "OpenSSLDrbg.h"
#include "drbg.h"

/* TODOs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <jni.h>
#include "jssl.h"
#include "keyagreement.h"
#include "com_canonical_openssl_keyagreement_OpenSSLKeyAgreement.h"
#include "OpenSSLKeyAgreement.h"
#include "evp_utils.h"
#include "jni_utils.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
#include "jssl.h"
#include "mac.h"
#include "com_canonical_openssl_mac_OpenSSLMAC.h"
#include "OpenSSLMAC.h"
#include "jni_utils.h"

#define MAX_OUTPUT_LEN 512
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "com_canonical_openssl_md_OpenSSLMD.h"
#include "OpenSSLMD.h"
#include "jssl.h"
#include "md.h"
#include "jni_utils.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
#include "jni_utils.h"
#include "kdf.h"
#include "com_canonical_openssl_kdf_OpenSSLPBKDF2.h"
#include "OpenSSLPBKDF2.h"

#define MAX_KEY_SIZE 64
extern OSSL_LIB_CTX *global_libctx;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/
#include "jssl.h"
#include "com_canonical_openssl_signature_OpenSSLSignature.h"
#include "OpenSSLSignature.h"
#include "signature.h"
#include "evp_utils.h"
#include "jni_utils.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <jni.h>
#include "jssl.h"
#include "keyencapsulation.h"
#include "com_canonical_openssl_keyencapsulation_OpenSSLKEMRSA_RSAKEMDecapsulator.h"
#include "RSAKEMDecapsulator.h"
#include "evp_utils.h"
#include "jni_utils.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <jni.h>
#include "jssl.h"
#include "keyencapsulation.h"
#include "com_canonical_openssl_keyencapsulation_OpenSSLKEMRSA_RSAKEMEncapsulator.h"
#include "RSAKEMEncapsulator.h"
#include "evp_utils.h"
#include "jni_utils.h"

Expand Down
Loading