Hnxml Standard
    Preparing search index...

    Interface encryptedFile

    This generates an encrypted file that can be decrypted using Decypher.exe

    <encryptedFile path="home" name="encrypted_File.dec" extension=".txt" ip="192.168.1.1" header="This is the header" pass="decryptionPassword">
    This generates an encrypted file that can be decrypted using the password above. It decrypts to have the extension .txt
    </encryptedFile>
    <encryptedFile path="home" name="easy_encrypted_File.dec" ip="192.168.1.1" header="This is the header">
    By simply not providing a password like this one, it can be decrypted without a password
    </encryptedFile>
    <encryptedFile path="home" name="asdf2.dec" ip="192.168.1.1" header="This is the header" pass="password">
    This is an encrypted file referenced in ExampleMission.xml
    </encryptedFile>
    interface encryptedFile {
        extension?: string;
        header: string;
        ip: string;
        name: string;
        pass?: string;
        path: string;
    }
    Index

    Properties

    extension?: string

    the extension it decrypts to have

    解密后的文件扩展名

    header: string
    ip: string

    the IP of the node which encrypted it

    加密该文件的节点的IP

    name: string
    pass?: string
    path: string