crypton-asn1-types-0.3.6: ASN.1 types
Copyright(c) 2010-2013 Vincent Hanquez <vincent@snarc.org>
LicenseBSD-style
Stabilityexperimental
Portabilityunknown
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.ASN1.OID

Contents

Description

 
Synopsis

Documentation

type OID = [Integer] Source #

Standard ASN.1 Object ID (OID).

classes

class OIDable a where Source #

Class of things that have an Object ID.

Methods

getObjectID :: a -> OID Source #

Return the object ID of an Object from the ObjectIdentifiable class.

class OIDNameable a where Source #

Class of things that can be named by Object ID.

Methods

fromObjectID :: OID -> Maybe a Source #

Try to convert an OID into an Object.