blob: 18deaa715d9b8dcf2b4e50a6073e1ec918582a80 [file] [log] [blame]
/**
* Login Configuration for JAAS.
*
* Specify that Kerberos v5 is a required login module for the
* example classes: GssExample and Mutual.
*/
other {
com.sun.security.auth.module.Krb5LoginModule required;
};
client {
com.sun.security.auth.module.Krb5LoginModule required
principal="john@IMC.ORG";
};
server {
com.sun.security.auth.module.Krb5LoginModule required storeKey=true
principal="sample/machineX.imc.org@IMC.ORG"
useKeyTab=true
keyTab=machineX.keytab;
};