summaryrefslogtreecommitdiffstats
blob: 6b98a95de7ab982b94584bc56728a5bab5023e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2012 Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2010 Remko Tronçon.
 * All rights reserved.
 */
package com.isode.stroke.tls;

import com.isode.stroke.tls.java.JSSEContextFactory;

public class PlatformTLSFactories {
    public TLSContextFactory getTLSContextFactory() {        
        return new JSSEContextFactory();
    }

    public CertificateFactory getCertificateFactory() {
        /*FIXME: Implement*/
        return null;
    }
}