Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0944cd8

Browse files
committedMay 17, 2021
I27MB8: add kae phase2
1 parent d163aa0 commit 0944cd8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+6130
-830
lines changed
 

‎jdk/make/mapfiles/libj2kae/mapfile-vers

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2020, Huawei Technologies Co., Ltd. All rights reserved.
2+
# Copyright (c) 2021, Huawei Technologies Co., Ltd. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -32,14 +32,18 @@ SUNWprivate_1.1 {
3232
Java_org_openeuler_security_openssl_KAEDigest_nativeDigest;
3333
Java_org_openeuler_security_openssl_KAEDigest_nativeClone;
3434
Java_org_openeuler_security_openssl_KAEDigest_nativeFree;
35-
Java_org_openeuler_security_openssl_KAEAESCipher_nativeInit;
36-
Java_org_openeuler_security_openssl_KAEAESCipher_nativeUpdate;
37-
Java_org_openeuler_security_openssl_KAEAESCipher_nativeFinal;
38-
Java_org_openeuler_security_openssl_KAEAESCipher_nativeFree;
39-
Java_org_openeuler_security_openssl_KAEMac_nativeInit;
40-
Java_org_openeuler_security_openssl_KAEMac_nativeUpdate;
41-
Java_org_openeuler_security_openssl_KAEMac_nativeFinal;
42-
Java_org_openeuler_security_openssl_KAEMac_nativeFree;
35+
Java_org_openeuler_security_openssl_KAESymmetricCipherBase_nativeInit;
36+
Java_org_openeuler_security_openssl_KAESymmetricCipherBase_nativeUpdate;
37+
Java_org_openeuler_security_openssl_KAESymmetricCipherBase_nativeFinal;
38+
Java_org_openeuler_security_openssl_KAESymmetricCipherBase_nativeFinalGcm;
39+
Java_org_openeuler_security_openssl_KAESymmetricCipherBase_nativeFree;
40+
Java_org_openeuler_security_openssl_KAEECKeyPairGenerator_nativeGenerateParam;
41+
Java_org_openeuler_security_openssl_KAEECKeyPairGenerator_nativeGenerateKeyPair;
42+
Java_org_openeuler_security_openssl_KAEECDHKeyAgreement_nativeGenerateSecret;
43+
Java_org_openeuler_security_openssl_KAEHMac_nativeInit;
44+
Java_org_openeuler_security_openssl_KAEHMac_nativeUpdate;
45+
Java_org_openeuler_security_openssl_KAEHMac_nativeFinal;
46+
Java_org_openeuler_security_openssl_KAEHMac_nativeFree;
4347
Java_org_openeuler_security_openssl_KAERSAKeyPairGenerator_nativeGenerateKeyPair;
4448
Java_org_openeuler_security_openssl_KAERSACipher_nativeCreateRSAPrivateCrtKey;
4549
Java_org_openeuler_security_openssl_KAERSACipher_nativeCreateRSAPrivateKey;
@@ -51,6 +55,12 @@ SUNWprivate_1.1 {
5155
Java_org_openeuler_security_openssl_KAERSACipher_nativeRSAEncryptOAEPPadding;
5256
Java_org_openeuler_security_openssl_KAERSACipher_nativeRSADecryptOAEPPadding;
5357
Java_org_openeuler_security_openssl_KAERSACipher_nativeFreeKey;
58+
Java_org_openeuler_security_openssl_KAEDHKeyPairGenerator_nativeGenerateKeyPair;
59+
Java_org_openeuler_security_openssl_KAEDHKeyAgreement_nativeComputeKey;
60+
Java_org_openeuler_security_openssl_KAERSASignatureNative_rsaSign;
61+
Java_org_openeuler_security_openssl_KAERSASignatureNative_rsaVerify;
62+
Java_org_openeuler_security_openssl_KAERSASignatureNative_pssSign;
63+
Java_org_openeuler_security_openssl_KAERSASignatureNative_pssVerify;
5464

5565
local:
5666
*;

‎jdk/src/solaris/classes/org/openeuler/security/openssl/KAEAESCipher.java

Lines changed: 87 additions & 447 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.