Add keychain service

This commit is contained in:
Aleksey Zgurskiy
2020-02-02 20:20:08 +02:00
parent b85914824a
commit b675113b21
9 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
//
// Config.xcconfig
// keychain-kit
//
// Created by Aleksey Zgurskiy on 02.02.2020.
// Copyright © 2020 mr.noone. All rights reserved.
//
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974
INFOPLIST_FILE = keychain-kit/Support Files/Info.plist
PRODUCT_NAME = KeychainKit // $(TARGET_NAME:c99extidentifier)

View File

@@ -0,0 +1,12 @@
//
// Debug.xcconfig
// keychain-kit
//
// Created by Aleksey Zgurskiy on 02.02.2020.
// Copyright © 2020 mr.noone. All rights reserved.
//
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974
#include "Config.xcconfig"

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>

View File

@@ -0,0 +1,12 @@
//
// Release.xcconfig
// keychain-kit
//
// Created by Aleksey Zgurskiy on 02.02.2020.
// Copyright © 2020 mr.noone. All rights reserved.
//
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974
#include "Config.xcconfig"

View File

@@ -0,0 +1,19 @@
//
// keychain_kit.h
// keychain-kit
//
// Created by Aleksey Zgurskiy on 02.02.2020.
// Copyright © 2020 mr.noone. All rights reserved.
//
#import <Foundation/Foundation.h>
//! Project version number for keychain_kit.
FOUNDATION_EXPORT double keychain_kitVersionNumber;
//! Project version string for keychain_kit.
FOUNDATION_EXPORT const unsigned char keychain_kitVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import <keychain_kit/PublicHeader.h>