3

What is the package that contain the implementation of IPsec and what is the package that contain the implementation of cypher algorithms that IPsec uses for enctiption?

BuZZ-dEE
  • 14,223

1 Answers1

0

IPsec package you can install with ipsec-tools package. To install that open your terminal with CTRL+ALT+T and then type as

sudo apt-get install ipsec-tools

and cypher algorithms are not direct but you can get them through the python .

sudo apt-get install python-otr

you can get any package source with this command

 sudo apt-get source <packagename>

for example:

 sudo apt-get source ipsec-tools
Raja G
  • 102,391
  • 106
  • 255
  • 328