Removes unused enum definitions.
This commit is contained in:
parent
913464d40a
commit
85b5f2fc6e
|
@ -1,15 +0,0 @@
|
||||||
/**
|
|
||||||
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/index.html#//apple_ref/doc/constant_group/Keychain_Item_Accessibility_Constants>
|
|
||||||
* @providesModule KeychainAccessibilityEnum
|
|
||||||
*/
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var KeychainAccessibilityEnum = module.exports = {
|
|
||||||
whenUnlocked: true,
|
|
||||||
afterFirstUnlock: true,
|
|
||||||
always: true,
|
|
||||||
whenPasscodeSetThisDeviceOnly: true,
|
|
||||||
whenUnlockedThisDeviceOnly: true,
|
|
||||||
afterFirstUnlockThisDeviceOnly: true,
|
|
||||||
alwaysThisDeviceOnly: true,
|
|
||||||
};
|
|
|
@ -1,16 +0,0 @@
|
||||||
/**
|
|
||||||
* 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,
|
|
||||||
};
|
|
|
@ -1,11 +0,0 @@
|
||||||
/**
|
|
||||||
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/index.html#//apple_ref/doc/constant_group/Key_Class_Values>
|
|
||||||
* @providesModule KeychainKeyClassesEnum
|
|
||||||
*/
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var KeychainKeyClassesEnum = module.exports = {
|
|
||||||
Public: true,
|
|
||||||
Private: true,
|
|
||||||
Symmetric: true,
|
|
||||||
};
|
|
|
@ -1,17 +0,0 @@
|
||||||
/**
|
|
||||||
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/index.html#//apple_ref/doc/constant_group/Key_Type_Values>
|
|
||||||
* @providesModule KeychainKeyTypesEnum
|
|
||||||
*/
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var KeychainKeyTypesEnum = module.exports = {
|
|
||||||
RSA: true,
|
|
||||||
DSA: true,
|
|
||||||
AES: true,
|
|
||||||
DES: true,
|
|
||||||
'3DES': true,
|
|
||||||
RC4: true,
|
|
||||||
RC2: true,
|
|
||||||
CAST: true,
|
|
||||||
ECDSA: true,
|
|
||||||
};
|
|
|
@ -1,10 +0,0 @@
|
||||||
/**
|
|
||||||
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/#//apple_ref/doc/constant_group/Search_Attribute_Keys>
|
|
||||||
* @providesModule KeychainMatchLimitsEnum
|
|
||||||
*/
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var KeychainMatchLimitsEnum = module.exports = {
|
|
||||||
one: true,
|
|
||||||
all: true,
|
|
||||||
};
|
|
|
@ -1,39 +0,0 @@
|
||||||
/**
|
|
||||||
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/index.html#//apple_ref/doc/constant_group/Protocol_Values>
|
|
||||||
* @providesModule KeychainProtocolsEnum
|
|
||||||
*/
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var KeychainProtocolsEnum = module.exports = {
|
|
||||||
FTP: true,
|
|
||||||
FTPAccount: true,
|
|
||||||
HTTP: true,
|
|
||||||
IRC: true,
|
|
||||||
NNTP: true,
|
|
||||||
POP3: true,
|
|
||||||
SMTP: true,
|
|
||||||
SOCKS: true,
|
|
||||||
IMAP: true,
|
|
||||||
LDAP: true,
|
|
||||||
AppleTalk: true,
|
|
||||||
AFP: true,
|
|
||||||
Telnet: true,
|
|
||||||
SSH: true,
|
|
||||||
FTPS: true,
|
|
||||||
HTTPS: true,
|
|
||||||
HTTPProxy: true,
|
|
||||||
HTTPSProxy: true,
|
|
||||||
FTPProxy: true,
|
|
||||||
SMB: true,
|
|
||||||
RTSP: true,
|
|
||||||
RTSPProxy: true,
|
|
||||||
DAAP: true,
|
|
||||||
EPPC: true,
|
|
||||||
IPP: true,
|
|
||||||
NNTPS: true,
|
|
||||||
LDAPS: true,
|
|
||||||
TelnetS: true,
|
|
||||||
IMAPS: true,
|
|
||||||
IRCS: true,
|
|
||||||
POP3S: true,
|
|
||||||
};
|
|
|
@ -1,17 +0,0 @@
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var KeychainAccessibilityEnum = require('./Accessibility');
|
|
||||||
var KeychainAuthenticationTypesEnum = require('./AuthenticationTypes');
|
|
||||||
var KeychainKeyClassesEnum = require('./KeyClasses');
|
|
||||||
var KeychainKeyTypesEnum = require('./KeyTypes');
|
|
||||||
var KeychainProtocolsEnum = require('./Protocols');
|
|
||||||
var KeychainMatchLimitsEnum = require('./MatchLimits');
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
KeychainAccessibilityEnum,
|
|
||||||
KeychainAuthenticationTypesEnum,
|
|
||||||
KeychainKeyClassesEnum,
|
|
||||||
KeychainKeyTypesEnum,
|
|
||||||
KeychainProtocolsEnum,
|
|
||||||
KeychainMatchLimitsEnum,
|
|
||||||
};
|
|
Loading…
Reference in New Issue