mirror of
https://github.com/status-im/react-native-keychain.git
synced 2025-02-20 08:58:10 +00:00
40 lines
748 B
JavaScript
40 lines
748 B
JavaScript
/**
|
|
* 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,
|
|
};
|