jasone
November 25, 2022, 7:47am
1
Does anybody know if the EAP-TLS authentication option is supported?
tmchen
December 13, 2022, 1:44pm
2
Hi @jasone ,
Current free5GC only support 5G_AKA and EAP_AKA’.
You can trace the source code in function BuildAuthenticationRequest
which is under file amf/intenrnal/gmm/message/build.go
hope this is helpful to you
package message
import (
"encoding/base64"
"encoding/hex"
"github.com/mitchellh/mapstructure"
"github.com/free5gc/amf/internal/context"
"github.com/free5gc/amf/internal/logger"
"github.com/free5gc/amf/internal/nas/nas_security"
"github.com/free5gc/amf/pkg/factory"
"github.com/free5gc/nas"
"github.com/free5gc/nas/nasConvert"
"github.com/free5gc/nas/nasMessage"
"github.com/free5gc/nas/nasType"
"github.com/free5gc/openapi/models"
)
func BuildDLNASTransport(ue *context.AmfUe, accessType models.AccessType, payloadContainerType uint8, nasPdu []byte,
This file has been truncated. show original