Simple Module CryptoModule

Package: oversim.common
File: src/common/CryptoModule.ned

C++ definition

The CryptoModule contains several methods used for message authentication. It is also used as a container for crypographic keys.

Author: Ingmar Baumgart, Axel Rengstorf

CryptoModule

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

InetOverlayHost (compound module)

Host that participates in the overlay

OverlayAccessRouter (compound module)

Access router that participates in the overlay

OverlayRouter (compound module)

Router in the overlay network

SimpleMultiOverlayHost (compound module)

Host in the simple network that participates in the overlay

SimpleOverlayHost (compound module)

Host in the simple network that participates in the overlay

SingleHost (compound module)

simulates a single host to connect it to a real network

Parameters:

Name Type Default value Description
keyFile string

the name of the file containing the public key pair used to sign messages

Properties:

Name Value Description
display i=block/table

Source code:

//
// The CryptoModule contains several methods used for message authentication. It is also used as a container for
// crypographic keys.
//
// @author Ingmar Baumgart, Axel Rengstorf
// 
simple CryptoModule
{
    parameters:
        @display("i=block/table");
        string keyFile; // the name of the file containing the public key pair used to sign messages
}