Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
bba9bcf0
Commit
bba9bcf0
authored
Feb 02, 2016
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add keychain crypto store
parent
50b19e4b
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
489 additions
and
1 deletion
+489
-1
NEWS
NEWS
+1
-0
modules/MODULES_LIST
modules/MODULES_LIST
+1
-0
modules/keystore/Makefile.am
modules/keystore/Makefile.am
+8
-0
modules/keystore/keychain.m
modules/keystore/keychain.m
+476
-0
po/POTFILES.in
po/POTFILES.in
+1
-0
test/modules/keystore/test.c
test/modules/keystore/test.c
+2
-1
No files found.
NEWS
View file @
bba9bcf0
...
...
@@ -194,6 +194,7 @@ Misc
* Add Gnome libsecret-based crypto keystore
* Add KDE Kwallet-based crypto keystore
* Add a plaintext keystore
* Add Keychain based crypto keystore for iOS, Mac OS X and tvOS
Removed modules
* Atmo video filter
...
...
modules/MODULES_LIST
View file @
bba9bcf0
...
...
@@ -203,6 +203,7 @@ $Id$
* kai: OS/2 audio output
* karaoke: simple karaoke audio filter
* kate: kate text bitstream decoder
* keychain: Keystore for iOS, Mac OS X and tvOS
* kva: OS/2 video output
* kwallet: store secrets via KDE Kwallet
* libass: Subtitle renderers using libass
...
...
modules/keystore/Makefile.am
View file @
bba9bcf0
...
...
@@ -29,6 +29,14 @@ if HAVE_KWALLET
keystore_LTLIBRARIES
+=
libkwallet_plugin.la
endif
libkeychain_plugin_la_SOURCES
=
keystore/keychain.m
libkeychain_plugin_la_OBJCFLAGS
=
$(AM_CFLAGS)
-fobjc-arc
libkeychain_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(keystoredir)
'
-Wl
,-framework,Foundation
-Wl
,-framework,Security
if
HAVE_DARWIN
keystore_LTLIBRARIES
+=
libkeychain_plugin.la
endif
keystore_LTLIBRARIES
+=
\
$(LTLIBsecret)
...
...
modules/keystore/keychain.m
0 → 100644
View file @
bba9bcf0
This diff is collapsed.
Click to expand it.
po/POTFILES.in
View file @
bba9bcf0
...
...
@@ -947,6 +947,7 @@ modules/hw/vdpau/chroma.c
modules/hw/vdpau/deinterlace.c
modules/hw/vdpau/display.c
modules/hw/vdpau/sharpen.c
modules/keystore/keychain.m
modules/lua/demux.c
modules/lua/intf.c
modules/lua/libs/configuration.c
...
...
test/modules/keystore/test.c
View file @
bba9bcf0
...
...
@@ -51,7 +51,8 @@ static const struct
/* Following keystores are tested only when asked explicitly by the tester
* (with "-a" argv) */
{
"secret"
,
false
},
{
"kwallet"
,
false
}
{
"kwallet"
,
false
},
{
"keychain"
,
false
}
};
static
void
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment