1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #ifndef AWS_JNI_CRT_CREDENTIALS_H 7 #define AWS_JNI_CRT_CREDENTIALS_H 8 9 #include <jni.h> 10 11 struct aws_credentials; 12 13 struct aws_credentials *aws_credentials_new_from_java_credentials(JNIEnv *env, jobject java_credentials); 14 jobject aws_java_credentials_from_native_new(JNIEnv *env, const struct aws_credentials *credentials); 15 16 #endif /* AWS_JNI_CRT_CREDENTIALS_H */ 17