use of org.batfish.datamodel.EncryptionAlgorithm in project batfish by batfish.
the class ConfigurationBuilder method exitSeikpr_encryption_algorithm.
@Override
public void exitSeikpr_encryption_algorithm(Seikpr_encryption_algorithmContext ctx) {
EncryptionAlgorithm alg = toEncryptionAlgorithm(ctx.encryption_algorithm());
_currentIkeProposal.setEncryptionAlgorithm(alg);
}
use of org.batfish.datamodel.EncryptionAlgorithm in project batfish by batfish.
the class ConfigurationBuilder method exitSeippr_encryption_algorithm.
@Override
public void exitSeippr_encryption_algorithm(Seippr_encryption_algorithmContext ctx) {
EncryptionAlgorithm alg = toEncryptionAlgorithm(ctx.encryption_algorithm());
_currentIpsecProposal.setEncryptionAlgorithm(alg);
}
Aggregations