|
|
|
@ -1,3 +1,18 @@ |
|
|
|
|
/* |
|
|
|
|
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
|
* You may obtain a copy of the License at |
|
|
|
|
* |
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
* |
|
|
|
|
* Unless required by applicable law or agreed to in writing, software |
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
|
|
|
* See the License for the specific language governing permissions and |
|
|
|
|
* limitations under the License. |
|
|
|
|
*/ |
|
|
|
|
package com.arialyy.aria.util; |
|
|
|
|
|
|
|
|
|
import android.text.TextUtils; |
|
|
|
@ -38,7 +53,7 @@ public class SSLContextUtil { |
|
|
|
|
* @param caPath 保存在assets目录下的CA证书完整路径 |
|
|
|
|
*/ |
|
|
|
|
public static SSLContext getSSLContext(String caAlias, String caPath) { |
|
|
|
|
if (TextUtils.isEmpty(caAlias) || TextUtils.isEmpty(caPath)){ |
|
|
|
|
if (TextUtils.isEmpty(caAlias) || TextUtils.isEmpty(caPath)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
// Load CAs from an InputStream
|
|
|
|
|