17 lines
436 B
JavaScript
17 lines
436 B
JavaScript
/**
|
|
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/index.html#//apple_ref/doc/constant_group/Authentication_Type_Values>
|
|
* @providesModule KeychainAuthenticationTypesEnum
|
|
*/
|
|
'use strict';
|
|
|
|
var KeychainAuthenticationTypesEnum = module.exports = {
|
|
NTLM: true,
|
|
MSN: true,
|
|
DPA: true,
|
|
RPA: true,
|
|
HTTPBasic: true,
|
|
HTTPDigest: true,
|
|
HTMLForm: true,
|
|
Default: true,
|
|
};
|