# Copyright (c) 2024 Yuki Kimoto
# MIT License
class Net::SSLeay::ASN1_INTEGER : pointer {
version_from Net::SSLeay;
use Fn;
# Class Methods
native static method new : Net::SSLeay::ASN1_INTEGER ();
private static method new_with_pointer : Net::SSLeay::ASN1_INTEGER ($pointer : Address, $options : object[] = undef) {
my $self = new Net::SSLeay::ASN1_INTEGER;
Fn->set_pointer($self, $pointer);
return $self;
}
# Instance Methods
native method get_int64 : long ();
native method set_int64 : void ($r : long);
native method DESTROY : void ();
}