diff options
Diffstat (limited to 'include/vms/lbr.h')
-rw-r--r-- | include/vms/lbr.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/vms/lbr.h b/include/vms/lbr.h index 7d6f597cb0..91186ee371 100644 --- a/include/vms/lbr.h +++ b/include/vms/lbr.h @@ -255,6 +255,19 @@ struct vms_datadef #define DATA__LENGTH 512 #define DATA__DATA 6 +/* Key name block. This is used for keys longer than 128 bytes. */ + +struct vms_kbn +{ + /* Length of the key chunk. */ + unsigned char keylen[2]; + + /* RFA of the next chunk. */ + struct vms_rfa rfa; + + /* Followed by the key chunk. */ +}; + /* Module header. */ struct vms_mhd { |