home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / security / winnt / ginastub / readme.txt < prev   
Encoding:
Text File  |  1996-07-19  |  971 b   |  21 lines

  1. This sample illustrates a pass-thru "stub" gina which can be used
  2. in some cases to simplify gina development.
  3.  
  4. A common use for a gina is to implement code which requires the
  5. credentials of the user logging onto the workstation.  The credentials
  6. may be required for syncronization with foreign account databases
  7. or custom authentication activities.
  8.  
  9. In this example case, it is possible to implement a simple gina
  10. stub layer which simply passes control for the required functions
  11. to the previously installed gina, and captures the interesting
  12. parameters from that gina.  In this scenario, the existing functionality
  13. in the existent gina is retained.  In addition, the development time
  14. is reduced drastically, as existing functionality does not need to
  15. be duplicated.
  16.  
  17. When dealing with credentials, take steps to maintain the security
  18. of the credentials.  For instance, if transporting credentials over
  19. a network, be sure to encrypt the credentials.
  20.  
  21.