LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
asn1.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4#include <string>
5#include <logicalaccess/lla_core_api.hpp>
7
8namespace logicalaccess
9{
10class LLA_CORE_API ASN1
11{
12 public:
13
14 static ByteVector encode_oid(const std::string &oid);
15
16 static ByteVector encode_oid(const std::vector<unsigned int> &oid);
17};
18
19} // namespace logicalaccess
Definition: asn1.hpp:11
std::vector< uint8_t > ByteVector
Definition: lla_fwd.hpp:80
Definition: asn1.hpp:9