For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
# coding: utf-8 | |
from objc_util import * | |
UIApplication = ObjCClass('UIApplication') | |
UIBarButtonItem = ObjCClass('UIBarButtonItem') | |
@on_main_thread | |
def main(): | |
rootVC = UIApplication.sharedApplication().keyWindow().rootViewController() |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the | |
software to the public domain. We make this dedication for the benefit |
In case you missed it, Canonical relicensed LXD under AGPLv3 in December 2023 with a mandatory CLA. The LXD project was hard forked as Incus and licensed under an Apache 2.0 License.
Incus is maintained by the same team of developers that first created LXD and is recommended for new users going forward.
Borrowed from here.