Removes unused enum definitions.

This commit is contained in:
Joel Arvidsson 2016-01-19 11:19:22 -06:00
parent 913464d40a
commit 85b5f2fc6e
7 changed files with 0 additions and 125 deletions

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};