1

pam_start() takes a parameter that is a structure ( http://linux.die.net/man/3/pam_conv ) where you can set a callback method for getting the password. Since I already have the password before my call to pam_start, I was wondering if there was a way to pass that information instead of setting up the callback.

Fantius
  • 3,806
  • 5
  • 32
  • 49

1 Answers1

6

Apparently, there is not a way.

But see my work-around at https://stackoverflow.com/a/5970078/55944

Community
  • 1
  • 1
Fantius
  • 3,806
  • 5
  • 32
  • 49