rmaauth.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:9k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * 
  3.  *  $Id: rmaauth.h,v 1.1 2003/05/30 02:17:36 gabest Exp $
  4.  *  
  5.  *  Copyright (C) 1995-1999 RealNetworks, Inc. All rights reserved.
  6.  *
  7.  *  http://www.real.com/devzone
  8.  *
  9.  *  This program contains proprietary 
  10.  *  information of Progressive Networks, Inc, and is licensed
  11.  *  subject to restrictions on use and distribution.
  12.  *
  13.  *  Authentication and password interfaces. 
  14.  *
  15.  */
  16. #ifndef _RMAAUTH_H_
  17. #define _RMAAUTH_H_
  18. /*
  19.  * Forward declarations of some interfaces defined or used here-in.
  20.  */
  21. typedef _INTERFACE  IRMAAuthenticator     IRMAAuthenticator;
  22. typedef _INTERFACE  IRMAAuthenticatorResponse     IRMAAuthenticatorResponse;
  23. typedef _INTERFACE  IRMAAuthenticatorRequest     IRMAAuthenticatorRequest;
  24. typedef _INTERFACE  IRMAPassword     IRMAPassword;
  25. typedef _INTERFACE  IRMAAuthenticationManagerResponse IRMAAuthenticationManagerResponse;
  26. typedef _INTERFACE  IRMAValues     IRMAValues;
  27. typedef _INTERFACE  IRMABuffer     IRMABuffer;
  28. /****************************************************************************
  29.  * 
  30.  *  Interface:
  31.  * 
  32.  *      IRMAAuthenticator
  33.  * 
  34.  *  Purpose:
  35.  * 
  36.  *      Provide a means of authenticating users.
  37.  *
  38.  *  IID_IRMAAuthenticator:
  39.  * 
  40.  *      {00001800-0901-11d1-8B06-00A024406D59}
  41.  * 
  42.  */
  43. DEFINE_GUID(IID_IRMAAuthenticator, 0x00001800, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  44. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  45. #define CLSID_IRMAAuthenticator IID_IRMAAuthenticator
  46. #undef  INTERFACE
  47. #define INTERFACE IRMAAuthenticator
  48. DECLARE_INTERFACE_(IRMAAuthenticator, IUnknown)
  49. {
  50.     STDMETHOD(QueryInterface)           (THIS_
  51. REFIID riid,
  52. void** ppvObj) PURE;
  53.     STDMETHOD_(ULONG,AddRef)          (THIS) PURE;
  54.     STDMETHOD_(ULONG,Release)         (THIS) PURE;
  55.     /*
  56.      * InitAuthenticator is called by the creator of the Authenticator
  57.      * object in order to pass it an IRMAAuthenticatorRequest object,
  58.      * usually implemented by the creator itself.
  59.      */
  60.     STDMETHOD(InitAuthenticator) (THIS_ 
  61.   IRMAAuthenticatorRequest* pRequest) PURE;
  62.     /*
  63.      * Authenticate is called by a file object (and others??)
  64.      * when it wants to ask the creator, presumably an FS Manager,
  65.      * for authorization to open it's file.
  66.      *
  67.      * Authenticate will call IRMAAuthenticateResponse::AuthenticateDone
  68.      * when done with PNR_OK or an error.
  69.      *
  70.      * File objects will presumably perform the Authenticate response as
  71.      * part of their Init() call, and not call InitDone until they receive
  72.      * a response one way or the other.
  73.      */
  74.     STDMETHOD(Authenticate) (THIS_
  75.      IRMAValues* pValues,
  76.      IRMAAuthenticatorResponse* pResponse) PURE;
  77.     /* GenerateAuthRequest is called by the creator of this object
  78.      * when they want to send an authentication request to someone.
  79.      */
  80.     STDMETHOD(GenerateAuthRequest) (THIS_
  81.     UINT32 authType,
  82.     REF(IRMAValues*) pValues) PURE;
  83.     /*
  84.      * AuthValuesReady is called by IRMAAuthenticatorRequest when it
  85.      * is ready to respond to a GetAuthValues request.
  86.      */
  87.     STDMETHOD(AuthValuesReady) (THIS_ 
  88. PN_RESULT result,
  89. IRMAValues* pValues) PURE;
  90. };
  91. /****************************************************************************
  92.  * 
  93.  *  Interface:
  94.  * 
  95.  *      IRMAAuthenticatorResponse
  96.  * 
  97.  *  Purpose:
  98.  *
  99.  *      Response object for the Authenticator class.
  100.  * 
  101.  *  IID_IRMAAuthenticatorResponse:
  102.  * 
  103.  *      {00001801-0901-11d1-8B06-00A024406D59}
  104.  * 
  105.  */
  106. DEFINE_GUID(IID_IRMAAuthenticatorResponse, 0x00001801, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  107. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  108. #undef  INTERFACE
  109. #define INTERFACE IRMAAuthenticatorResponse
  110. DECLARE_INTERFACE_(IRMAAuthenticatorResponse, IUnknown)
  111. {
  112.     STDMETHOD(QueryInterface)           (THIS_
  113. REFIID riid,
  114. void** ppvObj) PURE;
  115.     STDMETHOD_(ULONG,AddRef)          (THIS) PURE;
  116.     STDMETHOD_(ULONG,Release)         (THIS) PURE;
  117.     /* AuthenticateDone is called by an IRMAAuthenticator when it has
  118.      * finished it's authorization steps.  If the result is PNR_OK,
  119.      * then the values contain authorization information as generated by
  120.      * IRMAPassword.
  121.      */
  122.     STDMETHOD(AuthenticateDone) (THIS_ PN_RESULT result,
  123. IRMAValues* pAuthResponseValues) PURE;
  124. };
  125. /****************************************************************************
  126.  * 
  127.  *  Interface:
  128.  * 
  129.  *      IRMAAuthenticatorRequest
  130.  * 
  131.  *  Purpose:
  132.  *
  133.  *      Request object for the Authenticator class.
  134.  * 
  135.  *  IID_IRMAAuthenticatorRequest:
  136.  * 
  137.  *      {00001802-0901-11d1-8B06-00A024406D59}
  138.  * 
  139.  */
  140. DEFINE_GUID(IID_IRMAAuthenticatorRequest, 0x00001802, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  141. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  142. #undef  INTERFACE
  143. #define INTERFACE IRMAAuthenticatorRequest
  144. DECLARE_INTERFACE_(IRMAAuthenticatorRequest, IUnknown)
  145. {
  146.     STDMETHOD(QueryInterface)           (THIS_
  147. REFIID riid,
  148. void** ppvObj) PURE;
  149.     STDMETHOD_(ULONG,AddRef)          (THIS) PURE;
  150.     STDMETHOD_(ULONG,Release)         (THIS) PURE;
  151.     /* GetAuthValues is called by the Authenticator object when it
  152.      * needs to know the authorization info for this transaction.
  153.      *
  154.      * This object should call AuthValuesReady when ready.
  155.      */
  156.     STDMETHOD(GetAuthValues) (THIS_ IRMAValues* pOrigValues) PURE;
  157. };
  158. /****************************************************************************
  159.  * 
  160.  *  Interface:
  161.  * 
  162.  *      IRMAPassword
  163.  * 
  164.  *  Purpose:
  165.  * 
  166.  *      Provides a general password facility for storing of passwords in
  167.  * an encrypted form and a facility for verifying passwords securely
  168.  * over the network.
  169.  * 
  170.  *  IID_IRMAPassword:
  171.  * 
  172.  *      {00001700-0901-11d1-8B06-00A024406D59}
  173.  * 
  174.  */
  175. #define PN_AUTH_BASIC 1
  176. #define PN_AUTH_DIGEST 2
  177. #define PN_AUTH_RN5 3
  178. #define PN_AUTH_NTLM 4
  179. DEFINE_GUID(IID_IRMAPassword, 0x00001700, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  180. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  181. #undef  INTERFACE
  182. #define INTERFACE IRMAPassword
  183. DECLARE_INTERFACE_(IRMAPassword, IUnknown)
  184. {
  185.     /*
  186.      *  IUnknown methods
  187.      */
  188.     STDMETHOD(QueryInterface)           (THIS_
  189. REFIID riid,
  190. void** ppvObj) PURE;
  191.     STDMETHOD_(ULONG,AddRef)          (THIS) PURE;
  192.     STDMETHOD_(ULONG,Release)         (THIS) PURE;
  193.     /*
  194.      *  IRMAPassword methods
  195.      */
  196.     STDMETHOD(Crypt) (THIS_ IRMAValues* pAuthentication) PURE;
  197.     STDMETHOD(Verify) (THIS_ IRMAValues* pAuth1, IRMAValues* pAuth2) PURE;
  198.     STDMETHOD(AsString) (THIS_ IRMAValues* pAuth, REF(IRMABuffer*) pBuffer) PURE;
  199.     STDMETHOD(AsValues) (THIS_ const char* str, IRMAValues* pValues) PURE;
  200.     /*
  201.      * CreateBuffer is provided for the convenince of external users,
  202.      * who would otherwise have to get a context and common class factory
  203.      * just to create IRMABuffers.  This method can be used instead, but
  204.      * is not advisable if other means are available.
  205.      */
  206.     STDMETHOD(CreateBuffer) (THIS_ REF(IRMABuffer*) pBuffer) PURE;
  207.     /*
  208.      * Ditto for CreateValues
  209.      */
  210.     STDMETHOD(CreateValues) (THIS_ REF(IRMAValues*) pValues) PURE;
  211. };
  212. /****************************************************************************
  213.  * 
  214.  *  Interface:
  215.  * 
  216.  *      IRMAAuthenticationManager
  217.  * 
  218.  *  Purpose:
  219.  * 
  220.  *      Provide a means of authenticating users.
  221.  *
  222.  *  IID_IRMAAuthenticator:
  223.  * 
  224.  *      {00001a00-0901-11d1-8B06-00A024406D59}
  225.  * 
  226.  */
  227. DEFINE_GUID(IID_IRMAAuthenticationManager, 0x00001a00, 0x901, 0x11d1,
  228.     0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  229. #undef  INTERFACE
  230. #define INTERFACE IRMAAuthenticationManager
  231. DECLARE_INTERFACE_(IRMAAuthenticationManager, IUnknown)
  232. {
  233.     STDMETHOD(QueryInterface)           (THIS_
  234. REFIID riid,
  235. void** ppvObj) PURE;
  236.     STDMETHOD_(ULONG,AddRef)          (THIS) PURE;
  237.     STDMETHOD_(ULONG,Release)         (THIS) PURE;
  238.     /* HandleAuthenticationRequest is called when the core wants us to get
  239.      * a username and password.
  240.      */
  241.     STDMETHOD(HandleAuthenticationRequest) (
  242. THIS_ IRMAAuthenticationManagerResponse* pResponse) PURE;
  243. };
  244. /****************************************************************************
  245.  * 
  246.  *  Interface:
  247.  * 
  248.  *      IRMAAuthenticationManagerResponse
  249.  * 
  250.  *  Purpose:
  251.  * 
  252.  *      Response object for IRMAAuthenticationManager.
  253.  *
  254.  *  IID_IRMAAuthenticator:
  255.  * 
  256.  *      {00001a01-0901-11d1-8B06-00A024406D59}
  257.  * 
  258.  */
  259. DEFINE_GUID(IID_IRMAAuthenticationManagerResponse, 0x00001a01, 0x901, 0x11d1,
  260.             0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59); 
  261. #undef  INTERFACE
  262. #define INTERFACE IRMAAuthenticationManagerResponse
  263. DECLARE_INTERFACE_(IRMAAuthenticationManagerResponse, IUnknown)
  264. {
  265.     STDMETHOD(QueryInterface)           (THIS_
  266. REFIID riid,
  267. void** ppvObj) PURE;
  268.     STDMETHOD_(ULONG,AddRef)          (THIS) PURE;
  269.     STDMETHOD_(ULONG,Release)         (THIS) PURE;
  270.     /* HandleAuthenticationRequest is called when the core wants us to get
  271.      * a username and password.
  272.      */
  273.     STDMETHOD(AuthenticationRequestDone) (THIS_
  274.   PN_RESULT result,
  275.   const char* pUserName,
  276.   const char* pPassword) PURE;
  277. };
  278. #ifdef _MACINTOSH
  279. #pragma export on
  280. #endif
  281. STDAPI CreatePassword(IUnknown** /* OUT */ ppIUnknown);
  282. #ifdef _MACINTOSH
  283. #pragma export off
  284. #endif
  285. #endif /* _RMAAUTH_H_ */