Java tutorial
//package com.java2s; /* * TeleStax, Open Source Cloud Communications * Copyright 2011-2015, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation; either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> * * For questions related to commercial use licensing, please contact sales@telestax.com. * */ import java.util.Properties; public class Main { public static void setProperties(Properties properties, String keystorePath, String keystorePassword, Boolean disableCertVerification) { properties.setProperty("javax.net.ssl.keyStore", keystorePath); properties.setProperty("javax.net.ssl.trustStore", keystorePath); properties.setProperty("javax.net.ssl.keyStorePassword", keystorePassword); properties.setProperty("javax.net.ssl.keyStoreType", "bks"); properties.setProperty("android.gov.nist.javax.sip.ENABLED_CIPHER_SUITES", "TLS_RSA_WITH_AES_128_CBC_SHA SSL_RSA_WITH_3DES_EDE_CBC_SHA"); if (disableCertVerification != null && disableCertVerification) { properties.setProperty("android.gov.nist.javax.sip.TLS_CLIENT_AUTH_TYPE", "DisabledAll"); } } }