fledge-power / fledge-south-iec61850

A south plugin for collecting data via the IEC 61850 protocol
3 stars 5 forks source link

Support for TLS #11

Closed aklira closed 7 months ago

mbourhis commented 1 year ago

Libiec61850 has TLS support, by using mbedtls.

Configuration parameters for TLS :

"tls" : {                                                                   
    "description" : "tls parameters",                                       
    "type" : "JSON",                                                        
    "displayName" : "TLS parameters",                                       
    "order" : "4",                                                          
    "default" : QUOTE({                                              
        "tls_conf" : {-                                                     
            "private_key" : "client.key",                                   
            "client_cert" : "client.cer",                                   
            "server_cert" : "server.cer",                                   
            "ca_cert" : "root.cer"                                          
        }                                                       
    })                                                                      
} 
mbourhis commented 1 year ago