Discuss this help topic in SecureBlackbox Forum

TElAccessDescription.AccessMethod

TElAccessDescription     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property specifies the type and format of authority information.

Declaration

[C#]
    byte[] AccessMethod;

[VB.NET]
    Property AccessMethod As Byte()

[Pascal]
    property AccessMethod : string;

[C++]
    void get_AccessMethod(std::vector<uint8_t> &OutResult);
    void set_AccessMethod(const std::vector<uint8_t> &Value);

[PHP]
    string get_AccessMethod()
    void set_AccessMethod(array of byte|string|NULL $Value)

[Java]
    byte[] getAccessMethod();
    void setAccessMethod(byte[] V);

Parameters

  • V -

Description

    This property specifies the format of access information (in form of Object Identifier). The only AccessMethod, defined by RFC 2459, is caIssuers. The following paragraph is taken from RFC 2459 (Housley, et. al.), part 4.2.2.1:

    «This access method is used when the additional information lists CAs that have issued certificates superior to the CA that issued the certificate containing this extension. The referenced CA Issuers description is intended to aid certificate users in the selection of a certification path that terminates at a point trusted by the certificate user. »


    Some implementations may support other (custom) access methods. One of them is id-ad-ocsp (OID 1.3.6.1.5.5.7.48.1).

See also:     AccessLocation    

Discuss this help topic in SecureBlackbox Forum