# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright 2020 Raritan Inc. All rights reserved.
#
# This file was generated by IdlC from ServerSSLCert.idl.

use strict;

package Raritan::RPC::cert::ServerSSLCert::ReqInfo;

use Raritan::RPC::cert::ServerSSLCert::CommonAttributes;

sub encode {
    my ($in) = @_;
    my $encoded = {};
    $encoded->{'subject'} = Raritan::RPC::cert::ServerSSLCert::CommonAttributes::encode($in->{'subject'});
    $encoded->{'keyLength'} = 1 * $in->{'keyLength'};
    return $encoded;
}

sub decode {
    my ($agent, $in) = @_;
    my $decoded = {};
    $decoded->{'subject'} = Raritan::RPC::cert::ServerSSLCert::CommonAttributes::decode($agent, $in->{'subject'});
    $decoded->{'keyLength'} = $in->{'keyLength'};
    return $decoded;
}

1;
