# Copyright (c) 2024 Yuki Kimoto
# MIT License

class Net::SSLeay::OBJ {
  version_from Net::SSLeay;
  
  use Net::SSLeay::ASN1_OBJECT;
  
  # Class Methods
  native static method txt2nid : int ($s : string);
  
  native static method nid2obj : Net::SSLeay::ASN1_OBJECT ($n : int);
  
  native static method obj2nid : int ($o : Net::SSLeay::ASN1_OBJECT);
  
}