├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.txt ├── files.tar.enc ├── installers ├── 88-busybox.sh ├── Bins │ ├── arm │ │ └── xzdec │ ├── mips │ │ └── xzdec │ └── x86 │ │ └── xzdec ├── addusergroup.sh ├── base_installer.sh ├── cleaner.sh ├── normal_installer.sh ├── universal_installer.sh └── updater-script ├── libs ├── build.sh ├── libselinux-2.2.2 │ ├── ChangeLog │ ├── LICENSE │ ├── Makefile │ ├── VERSION │ ├── include │ │ ├── Makefile │ │ └── selinux │ │ │ ├── av_permissions.h │ │ │ ├── avc.h │ │ │ ├── context.h │ │ │ ├── flask.h │ │ │ ├── get_context_list.h │ │ │ ├── get_default_type.h │ │ │ ├── label.h │ │ │ └── selinux.h │ ├── man │ │ ├── Makefile │ │ ├── man3 │ │ │ ├── avc_add_callback.3 │ │ │ ├── avc_audit.3 │ │ │ ├── avc_av_stats.3 │ │ │ ├── avc_cache_stats.3 │ │ │ ├── avc_cleanup.3 │ │ │ ├── avc_compute_create.3 │ │ │ ├── avc_compute_member.3 │ │ │ ├── avc_context_to_sid.3 │ │ │ ├── avc_destroy.3 │ │ │ ├── avc_entry_ref_init.3 │ │ │ ├── avc_get_initial_context.3 │ │ │ ├── avc_get_initial_sid.3 │ │ │ ├── avc_has_perm.3 │ │ │ ├── avc_has_perm_noaudit.3 │ │ │ ├── avc_init.3 │ │ │ ├── avc_netlink_acquire_fd.3 │ │ │ ├── avc_netlink_check_nb.3 │ │ │ ├── avc_netlink_close.3 │ │ │ ├── avc_netlink_loop.3 │ │ │ ├── avc_netlink_open.3 │ │ │ ├── avc_netlink_release_fd.3 │ │ │ ├── avc_open.3 │ │ │ ├── avc_reset.3 │ │ │ ├── avc_sid_stats.3 │ │ │ ├── avc_sid_to_context.3 │ │ │ ├── checkPasswdAccess.3 │ │ │ ├── context_free.3 │ │ │ ├── context_new.3 │ │ │ ├── context_range_get.3 │ │ │ ├── context_range_set.3 │ │ │ ├── context_role_get.3 │ │ │ ├── context_role_set.3 │ │ │ ├── context_type_get.3 │ │ │ ├── context_type_set.3 │ │ │ ├── context_user_get.3 │ │ │ ├── context_user_set.3 │ │ │ ├── fgetfilecon.3 │ │ │ ├── fgetfilecon_raw.3 │ │ │ ├── fini_selinuxmnt.3 │ │ │ ├── freecon.3 │ │ │ ├── freeconary.3 │ │ │ ├── fsetfilecon.3 │ │ │ ├── fsetfilecon_raw.3 │ │ │ ├── get_default_context.3 │ │ │ ├── get_default_context_with_level.3 │ │ │ ├── get_default_context_with_role.3 │ │ │ ├── get_default_context_with_rolelevel.3 │ │ │ ├── get_default_type.3 │ │ │ ├── get_ordered_context_list.3 │ │ │ ├── get_ordered_context_list_with_level.3 │ │ │ ├── getcon.3 │ │ │ ├── getcon_raw.3 │ │ │ ├── getexeccon.3 │ │ │ ├── getexeccon_raw.3 │ │ │ ├── getfilecon.3 │ │ │ ├── getfilecon_raw.3 │ │ │ ├── getfscreatecon.3 │ │ │ ├── getfscreatecon_raw.3 │ │ │ ├── getkeycreatecon.3 │ │ │ ├── getkeycreatecon_raw.3 │ │ │ ├── getpeercon.3 │ │ │ ├── getpeercon_raw.3 │ │ │ ├── getpidcon.3 │ │ │ ├── getpidcon_raw.3 │ │ │ ├── getprevcon.3 │ │ │ ├── getprevcon_raw.3 │ │ │ ├── getseuserbyname.3 │ │ │ ├── getsockcreatecon.3 │ │ │ ├── getsockcreatecon_raw.3 │ │ │ ├── init_selinuxmnt.3 │ │ │ ├── is_context_customizable.3 │ │ │ ├── is_selinux_enabled.3 │ │ │ ├── is_selinux_mls_enabled.3 │ │ │ ├── lgetfilecon.3 │ │ │ ├── lgetfilecon_raw.3 │ │ │ ├── lsetfilecon.3 │ │ │ ├── lsetfilecon_raw.3 │ │ │ ├── manual_user_enter_context.3 │ │ │ ├── matchmediacon.3 │ │ │ ├── matchpathcon.3 │ │ │ ├── matchpathcon_checkmatches.3 │ │ │ ├── matchpathcon_filespec_add.3 │ │ │ ├── matchpathcon_filespec_destroy.3 │ │ │ ├── matchpathcon_filespec_eval.3 │ │ │ ├── matchpathcon_fini.3 │ │ │ ├── matchpathcon_index.3 │ │ │ ├── matchpathcon_init.3 │ │ │ ├── mode_to_security_class.3 │ │ │ ├── print_access_vector.3 │ │ │ ├── query_user_context.3 │ │ │ ├── rpm_execcon.3 │ │ │ ├── security_av_perm_to_string.3 │ │ │ ├── security_av_string.3 │ │ │ ├── security_check_context.3 │ │ │ ├── security_check_context_raw.3 │ │ │ ├── security_class_to_string.3 │ │ │ ├── security_commit_booleans.3 │ │ │ ├── security_compute_av.3 │ │ │ ├── security_compute_av_flags.3 │ │ │ ├── security_compute_av_flags_raw.3 │ │ │ ├── security_compute_av_raw.3 │ │ │ ├── security_compute_create.3 │ │ │ ├── security_compute_create_name.3 │ │ │ ├── security_compute_create_name_raw.3 │ │ │ ├── security_compute_create_raw.3 │ │ │ ├── security_compute_member.3 │ │ │ ├── security_compute_member_raw.3 │ │ │ ├── security_compute_relabel.3 │ │ │ ├── security_compute_relabel_raw.3 │ │ │ ├── security_compute_user.3 │ │ │ ├── security_compute_user_raw.3 │ │ │ ├── security_deny_unknown.3 │ │ │ ├── security_disable.3 │ │ │ ├── security_get_boolean_active.3 │ │ │ ├── security_get_boolean_names.3 │ │ │ ├── security_get_boolean_pending.3 │ │ │ ├── security_get_initial_context.3 │ │ │ ├── security_get_initial_context_raw.3 │ │ │ ├── security_getenforce.3 │ │ │ ├── security_load_booleans.3 │ │ │ ├── security_load_policy.3 │ │ │ ├── security_mkload_policy.3 │ │ │ ├── security_policyvers.3 │ │ │ ├── security_set_boolean.3 │ │ │ ├── security_setenforce.3 │ │ │ ├── selabel_close.3 │ │ │ ├── selabel_lookup.3 │ │ │ ├── selabel_lookup_raw.3 │ │ │ ├── selabel_open.3 │ │ │ ├── selabel_stats.3 │ │ │ ├── selinux_binary_policy_path.3 │ │ │ ├── selinux_boolean_sub.3 │ │ │ ├── selinux_booleans_path.3 │ │ │ ├── selinux_check_access.3 │ │ │ ├── selinux_check_passwd_access.3 │ │ │ ├── selinux_check_securetty_context.3 │ │ │ ├── selinux_colors_path.3 │ │ │ ├── selinux_contexts_path.3 │ │ │ ├── selinux_current_policy_path.3 │ │ │ ├── selinux_default_context_path.3 │ │ │ ├── selinux_default_type_path.3 │ │ │ ├── selinux_failsafe_context_path.3 │ │ │ ├── selinux_file_context_cmp.3 │ │ │ ├── selinux_file_context_homedir_path.3 │ │ │ ├── selinux_file_context_local_path.3 │ │ │ ├── selinux_file_context_path.3 │ │ │ ├── selinux_file_context_verify.3 │ │ │ ├── selinux_getenforcemode.3 │ │ │ ├── selinux_getpolicytype.3 │ │ │ ├── selinux_homedir_context_path.3 │ │ │ ├── selinux_lsetfilecon_default.3 │ │ │ ├── selinux_media_context_path.3 │ │ │ ├── selinux_netfilter_context_path.3 │ │ │ ├── selinux_path.3 │ │ │ ├── selinux_policy_root.3 │ │ │ ├── selinux_raw_context_to_color.3 │ │ │ ├── selinux_removable_context_path.3 │ │ │ ├── selinux_securetty_types_path.3 │ │ │ ├── selinux_set_callback.3 │ │ │ ├── selinux_set_mapping.3 │ │ │ ├── selinux_set_policy_root.3 │ │ │ ├── selinux_status_close.3 │ │ │ ├── selinux_status_deny_unknown.3 │ │ │ ├── selinux_status_getenforce.3 │ │ │ ├── selinux_status_open.3 │ │ │ ├── selinux_status_policyload.3 │ │ │ ├── selinux_status_updated.3 │ │ │ ├── selinux_user_contexts_path.3 │ │ │ ├── selinux_usersconf_path.3 │ │ │ ├── selinux_x_context_path.3 │ │ │ ├── set_matchpathcon_flags.3 │ │ │ ├── set_matchpathcon_invalidcon.3 │ │ │ ├── set_matchpathcon_printf.3 │ │ │ ├── set_selinuxmnt.3 │ │ │ ├── setcon.3 │ │ │ ├── setcon_raw.3 │ │ │ ├── setexeccon.3 │ │ │ ├── setexeccon_raw.3 │ │ │ ├── setfilecon.3 │ │ │ ├── setfilecon_raw.3 │ │ │ ├── setfscreatecon.3 │ │ │ ├── setfscreatecon_raw.3 │ │ │ ├── setkeycreatecon.3 │ │ │ ├── setkeycreatecon_raw.3 │ │ │ ├── setsockcreatecon.3 │ │ │ ├── setsockcreatecon_raw.3 │ │ │ ├── sidget.3 │ │ │ ├── sidput.3 │ │ │ ├── string_to_av_perm.3 │ │ │ └── string_to_security_class.3 │ │ ├── man5 │ │ │ ├── booleans.5 │ │ │ ├── customizable_types.5 │ │ │ ├── default_contexts.5 │ │ │ ├── default_type.5 │ │ │ ├── failsafe_context.5 │ │ │ ├── file_contexts.5 │ │ │ ├── file_contexts.homedirs.5 │ │ │ ├── file_contexts.local.5 │ │ │ ├── file_contexts.subs.5 │ │ │ ├── file_contexts.subs_dist.5 │ │ │ ├── local.users.5 │ │ │ ├── media.5 │ │ │ ├── removable_context.5 │ │ │ ├── secolor.conf.5 │ │ │ ├── securetty_types.5 │ │ │ ├── selabel_db.5 │ │ │ ├── selabel_file.5 │ │ │ ├── selabel_media.5 │ │ │ ├── selabel_x.5 │ │ │ ├── sepgsql_contexts.5 │ │ │ ├── service_seusers.5 │ │ │ ├── seusers.5 │ │ │ ├── user_contexts.5 │ │ │ ├── virtual_domain_context.5 │ │ │ ├── virtual_image_context.5 │ │ │ └── x_contexts.5 │ │ └── man8 │ │ │ ├── avcstat.8 │ │ │ ├── booleans.8 │ │ │ ├── getenforce.8 │ │ │ ├── getsebool.8 │ │ │ ├── matchpathcon.8 │ │ │ ├── sefcontext_compile.8 │ │ │ ├── selinux.8 │ │ │ ├── selinuxenabled.8 │ │ │ ├── selinuxexeccon.8 │ │ │ ├── setenforce.8 │ │ │ └── togglesebool.8 │ ├── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── audit2why.c │ │ ├── av_inherit.h │ │ ├── av_perm_to_string.h │ │ ├── avc.c │ │ ├── avc.lo │ │ ├── avc.o │ │ ├── avc_internal.c │ │ ├── avc_internal.h │ │ ├── avc_internal.lo │ │ ├── avc_internal.o │ │ ├── avc_sidtab.c │ │ ├── avc_sidtab.h │ │ ├── avc_sidtab.lo │ │ ├── avc_sidtab.o │ │ ├── booleans.c │ │ ├── booleans.lo │ │ ├── booleans.o │ │ ├── callbacks.c │ │ ├── callbacks.h │ │ ├── callbacks.lo │ │ ├── callbacks.o │ │ ├── canonicalize_context.c │ │ ├── canonicalize_context.lo │ │ ├── canonicalize_context.o │ │ ├── checkAccess.c │ │ ├── checkAccess.lo │ │ ├── checkAccess.o │ │ ├── check_context.c │ │ ├── check_context.lo │ │ ├── check_context.o │ │ ├── class_to_string.h │ │ ├── common_perm_to_string.h │ │ ├── compute_av.c │ │ ├── compute_av.lo │ │ ├── compute_av.o │ │ ├── compute_create.c │ │ ├── compute_create.lo │ │ ├── compute_create.o │ │ ├── compute_member.c │ │ ├── compute_member.lo │ │ ├── compute_member.o │ │ ├── compute_relabel.c │ │ ├── compute_relabel.lo │ │ ├── compute_relabel.o │ │ ├── compute_user.c │ │ ├── compute_user.lo │ │ ├── compute_user.o │ │ ├── context.c │ │ ├── context.lo │ │ ├── context.o │ │ ├── context_internal.h │ │ ├── deny_unknown.c │ │ ├── deny_unknown.lo │ │ ├── deny_unknown.o │ │ ├── disable.c │ │ ├── disable.lo │ │ ├── disable.o │ │ ├── dso.h │ │ ├── enabled.c │ │ ├── enabled.lo │ │ ├── enabled.o │ │ ├── exception.sh │ │ ├── fgetfilecon.c │ │ ├── fgetfilecon.lo │ │ ├── fgetfilecon.o │ │ ├── file_path_suffixes.h │ │ ├── freecon.c │ │ ├── freecon.lo │ │ ├── freecon.o │ │ ├── freeconary.c │ │ ├── freeconary.lo │ │ ├── freeconary.o │ │ ├── fsetfilecon.c │ │ ├── fsetfilecon.lo │ │ ├── fsetfilecon.o │ │ ├── get_context_list.c │ │ ├── get_context_list.lo │ │ ├── get_context_list.o │ │ ├── get_context_list_internal.h │ │ ├── get_default_type.c │ │ ├── get_default_type.lo │ │ ├── get_default_type.o │ │ ├── get_default_type_internal.h │ │ ├── get_initial_context.c │ │ ├── get_initial_context.lo │ │ ├── get_initial_context.o │ │ ├── getenforce.c │ │ ├── getenforce.lo │ │ ├── getenforce.o │ │ ├── getfilecon.c │ │ ├── getfilecon.lo │ │ ├── getfilecon.o │ │ ├── getpeercon.c │ │ ├── getpeercon.lo │ │ ├── getpeercon.o │ │ ├── init.c │ │ ├── init.lo │ │ ├── init.o │ │ ├── is_customizable_type.c │ │ ├── is_customizable_type.lo │ │ ├── is_customizable_type.o │ │ ├── label.c │ │ ├── label.lo │ │ ├── label.o │ │ ├── label_android_property.c │ │ ├── label_android_property.lo │ │ ├── label_android_property.o │ │ ├── label_db.c │ │ ├── label_db.lo │ │ ├── label_db.o │ │ ├── label_file.c │ │ ├── label_file.h │ │ ├── label_file.lo │ │ ├── label_file.o │ │ ├── label_internal.h │ │ ├── label_media.c │ │ ├── label_media.lo │ │ ├── label_media.o │ │ ├── label_x.c │ │ ├── label_x.lo │ │ ├── label_x.o │ │ ├── lgetfilecon.c │ │ ├── lgetfilecon.lo │ │ ├── lgetfilecon.o │ │ ├── libselinux.a │ │ ├── libselinux.pc │ │ ├── libselinux.pc.in │ │ ├── libselinux.so │ │ ├── libselinux.so.1 │ │ ├── load_policy.c │ │ ├── load_policy.lo │ │ ├── load_policy.o │ │ ├── lsetfilecon.c │ │ ├── lsetfilecon.lo │ │ ├── lsetfilecon.o │ │ ├── mapping.c │ │ ├── mapping.h │ │ ├── mapping.lo │ │ ├── mapping.o │ │ ├── matchmediacon.c │ │ ├── matchmediacon.lo │ │ ├── matchmediacon.o │ │ ├── matchpathcon.c │ │ ├── matchpathcon.lo │ │ ├── matchpathcon.o │ │ ├── policy.h │ │ ├── policyvers.c │ │ ├── policyvers.lo │ │ ├── policyvers.o │ │ ├── procattr.c │ │ ├── procattr.lo │ │ ├── procattr.o │ │ ├── query_user_context.c │ │ ├── query_user_context.lo │ │ ├── query_user_context.o │ │ ├── rpm.c │ │ ├── rpm.lo │ │ ├── rpm.o │ │ ├── selinux_check_securetty_context.c │ │ ├── selinux_check_securetty_context.lo │ │ ├── selinux_check_securetty_context.o │ │ ├── selinux_config.c │ │ ├── selinux_config.lo │ │ ├── selinux_config.o │ │ ├── selinux_internal.h │ │ ├── selinux_netlink.h │ │ ├── selinuxswig.i │ │ ├── selinuxswig_python.i │ │ ├── selinuxswig_ruby.i │ │ ├── sestatus.c │ │ ├── sestatus.lo │ │ ├── sestatus.o │ │ ├── setenforce.c │ │ ├── setenforce.lo │ │ ├── setenforce.o │ │ ├── setfilecon.c │ │ ├── setfilecon.lo │ │ ├── setfilecon.o │ │ ├── setrans_client.c │ │ ├── setrans_client.lo │ │ ├── setrans_client.o │ │ ├── setrans_internal.h │ │ ├── seusers.c │ │ ├── seusers.lo │ │ ├── seusers.o │ │ ├── stringrep.c │ │ ├── stringrep.lo │ │ └── stringrep.o │ └── utils │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── avcstat.c │ │ ├── compute_av.c │ │ ├── compute_create.c │ │ ├── compute_member.c │ │ ├── compute_relabel.c │ │ ├── compute_user.c │ │ ├── getconlist.c │ │ ├── getdefaultcon.c │ │ ├── getenforce.c │ │ ├── getfilecon.c │ │ ├── getpidcon.c │ │ ├── getsebool.c │ │ ├── getseuser.c │ │ ├── matchpathcon.c │ │ ├── policyvers.c │ │ ├── sefcontext_compile.c │ │ ├── selinux_check_securetty_context.c │ │ ├── selinuxenabled.c │ │ ├── selinuxexeccon.c │ │ ├── setenforce.c │ │ ├── setfilecon.c │ │ └── togglesebool.c ├── libsepol-2.2 │ ├── .gitignore │ ├── Android.mk │ ├── COPYING │ ├── ChangeLog │ ├── Makefile │ ├── VERSION │ ├── include │ │ ├── Makefile │ │ └── sepol │ │ │ ├── boolean_record.h │ │ │ ├── booleans.h │ │ │ ├── context.h │ │ │ ├── context_record.h │ │ │ ├── debug.h │ │ │ ├── errcodes.h │ │ │ ├── handle.h │ │ │ ├── iface_record.h │ │ │ ├── interfaces.h │ │ │ ├── module.h │ │ │ ├── node_record.h │ │ │ ├── nodes.h │ │ │ ├── policydb.h │ │ │ ├── policydb │ │ │ ├── avrule_block.h │ │ │ ├── avtab.h │ │ │ ├── conditional.h │ │ │ ├── constraint.h │ │ │ ├── context.h │ │ │ ├── ebitmap.h │ │ │ ├── expand.h │ │ │ ├── flask.h │ │ │ ├── flask_types.h │ │ │ ├── hashtab.h │ │ │ ├── hierarchy.h │ │ │ ├── link.h │ │ │ ├── mls_types.h │ │ │ ├── module.h │ │ │ ├── polcaps.h │ │ │ ├── policydb.h │ │ │ ├── services.h │ │ │ ├── sidtab.h │ │ │ ├── symtab.h │ │ │ └── util.h │ │ │ ├── port_record.h │ │ │ ├── ports.h │ │ │ ├── roles.h │ │ │ ├── sepol.h │ │ │ ├── user_record.h │ │ │ └── users.h │ ├── man │ │ ├── Makefile │ │ ├── man3 │ │ │ ├── sepol_check_context.3 │ │ │ ├── sepol_genbools.3 │ │ │ └── sepol_genusers.3 │ │ └── man8 │ │ │ ├── chkcon.8 │ │ │ ├── genpolbools.8 │ │ │ └── genpolusers.8 │ ├── src │ │ ├── Makefile │ │ ├── assertion.c │ │ ├── assertion.lo │ │ ├── assertion.o │ │ ├── av_permissions.h │ │ ├── avrule_block.c │ │ ├── avrule_block.lo │ │ ├── avrule_block.o │ │ ├── avtab.c │ │ ├── avtab.lo │ │ ├── avtab.o │ │ ├── boolean_internal.h │ │ ├── boolean_record.c │ │ ├── boolean_record.lo │ │ ├── boolean_record.o │ │ ├── booleans.c │ │ ├── booleans.lo │ │ ├── booleans.o │ │ ├── conditional.c │ │ ├── conditional.lo │ │ ├── conditional.o │ │ ├── constraint.c │ │ ├── constraint.lo │ │ ├── constraint.o │ │ ├── context.c │ │ ├── context.h │ │ ├── context.lo │ │ ├── context.o │ │ ├── context_internal.h │ │ ├── context_record.c │ │ ├── context_record.lo │ │ ├── context_record.o │ │ ├── debug.c │ │ ├── debug.h │ │ ├── debug.lo │ │ ├── debug.o │ │ ├── dso.h │ │ ├── ebitmap.c │ │ ├── ebitmap.lo │ │ ├── ebitmap.o │ │ ├── expand.c │ │ ├── expand.lo │ │ ├── expand.o │ │ ├── genbools.c │ │ ├── genbools.lo │ │ ├── genbools.o │ │ ├── genusers.c │ │ ├── genusers.lo │ │ ├── genusers.o │ │ ├── handle.c │ │ ├── handle.h │ │ ├── handle.lo │ │ ├── handle.o │ │ ├── hashtab.c │ │ ├── hashtab.lo │ │ ├── hashtab.o │ │ ├── hierarchy.c │ │ ├── hierarchy.lo │ │ ├── hierarchy.o │ │ ├── iface_internal.h │ │ ├── iface_record.c │ │ ├── iface_record.lo │ │ ├── iface_record.o │ │ ├── interfaces.c │ │ ├── interfaces.lo │ │ ├── interfaces.o │ │ ├── libsepol.a │ │ ├── libsepol.map │ │ ├── libsepol.pc │ │ ├── libsepol.pc.in │ │ ├── libsepol.so │ │ ├── libsepol.so.1 │ │ ├── link.c │ │ ├── link.lo │ │ ├── link.o │ │ ├── mls.c │ │ ├── mls.h │ │ ├── mls.lo │ │ ├── mls.o │ │ ├── module.c │ │ ├── module.lo │ │ ├── module.o │ │ ├── module_internal.h │ │ ├── node_internal.h │ │ ├── node_record.c │ │ ├── node_record.lo │ │ ├── node_record.o │ │ ├── nodes.c │ │ ├── nodes.lo │ │ ├── nodes.o │ │ ├── polcaps.c │ │ ├── polcaps.lo │ │ ├── polcaps.o │ │ ├── policydb.c │ │ ├── policydb.lo │ │ ├── policydb.o │ │ ├── policydb_convert.c │ │ ├── policydb_convert.lo │ │ ├── policydb_convert.o │ │ ├── policydb_internal.h │ │ ├── policydb_public.c │ │ ├── policydb_public.lo │ │ ├── policydb_public.o │ │ ├── port_internal.h │ │ ├── port_record.c │ │ ├── port_record.lo │ │ ├── port_record.o │ │ ├── ports.c │ │ ├── ports.lo │ │ ├── ports.o │ │ ├── private.h │ │ ├── roles.c │ │ ├── roles.lo │ │ ├── roles.o │ │ ├── services.c │ │ ├── services.lo │ │ ├── services.o │ │ ├── sidtab.c │ │ ├── sidtab.lo │ │ ├── sidtab.o │ │ ├── symtab.c │ │ ├── symtab.lo │ │ ├── symtab.o │ │ ├── user_internal.h │ │ ├── user_record.c │ │ ├── user_record.lo │ │ ├── user_record.o │ │ ├── users.c │ │ ├── users.lo │ │ ├── users.o │ │ ├── util.c │ │ ├── util.lo │ │ ├── util.o │ │ ├── write.c │ │ ├── write.lo │ │ └── write.o │ ├── tests │ │ ├── Makefile │ │ ├── debug.c │ │ ├── debug.h │ │ ├── helpers.c │ │ ├── helpers.h │ │ ├── libsepol-tests.c │ │ ├── policies │ │ │ ├── support │ │ │ │ └── misc_macros.spt │ │ │ ├── test-cond │ │ │ │ └── refpolicy-base.conf │ │ │ ├── test-deps │ │ │ │ ├── base-metreq.conf │ │ │ │ ├── base-notmetreq.conf │ │ │ │ ├── modreq-attr-global.conf │ │ │ │ ├── modreq-attr-opt.conf │ │ │ │ ├── modreq-bool-global.conf │ │ │ │ ├── modreq-bool-opt.conf │ │ │ │ ├── modreq-obj-global.conf │ │ │ │ ├── modreq-obj-opt.conf │ │ │ │ ├── modreq-perm-global.conf │ │ │ │ ├── modreq-perm-opt.conf │ │ │ │ ├── modreq-role-global.conf │ │ │ │ ├── modreq-role-opt.conf │ │ │ │ ├── modreq-type-global.conf │ │ │ │ ├── modreq-type-opt.conf │ │ │ │ ├── module.conf │ │ │ │ └── small-base.conf │ │ │ ├── test-expander │ │ │ │ ├── alias-base.conf │ │ │ │ ├── alias-module.conf │ │ │ │ ├── base-base-only.conf │ │ │ │ ├── module.conf │ │ │ │ ├── role-base.conf │ │ │ │ ├── role-module.conf │ │ │ │ ├── small-base.conf │ │ │ │ ├── user-base.conf │ │ │ │ └── user-module.conf │ │ │ ├── test-hooks │ │ │ │ ├── cmp_policy.conf │ │ │ │ ├── module_add_role_allow_trans.conf │ │ │ │ ├── module_add_symbols.conf │ │ │ │ └── small-base.conf │ │ │ └── test-linker │ │ │ │ ├── module1.conf │ │ │ │ ├── module2.conf │ │ │ │ └── small-base.conf │ │ ├── test-common.c │ │ ├── test-common.h │ │ ├── test-cond.c │ │ ├── test-cond.h │ │ ├── test-deps.c │ │ ├── test-deps.h │ │ ├── test-downgrade.c │ │ ├── test-downgrade.h │ │ ├── test-expander-attr-map.c │ │ ├── test-expander-attr-map.h │ │ ├── test-expander-roles.c │ │ ├── test-expander-roles.h │ │ ├── test-expander-users.c │ │ ├── test-expander-users.h │ │ ├── test-expander.c │ │ ├── test-expander.h │ │ ├── test-linker-cond-map.c │ │ ├── test-linker-cond-map.h │ │ ├── test-linker-roles.c │ │ ├── test-linker-roles.h │ │ ├── test-linker-types.c │ │ ├── test-linker-types.h │ │ ├── test-linker.c │ │ └── test-linker.h │ └── utils │ │ ├── Makefile │ │ └── chkcon.c └── pcre-8.31 │ ├── .deps │ ├── dftables.Po │ ├── pcre16_byte_order.Plo │ ├── pcre16_chartables.Plo │ ├── pcre16_compile.Plo │ ├── pcre16_config.Plo │ ├── pcre16_dfa_exec.Plo │ ├── pcre16_exec.Plo │ ├── pcre16_fullinfo.Plo │ ├── pcre16_get.Plo │ ├── pcre16_globals.Plo │ ├── pcre16_jit_compile.Plo │ ├── pcre16_maketables.Plo │ ├── pcre16_newline.Plo │ ├── pcre16_ord2utf16.Plo │ ├── pcre16_printint.Po │ ├── pcre16_refcount.Plo │ ├── pcre16_string_utils.Plo │ ├── pcre16_study.Plo │ ├── pcre16_tables.Plo │ ├── pcre16_ucd.Plo │ ├── pcre16_utf16_utils.Plo │ ├── pcre16_valid_utf16.Plo │ ├── pcre16_version.Plo │ ├── pcre16_xclass.Plo │ ├── pcre_byte_order.Plo │ ├── pcre_chartables.Plo │ ├── pcre_compile.Plo │ ├── pcre_config.Plo │ ├── pcre_dfa_exec.Plo │ ├── pcre_exec.Plo │ ├── pcre_fullinfo.Plo │ ├── pcre_get.Plo │ ├── pcre_globals.Plo │ ├── pcre_jit_compile.Plo │ ├── pcre_jit_test.Po │ ├── pcre_maketables.Plo │ ├── pcre_newline.Plo │ ├── pcre_ord2utf8.Plo │ ├── pcre_printint.Po │ ├── pcre_refcount.Plo │ ├── pcre_scanner.Plo │ ├── pcre_scanner_unittest.Po │ ├── pcre_string_utils.Plo │ ├── pcre_stringpiece.Plo │ ├── pcre_stringpiece_unittest.Po │ ├── pcre_study.Plo │ ├── pcre_tables.Plo │ ├── pcre_ucd.Plo │ ├── pcre_valid_utf8.Plo │ ├── pcre_version.Plo │ ├── pcre_xclass.Plo │ ├── pcrecpp.Plo │ ├── pcrecpp_unittest.Po │ ├── pcregrep.Po │ ├── pcreposix.Plo │ └── pcretest.Po │ ├── .libs │ ├── libpcre.a │ ├── libpcre.la │ ├── libpcre.lai │ ├── libpcrecpp.a │ ├── libpcrecpp.la │ ├── libpcrecpp.lai │ ├── libpcreposix.a │ ├── libpcreposix.la │ └── libpcreposix.lai │ ├── 132html │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── CheckMan │ ├── CleanTxt │ ├── Detrail │ ├── HACKING │ ├── INSTALL │ ├── LICENCE │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── NON-AUTOTOOLS-BUILD │ ├── NON-UNIX-USE │ ├── PrepareRelease │ ├── README │ ├── RunGrepTest │ ├── RunTest │ ├── RunTest.bat │ ├── aclocal.m4 │ ├── cmake │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindEditline.cmake │ ├── FindPackageHandleStandardArgs.cmake │ └── FindReadline.cmake │ ├── config-cmake.h.in │ ├── config.guess │ ├── config.h │ ├── config.h.generic │ ├── config.h.in │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── dftables.c │ ├── doc │ ├── html │ │ ├── index.html │ │ ├── pcre-config.html │ │ ├── pcre.html │ │ ├── pcre16.html │ │ ├── pcre_assign_jit_stack.html │ │ ├── pcre_compile.html │ │ ├── pcre_compile2.html │ │ ├── pcre_config.html │ │ ├── pcre_copy_named_substring.html │ │ ├── pcre_copy_substring.html │ │ ├── pcre_dfa_exec.html │ │ ├── pcre_exec.html │ │ ├── pcre_free_study.html │ │ ├── pcre_free_substring.html │ │ ├── pcre_free_substring_list.html │ │ ├── pcre_fullinfo.html │ │ ├── pcre_get_named_substring.html │ │ ├── pcre_get_stringnumber.html │ │ ├── pcre_get_stringtable_entries.html │ │ ├── pcre_get_substring.html │ │ ├── pcre_get_substring_list.html │ │ ├── pcre_jit_stack_alloc.html │ │ ├── pcre_jit_stack_free.html │ │ ├── pcre_maketables.html │ │ ├── pcre_pattern_to_host_byte_order.html │ │ ├── pcre_refcount.html │ │ ├── pcre_study.html │ │ ├── pcre_utf16_to_host_byte_order.html │ │ ├── pcre_version.html │ │ ├── pcreapi.html │ │ ├── pcrebuild.html │ │ ├── pcrecallout.html │ │ ├── pcrecompat.html │ │ ├── pcrecpp.html │ │ ├── pcredemo.html │ │ ├── pcregrep.html │ │ ├── pcrejit.html │ │ ├── pcrelimits.html │ │ ├── pcrematching.html │ │ ├── pcrepartial.html │ │ ├── pcrepattern.html │ │ ├── pcreperform.html │ │ ├── pcreposix.html │ │ ├── pcreprecompile.html │ │ ├── pcresample.html │ │ ├── pcrestack.html │ │ ├── pcresyntax.html │ │ ├── pcretest.html │ │ └── pcreunicode.html │ ├── index.html.src │ ├── pcre-config.1 │ ├── pcre-config.txt │ ├── pcre.3 │ ├── pcre.txt │ ├── pcre16.3 │ ├── pcre_assign_jit_stack.3 │ ├── pcre_compile.3 │ ├── pcre_compile2.3 │ ├── pcre_config.3 │ ├── pcre_copy_named_substring.3 │ ├── pcre_copy_substring.3 │ ├── pcre_dfa_exec.3 │ ├── pcre_exec.3 │ ├── pcre_free_study.3 │ ├── pcre_free_substring.3 │ ├── pcre_free_substring_list.3 │ ├── pcre_fullinfo.3 │ ├── pcre_get_named_substring.3 │ ├── pcre_get_stringnumber.3 │ ├── pcre_get_stringtable_entries.3 │ ├── pcre_get_substring.3 │ ├── pcre_get_substring_list.3 │ ├── pcre_jit_stack_alloc.3 │ ├── pcre_jit_stack_free.3 │ ├── pcre_maketables.3 │ ├── pcre_pattern_to_host_byte_order.3 │ ├── pcre_refcount.3 │ ├── pcre_study.3 │ ├── pcre_utf16_to_host_byte_order.3 │ ├── pcre_version.3 │ ├── pcreapi.3 │ ├── pcrebuild.3 │ ├── pcrecallout.3 │ ├── pcrecompat.3 │ ├── pcrecpp.3 │ ├── pcregrep.1 │ ├── pcregrep.txt │ ├── pcrejit.3 │ ├── pcrelimits.3 │ ├── pcrematching.3 │ ├── pcrepartial.3 │ ├── pcrepattern.3 │ ├── pcreperform.3 │ ├── pcreposix.3 │ ├── pcreprecompile.3 │ ├── pcresample.3 │ ├── pcrestack.3 │ ├── pcresyntax.3 │ ├── pcretest.1 │ ├── pcretest.txt │ ├── pcreunicode.3 │ └── perltest.txt │ ├── install-sh │ ├── libpcre.la │ ├── libpcre.pc │ ├── libpcre.pc.in │ ├── libpcre16.pc │ ├── libpcre16.pc.in │ ├── libpcrecpp.la │ ├── libpcrecpp.pc │ ├── libpcrecpp.pc.in │ ├── libpcreposix.la │ ├── libpcreposix.pc │ ├── libpcreposix.pc.in │ ├── libtool │ ├── ltmain.sh │ ├── makevp.bat │ ├── makevp_c.txt │ ├── makevp_l.txt │ ├── missing │ ├── pcre-config │ ├── pcre-config.in │ ├── pcre.h │ ├── pcre.h.generic │ ├── pcre.h.in │ ├── pcre16_byte_order.c │ ├── pcre16_chartables.c │ ├── pcre16_compile.c │ ├── pcre16_config.c │ ├── pcre16_dfa_exec.c │ ├── pcre16_exec.c │ ├── pcre16_fullinfo.c │ ├── pcre16_get.c │ ├── pcre16_globals.c │ ├── pcre16_jit_compile.c │ ├── pcre16_maketables.c │ ├── pcre16_newline.c │ ├── pcre16_ord2utf16.c │ ├── pcre16_printint.c │ ├── pcre16_refcount.c │ ├── pcre16_string_utils.c │ ├── pcre16_study.c │ ├── pcre16_tables.c │ ├── pcre16_ucd.c │ ├── pcre16_utf16_utils.c │ ├── pcre16_valid_utf16.c │ ├── pcre16_version.c │ ├── pcre16_xclass.c │ ├── pcre_byte_order.c │ ├── pcre_byte_order.lo │ ├── pcre_byte_order.o │ ├── pcre_chartables.c │ ├── pcre_chartables.c.dist │ ├── pcre_chartables.lo │ ├── pcre_chartables.o │ ├── pcre_compile.c │ ├── pcre_compile.lo │ ├── pcre_compile.o │ ├── pcre_config.c │ ├── pcre_config.lo │ ├── pcre_config.o │ ├── pcre_dfa_exec.c │ ├── pcre_dfa_exec.lo │ ├── pcre_dfa_exec.o │ ├── pcre_exec.c │ ├── pcre_exec.lo │ ├── pcre_exec.o │ ├── pcre_fullinfo.c │ ├── pcre_fullinfo.lo │ ├── pcre_fullinfo.o │ ├── pcre_get.c │ ├── pcre_get.lo │ ├── pcre_get.o │ ├── pcre_globals.c │ ├── pcre_globals.lo │ ├── pcre_globals.o │ ├── pcre_internal.h │ ├── pcre_jit_compile.c │ ├── pcre_jit_compile.lo │ ├── pcre_jit_compile.o │ ├── pcre_jit_test.c │ ├── pcre_maketables.c │ ├── pcre_maketables.lo │ ├── pcre_maketables.o │ ├── pcre_newline.c │ ├── pcre_newline.lo │ ├── pcre_newline.o │ ├── pcre_ord2utf8.c │ ├── pcre_ord2utf8.lo │ ├── pcre_ord2utf8.o │ ├── pcre_printint.c │ ├── pcre_printint.o │ ├── pcre_refcount.c │ ├── pcre_refcount.lo │ ├── pcre_refcount.o │ ├── pcre_scanner.cc │ ├── pcre_scanner.h │ ├── pcre_scanner.lo │ ├── pcre_scanner.o │ ├── pcre_scanner_unittest │ ├── pcre_scanner_unittest.cc │ ├── pcre_scanner_unittest.o │ ├── pcre_string_utils.c │ ├── pcre_string_utils.lo │ ├── pcre_string_utils.o │ ├── pcre_stringpiece.cc │ ├── pcre_stringpiece.h │ ├── pcre_stringpiece.h.in │ ├── pcre_stringpiece.lo │ ├── pcre_stringpiece.o │ ├── pcre_stringpiece_unittest │ ├── pcre_stringpiece_unittest.cc │ ├── pcre_stringpiece_unittest.o │ ├── pcre_study.c │ ├── pcre_study.lo │ ├── pcre_study.o │ ├── pcre_tables.c │ ├── pcre_tables.lo │ ├── pcre_tables.o │ ├── pcre_ucd.c │ ├── pcre_ucd.lo │ ├── pcre_ucd.o │ ├── pcre_valid_utf8.c │ ├── pcre_valid_utf8.lo │ ├── pcre_valid_utf8.o │ ├── pcre_version.c │ ├── pcre_version.lo │ ├── pcre_version.o │ ├── pcre_xclass.c │ ├── pcre_xclass.lo │ ├── pcre_xclass.o │ ├── pcrecpp.cc │ ├── pcrecpp.h │ ├── pcrecpp.lo │ ├── pcrecpp.o │ ├── pcrecpp_internal.h │ ├── pcrecpp_unittest │ ├── pcrecpp_unittest.cc │ ├── pcrecpp_unittest.o │ ├── pcrecpparg.h │ ├── pcrecpparg.h.in │ ├── pcredemo.c │ ├── pcregexp.pas │ ├── pcregrep │ ├── pcregrep.c │ ├── pcregrep.o │ ├── pcreposix.c │ ├── pcreposix.h │ ├── pcreposix.lo │ ├── pcreposix.o │ ├── pcretest │ ├── pcretest.c │ ├── pcretest.o │ ├── perltest.pl │ ├── sljit │ ├── sljitConfig.h │ ├── sljitConfigInternal.h │ ├── sljitExecAllocator.c │ ├── sljitLir.c │ ├── sljitLir.h │ ├── sljitNativeARM_Thumb2.c │ ├── sljitNativeARM_v5.c │ ├── sljitNativeMIPS_32.c │ ├── sljitNativeMIPS_common.c │ ├── sljitNativePPC_32.c │ ├── sljitNativePPC_64.c │ ├── sljitNativePPC_common.c │ ├── sljitNativeX86_32.c │ ├── sljitNativeX86_64.c │ ├── sljitNativeX86_common.c │ └── sljitUtils.c │ ├── stamp-h1 │ ├── testdata │ ├── grepbinary │ ├── grepfilelist │ ├── grepinput │ ├── grepinput3 │ ├── grepinput8 │ ├── grepinputv │ ├── grepinputx │ ├── greplist │ ├── grepoutput │ ├── grepoutput8 │ ├── grepoutputN │ ├── greppatN4 │ ├── saved16 │ ├── saved16BE-1 │ ├── saved16BE-2 │ ├── saved16LE-1 │ ├── saved16LE-2 │ ├── saved8 │ ├── testinput1 │ ├── testinput10 │ ├── testinput11 │ ├── testinput12 │ ├── testinput13 │ ├── testinput14 │ ├── testinput15 │ ├── testinput16 │ ├── testinput17 │ ├── testinput18 │ ├── testinput19 │ ├── testinput2 │ ├── testinput20 │ ├── testinput21 │ ├── testinput22 │ ├── testinput3 │ ├── testinput4 │ ├── testinput5 │ ├── testinput6 │ ├── testinput7 │ ├── testinput8 │ ├── testinput9 │ ├── testoutput1 │ ├── testoutput10 │ ├── testoutput11-16 │ ├── testoutput11-8 │ ├── testoutput12 │ ├── testoutput13 │ ├── testoutput14 │ ├── testoutput15 │ ├── testoutput16 │ ├── testoutput17 │ ├── testoutput18 │ ├── testoutput19 │ ├── testoutput2 │ ├── testoutput20 │ ├── testoutput21 │ ├── testoutput22 │ ├── testoutput3 │ ├── testoutput4 │ ├── testoutput5 │ ├── testoutput6 │ ├── testoutput7 │ ├── testoutput8 │ ├── testoutput9 │ ├── wintestinput3 │ └── wintestoutput3 │ └── ucp.h ├── scripts ├── SEE.template ├── build-bb.sh ├── build-ssl.sh ├── createtgz.sh ├── download_files.py ├── gettoolchains.sh ├── install-dependencies.sh ├── mkSEE.sh ├── mkzip.sh ├── readytorock.sh ├── settags.sh ├── signapk │ ├── inc.signapk.jar │ ├── minsignapk.jar │ ├── signapk.jar │ └── zipadjust ├── sourceforge-release.py ├── toolchain-exports.sh └── update-bins.sh └── wolfssl ├── .cproject ├── .project ├── AUTHORS ├── COPYING ├── ChangeLog ├── IDE ├── ARDUINO │ ├── README.md │ ├── include.am │ ├── sketches │ │ └── wolfssl_client │ │ │ └── wolfssl_client.ino │ └── wolfssl-arduino.sh ├── GCC-ARM │ ├── Header │ │ └── user_settings.h │ ├── Makefile │ ├── Makefile.bench │ ├── Makefile.client │ ├── Makefile.common │ ├── Makefile.static │ ├── Makefile.test │ ├── README.md │ ├── Source │ │ ├── armtarget.c │ │ ├── benchmark_main.c │ │ ├── test_main.c │ │ └── tls_client.c │ ├── include.am │ └── linker.ld ├── HEXIWEAR │ └── wolfSSL_HW │ │ ├── .cproject │ │ ├── .cwGeneratedFileSetLog │ │ ├── .project │ │ ├── .settings │ │ └── com.freescale.processorexpert.derivative.prefs │ │ └── user_settings.h ├── IAR-EWARM │ ├── Projects │ │ ├── benchmark │ │ │ ├── benchmark-main.c │ │ │ ├── current_time.c │ │ │ ├── wolfCrypt-benchmark.ewd │ │ │ └── wolfCrypt-benchmark.ewp │ │ ├── common │ │ │ ├── minimum-startup.c │ │ │ └── wolfssl.icf │ │ ├── lib │ │ │ ├── wolfSSL-Lib.ewd │ │ │ └── wolfSSL-Lib.ewp │ │ ├── test │ │ │ ├── test-main.c │ │ │ ├── wolfCrypt-test.ewd │ │ │ └── wolfCrypt-test.ewp │ │ ├── user_settings.h │ │ └── wolfssl.eww │ ├── README │ └── embOS │ │ ├── .gitignore │ │ ├── README │ │ ├── SAMV71_XULT │ │ ├── README_SAMV71 │ │ ├── embOS_SAMV71_XULT_Linker_Script │ │ │ └── samv71q21_wolfssl.icf │ │ ├── embOS_SAMV71_XULT_user_settings │ │ │ ├── user_settings.h │ │ │ ├── user_settings_simple_example.h │ │ │ └── user_settings_verbose_example.h │ │ ├── embOS_wolfcrypt_benchmark_SAMV71_XULT │ │ │ ├── Application │ │ │ │ └── runBenchmarks.c │ │ │ ├── README_wolfcrypt_benchmark │ │ │ ├── settings │ │ │ │ └── wolfcrypt_benchmark_Debug.jlink │ │ │ ├── wolfcrypt_benchmark.ewd │ │ │ ├── wolfcrypt_benchmark.ewp │ │ │ └── wolfcrypt_benchmark.ewt │ │ ├── embOS_wolfcrypt_lib_SAMV71_XULT │ │ │ ├── README_wolfcrypt_lib │ │ │ ├── wolfcrypt_lib.ewd │ │ │ ├── wolfcrypt_lib.ewp │ │ │ └── wolfcrypt_lib.ewt │ │ └── embOS_wolfcrypt_test_SAMV71_XULT │ │ │ ├── Application │ │ │ └── runWolfcryptTests.c │ │ │ ├── README_wolfcrypt_test │ │ │ ├── settings │ │ │ └── wolfcrypt_test_Debug.jlink │ │ │ ├── wolfcrypt_test.ewd │ │ │ ├── wolfcrypt_test.ewp │ │ │ └── wolfcrypt_test.ewt │ │ ├── custom_port │ │ ├── README_custom_port │ │ ├── custom_port_Linker_Script │ │ │ └── samv71q21_wolfssl.icf │ │ ├── custom_port_user_settings │ │ │ └── user_settings.h │ │ ├── wolfcrypt_benchmark_custom_port │ │ │ └── Application │ │ │ │ └── runBenchmarks.c │ │ └── wolfcrypt_test_custom_port │ │ │ └── Application │ │ │ └── runWolfcryptTests.c │ │ └── extract_trial_here │ │ └── README_extract_trial_here ├── INTIME-RTOS │ ├── README.md │ ├── include.am │ ├── libwolfssl.c │ ├── libwolfssl.vcxproj │ ├── user_settings.h │ ├── wolfExamples.c │ ├── wolfExamples.h │ ├── wolfExamples.sln │ └── wolfExamples.vcxproj ├── LINUX-SGX │ ├── README.md │ ├── build.sh │ ├── clean.sh │ ├── include.am │ └── sgx_t_static.mk ├── LPCXPRESSO │ ├── README.md │ ├── lib_wolfssl │ │ ├── lpc_18xx_port.c │ │ └── user_settings.h │ └── wolf_example │ │ ├── .cproject │ │ ├── .project │ │ ├── readme.txt │ │ └── src │ │ ├── lpc_18xx_startup.c │ │ └── wolfssl_example.c ├── MDK-ARM │ ├── LPC43xx │ │ └── time-LCP43xx.c │ ├── MDK-ARM │ │ └── wolfSSL │ │ │ ├── Retarget.c │ │ │ ├── cert_data.c │ │ │ ├── cert_data.h │ │ │ ├── config-BARE-METAL.h │ │ │ ├── config-FS.h │ │ │ ├── config-RTX-TCP-FS.h │ │ │ ├── config-WOLFLIB.h │ │ │ ├── config.h │ │ │ ├── main.c │ │ │ ├── shell.c │ │ │ ├── time-CortexM3-4.c │ │ │ ├── time-dummy.c │ │ │ ├── wolfssl_MDK_ARM.c │ │ │ └── wolfssl_MDK_ARM.h │ ├── Projects │ │ ├── MDK-ARM-STM32F2xx.uvopt │ │ ├── MDK-ARM-STM32F2xx.uvproj │ │ ├── MDK-ARM-wolfSSL-Lib.uvopt │ │ ├── MDK-ARM-wolfSSL-Lib.uvproj │ │ └── Readme.txt │ └── STM32F2xx_StdPeriph_Lib │ │ └── time-STM32F2xx.c ├── MDK5-ARM │ ├── Conf │ │ └── user_settings.h │ ├── Inc │ │ └── wolfssl_MDK_ARM.h │ ├── Projects │ │ ├── CryptBenchmark │ │ │ ├── Abstract.txt │ │ │ ├── CryptBenchmark.sct │ │ │ ├── CryptBenchmark.uvoptx │ │ │ ├── CryptBenchmark.uvprojx │ │ │ ├── RTE │ │ │ │ └── wolfSSL │ │ │ │ │ └── user_settings.h │ │ │ └── main.c │ │ ├── CryptTest │ │ │ ├── Abstract.txt │ │ │ ├── CryptTest.sct │ │ │ ├── CryptTest.uvoptx │ │ │ ├── CryptTest.uvprojx │ │ │ ├── RTE │ │ │ │ └── wolfSSL │ │ │ │ │ └── user_settings.h │ │ │ └── main.c │ │ ├── EchoClient │ │ │ ├── Abstract.txt │ │ │ ├── EchoClient.uvoptx │ │ │ ├── EchoClient.uvprojx │ │ │ ├── main.c │ │ │ └── wolfssl-link.sct │ │ ├── EchoServer │ │ │ ├── Abstract.txt │ │ │ ├── EchoServer.uvoptx │ │ │ ├── EchoServer.uvprojx │ │ │ ├── main.c │ │ │ └── wolfssl-link.sct │ │ ├── SimpleClient │ │ │ ├── Abstract.txt │ │ │ ├── SimpleClient.uvoptx │ │ │ ├── SimpleClient.uvprojx │ │ │ ├── main.c │ │ │ └── wolfssl-link.sct │ │ ├── SimpleServer │ │ │ ├── Abstract.txt │ │ │ ├── SimpleServer.uvoptx │ │ │ ├── SimpleServer.uvprojx │ │ │ ├── main.c │ │ │ └── wolfssl-link.sct │ │ ├── wolfSSL-Full │ │ │ ├── Abstract.txt │ │ │ ├── main.c │ │ │ ├── shell.c │ │ │ ├── time-CortexM3-4.c │ │ │ ├── wolfsslFull.uvoptx │ │ │ └── wolfsslFull.uvprojx │ │ └── wolfSSL-Lib │ │ │ ├── wolfSSL-Lib.uvoptx │ │ │ └── wolfSSL-Lib.uvprojx │ └── Src │ │ └── ssl-dummy.c ├── MYSQL │ ├── CMakeLists_wolfCrypt.txt │ ├── CMakeLists_wolfSSL.txt │ └── do.sh ├── OPENSTM32 │ ├── .cproject │ ├── .project │ ├── Inc │ │ ├── lwipopts.h │ │ ├── user_settings.h │ │ └── wolfssl_example.h │ ├── README.md │ ├── Src │ │ ├── main.c │ │ └── wolfssl_example.c │ ├── include.am │ ├── wolfSTM32.cfg │ ├── wolfSTM32.ioc │ └── wolfSTM32.xml ├── ROWLEY-CROSSWORKS-ARM │ ├── Kinetis_FlashPlacement.xml │ ├── README.md │ ├── arm_startup.c │ ├── benchmark_main.c │ ├── hw.h │ ├── include.am │ ├── kinetis_hw.c │ ├── retarget.c │ ├── test_main.c │ ├── user_settings.h │ ├── wolfssl.hzp │ └── wolfssl_ltc.hzp ├── VS-ARM │ ├── README.md │ ├── include.am │ ├── user_settings.h │ ├── wolfssl.sln │ └── wolfssl.vcxproj ├── WIN-SGX │ ├── ReadMe.txt │ ├── include.am │ ├── wolfSSL_SGX.edl │ ├── wolfSSL_SGX.sln │ ├── wolfSSL_SGX.vcxproj │ └── wolfSSL_SGX.vcxproj.filters ├── WIN │ ├── README.txt │ ├── include.am │ ├── test.vcxproj │ ├── user_settings.h │ ├── wolfssl-fips.sln │ └── wolfssl-fips.vcxproj ├── WORKBENCH │ ├── README.md │ └── include.am ├── XCODE │ ├── Benchmark │ │ ├── include.am │ │ ├── wolfBench.xcodeproj │ │ │ └── project.pbxproj │ │ └── wolfBench │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ ├── README.md │ ├── include.am │ ├── user_settings.h │ ├── wolfssl-FIPS.xcodeproj │ │ └── project.pbxproj │ ├── wolfssl.xcodeproj │ │ └── project.pbxproj │ ├── wolfssl.xcworkspace │ │ └── contents.xcworkspacedata │ └── wolfssl_testsuite.xcodeproj │ │ └── project.pbxproj └── include.am ├── INSTALL ├── IPP └── .gitkeep ├── LICENSING ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── aclocal.m4 ├── build-aux ├── compile ├── config.guess ├── config.sub ├── depcomp ├── install-sh ├── ltmain.sh ├── missing └── test-driver ├── certs ├── 1024 │ ├── ca-cert.der │ ├── ca-cert.pem │ ├── ca-key.der │ ├── ca-key.pem │ ├── client-cert.der │ ├── client-cert.pem │ ├── client-key.der │ ├── client-key.pem │ ├── client-keyPub.der │ ├── dh1024.der │ ├── dh1024.pem │ ├── dsa1024.der │ ├── dsa1024.pem │ ├── include.am │ ├── rsa1024.der │ ├── server-cert.der │ ├── server-cert.pem │ ├── server-key.der │ └── server-key.pem ├── ca-cert.der ├── ca-cert.pem ├── ca-ecc-cert.der ├── ca-ecc-cert.pem ├── ca-ecc-key.der ├── ca-ecc-key.pem ├── ca-ecc384-cert.der ├── ca-ecc384-cert.pem ├── ca-ecc384-key.der ├── ca-ecc384-key.pem ├── ca-key.der ├── ca-key.pem ├── client-ca.pem ├── client-cert-3072.pem ├── client-cert.der ├── client-cert.pem ├── client-ecc-cert.der ├── client-ecc-cert.pem ├── client-key-3072.pem ├── client-key.der ├── client-key.pem ├── client-keyEnc.pem ├── client-keyPub.der ├── crl │ ├── caEcc384Crl.pem │ ├── caEccCrl.pem │ ├── cliCrl.pem │ ├── crl.pem │ ├── crl.revoked │ ├── crl2.pem │ ├── eccCliCRL.pem │ ├── eccSrvCRL.pem │ └── include.am ├── dh2048.der ├── dh2048.pem ├── dh3072.pem ├── dsa2048.der ├── dsaparams.pem ├── ecc-client-key.der ├── ecc-client-key.pem ├── ecc-client-keyPub.der ├── ecc-client-keyPub.pem ├── ecc-key-comp.pem ├── ecc-key.der ├── ecc-key.pem ├── ecc-keyPkcs8.pem ├── ecc-keyPkcs8Enc.pem ├── ecc-keyPub.der ├── ecc-privOnlyCert.pem ├── ecc-privOnlyKey.pem ├── ecc-privkey.pem ├── ecc-rsa-server.p12 ├── ecc │ ├── genecc.sh │ ├── include.am │ └── wolfssl.cnf ├── ed25519 │ ├── ca-ed25519-key.der │ ├── ca-ed25519-key.pem │ ├── ca-ed25519.der │ ├── ca-ed25519.pem │ ├── client-ed25519-key.der │ ├── client-ed25519-key.pem │ ├── client-ed25519.der │ ├── client-ed25519.pem │ ├── root-ed25519-key.der │ ├── root-ed25519-key.pem │ ├── root-ed25519.der │ ├── root-ed25519.pem │ ├── server-ed25519-key.der │ ├── server-ed25519-key.pem │ ├── server-ed25519.der │ └── server-ed25519.pem ├── external │ ├── baltimore-cybertrust-root.pem │ ├── ca-globalsign-root-r3.pem │ └── include.am ├── include.am ├── ntru-cert.pem ├── ntru-key.raw ├── ocsp │ ├── include.am │ ├── index-ca-and-intermediate-cas.txt │ ├── index-intermediate1-ca-issued-certs.txt │ ├── index-intermediate3-ca-issued-certs.txt │ ├── intermediate1-ca-cert.pem │ ├── intermediate1-ca-key.pem │ ├── intermediate2-ca-cert.pem │ ├── intermediate2-ca-key.pem │ ├── intermediate3-ca-cert.pem │ ├── intermediate3-ca-key.pem │ ├── ocsp-responder-cert.pem │ ├── ocsp-responder-key.pem │ ├── openssl.cnf │ ├── root-ca-cert.pem │ ├── root-ca-key.pem │ ├── server1-cert.pem │ ├── server1-key.pem │ ├── server2-cert.pem │ ├── server2-key.pem │ ├── server3-cert.pem │ ├── server3-key.pem │ ├── server4-cert.pem │ ├── server4-key.pem │ ├── server5-cert.pem │ └── server5-key.pem ├── rsa2048.der ├── server-cert-chain.der ├── server-cert.der ├── server-cert.pem ├── server-ecc-comp.der ├── server-ecc-comp.pem ├── server-ecc-rsa.der ├── server-ecc-rsa.pem ├── server-ecc-self.der ├── server-ecc-self.pem ├── server-ecc.der ├── server-ecc.pem ├── server-key.der ├── server-key.pem ├── server-keyEnc.pem ├── server-keyPkcs8.der ├── server-keyPkcs8.pem ├── server-keyPkcs8Enc.pem ├── server-keyPkcs8Enc12.pem ├── server-keyPkcs8Enc2.pem ├── server-revoked-cert.pem ├── server-revoked-key.pem ├── taoCert.txt ├── test-pathlen │ ├── include.am │ ├── server-0-1-ca.pem │ ├── server-0-1-cert.pem │ ├── server-0-1-chain.pem │ ├── server-0-ca.pem │ ├── server-0-cert.pem │ ├── server-0-chain.pem │ ├── server-1-0-ca.pem │ ├── server-1-0-cert.pem │ ├── server-1-0-chain.pem │ ├── server-1-ca.pem │ ├── server-1-cert.pem │ ├── server-1-chain.pem │ ├── server-127-ca.pem │ ├── server-127-cert.pem │ ├── server-127-chain.pem │ ├── server-128-ca.pem │ ├── server-128-cert.pem │ └── server-128-chain.pem ├── test-servercert.p12 ├── test │ ├── cert-ext-ia.cfg │ ├── cert-ext-ia.der │ ├── cert-ext-nc.cfg │ ├── cert-ext-nc.der │ ├── cert-ext-ns.der │ ├── gen-ext-certs.sh │ ├── include.am │ ├── server-cert-ecc-badsig.der │ ├── server-cert-ecc-badsig.pem │ ├── server-cert-rsa-badsig.der │ ├── server-cert-rsa-badsig.pem │ └── server-duplicate-policy.pem └── wolfssl-website-ca.pem ├── config.in ├── configure ├── configure.ac ├── ctaocrypt └── src │ ├── aes.c │ ├── des3.c │ ├── fips.c │ ├── fips_test.c │ ├── hmac.c │ ├── misc.c │ ├── random.c │ ├── rsa.c │ ├── sha.c │ ├── sha256.c │ ├── sha512.c │ ├── wolfcrypt_first.c │ └── wolfcrypt_last.c ├── cyassl ├── callbacks.h ├── certs_test.h ├── crl.h ├── ctaocrypt │ ├── aes.h │ ├── arc4.h │ ├── asn.h │ ├── asn_public.h │ ├── blake2-impl.h │ ├── blake2-int.h │ ├── blake2.h │ ├── camellia.h │ ├── chacha.h │ ├── coding.h │ ├── compress.h │ ├── des3.h │ ├── dh.h │ ├── dsa.h │ ├── ecc.h │ ├── error-crypt.h │ ├── fips_test.h │ ├── hc128.h │ ├── hmac.h │ ├── include.am │ ├── integer.h │ ├── logging.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── memory.h │ ├── misc.h │ ├── mpi_class.h │ ├── mpi_superclass.h │ ├── pkcs7.h │ ├── poly1305.h │ ├── port │ │ └── pic32 │ │ │ └── pic32mz-crypt.h │ ├── pwdbased.h │ ├── rabbit.h │ ├── random.h │ ├── ripemd.h │ ├── rsa.h │ ├── settings.h │ ├── settings_comp.h │ ├── sha.h │ ├── sha256.h │ ├── sha512.h │ ├── tfm.h │ ├── types.h │ ├── visibility.h │ └── wc_port.h ├── error-ssl.h ├── include.am ├── internal.h ├── ocsp.h ├── openssl │ ├── asn1.h │ ├── bio.h │ ├── bn.h │ ├── conf.h │ ├── crypto.h │ ├── des.h │ ├── dh.h │ ├── dsa.h │ ├── ec.h │ ├── ec25519.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ed25519.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── include.am │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pkcs12.h │ ├── rand.h │ ├── ripemd.h │ ├── rsa.h │ ├── sha.h │ ├── ssl.h │ ├── ssl23.h │ ├── stack.h │ ├── ui.h │ ├── x509.h │ └── x509v3.h ├── options.h ├── sniffer.h ├── sniffer_error.h ├── sniffer_error.rc ├── ssl.h ├── test.h └── version.h ├── doc ├── README.txt └── include.am ├── examples ├── benchmark │ ├── include.am │ ├── tls_bench.c │ └── tls_bench.h ├── client │ ├── client-ntru.vcproj │ ├── client.c │ ├── client.h │ ├── client.sln │ ├── client.vcproj │ ├── client.vcxproj │ └── include.am ├── echoclient │ ├── echoclient-ntru.vcproj │ ├── echoclient.c │ ├── echoclient.h │ ├── echoclient.sln │ ├── echoclient.vcproj │ ├── echoclient.vcxproj │ └── include.am ├── echoserver │ ├── echoserver-ntru.vcproj │ ├── echoserver.c │ ├── echoserver.h │ ├── echoserver.sln │ ├── echoserver.vcproj │ ├── echoserver.vcxproj │ └── include.am ├── include.am ├── sctp │ ├── include.am │ ├── sctp-client-dtls.c │ ├── sctp-client.c │ ├── sctp-server-dtls.c │ └── sctp-server.c └── server │ ├── include.am │ ├── server-ntru.vcproj │ ├── server.c │ ├── server.h │ ├── server.sln │ ├── server.vcproj │ └── server.vcxproj ├── gencertbuf.pl ├── input ├── lib └── dummy ├── m4 ├── ax_add_am_macro.m4 ├── ax_am_jobserver.m4 ├── ax_am_macros.m4 ├── ax_append_compile_flags.m4 ├── ax_append_flag.m4 ├── ax_append_to_file.m4 ├── ax_check_compile_flag.m4 ├── ax_check_link_flag.m4 ├── ax_count_cpus.m4 ├── ax_create_generic_config.m4 ├── ax_debug.m4 ├── ax_file_escapes.m4 ├── ax_harden_compiler_flags.m4 ├── ax_print_to_file.m4 ├── ax_pthread.m4 ├── ax_tls.m4 ├── ax_vcs_checkout.m4 ├── hexversion.m4 ├── lib_socket_nsl.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── visibility.m4 └── wolfssl_darwin_clang.m4 ├── mcapi ├── PIC32MZ-serial.h ├── README ├── crypto.c ├── crypto.h ├── include.am ├── mcapi_test.c ├── user_settings.h ├── wolfcrypt_mcapi.X │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── include.am │ │ └── project.xml ├── wolfcrypt_test.X │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── include.am │ │ └── project.xml ├── wolfssl.X │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── include.am │ │ └── project.xml └── zlib.X │ ├── Makefile │ └── nbproject │ ├── configurations.xml │ ├── include.am │ └── project.xml ├── mplabx ├── PIC32MZ-serial.h ├── README ├── benchmark_main.c ├── include.am ├── test_main.c ├── user_settings.h ├── wolfcrypt_benchmark.X │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── include.am │ │ └── project.xml ├── wolfcrypt_test.X │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── include.am │ │ └── project.xml └── wolfssl.X │ ├── Makefile │ └── nbproject │ ├── configurations.xml │ ├── include.am │ └── project.xml ├── mqx ├── README ├── util_lib │ ├── .cproject │ ├── .project │ └── Sources │ │ ├── include.am │ │ ├── util.c │ │ └── util.h ├── wolfcrypt_benchmark │ ├── .cproject │ ├── .project │ ├── Debugger │ │ ├── K70FN1M0.mem │ │ ├── init_kinetis.tcl │ │ └── mass_erase_kinetis.tcl │ ├── ReferencedRSESystems.xml │ ├── Sources │ │ ├── include.am │ │ ├── main.c │ │ └── main.h │ ├── wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.launch │ ├── wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.launch │ ├── wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_JTrace.jlink │ ├── wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_JTrace.launch │ ├── wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.launch │ └── wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.launch ├── wolfcrypt_test │ ├── .cproject │ ├── .project │ ├── Debugger │ │ ├── K70FN1M0.mem │ │ ├── init_kinetis.tcl │ │ └── mass_erase_kinetis.tcl │ ├── ReferencedRSESystems.xml │ ├── Sources │ │ ├── include.am │ │ ├── main.c │ │ └── main.h │ ├── wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.launch │ ├── wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.launch │ ├── wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_JTrace.jlink │ ├── wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_JTrace.launch │ ├── wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.launch │ └── wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.launch ├── wolfssl │ ├── .cproject │ ├── .project │ └── include.am └── wolfssl_client │ ├── .cproject │ ├── .project │ ├── Debugger │ ├── K70FN1M0.mem │ ├── init_kinetis.tcl │ └── mass_erase_kinetis.tcl │ ├── ReferencedRSESystems.xml │ ├── Sources │ ├── include.am │ ├── main.c │ └── main.h │ ├── wolfssl_client_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.launch │ ├── wolfssl_client_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.launch │ ├── wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_JTrace.jlink │ ├── wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_JTrace.launch │ ├── wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.launch │ └── wolfssl_client_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.launch ├── quit ├── rpm ├── include.am └── spec.in ├── scripts ├── benchmark.test ├── crl-revoked.test ├── external.test ├── google.test ├── include.am ├── ocsp-stapling-with-ca-as-responder.test ├── ocsp-stapling.test ├── ocsp-stapling2.test ├── ocsp.test ├── openssl.test ├── ping.test ├── pkcallbacks.test ├── psk.test ├── resume.test ├── sniffer-testsuite.test ├── testsuite.pcap ├── tls-cert-fail.test ├── tls13.test └── trusted_peer.test ├── src ├── bio.c ├── crl.c ├── include.am ├── internal.c ├── keys.c ├── ocsp.c ├── sniffer.c ├── ssl.c ├── tls.c ├── tls13.c └── wolfio.c ├── sslSniffer ├── sslSniffer.vcproj ├── sslSniffer.vcxproj └── sslSnifferTest │ ├── include.am │ ├── snifftest.c │ └── sslSniffTest.vcproj ├── ssl_helper-wolfssl ├── 00cfg-wolfssl-3.6.8 ├── 00cfg-wolfssl-3.9.8 ├── README ├── ssl_helper.c ├── ssl_helper.o └── ssl_helper.sh ├── stamp-h.in ├── support ├── include.am ├── wolfssl.pc └── wolfssl.pc.in ├── swig ├── PythonBuild.sh ├── README ├── include.am ├── python_wolfssl.vcproj ├── rsasign.py ├── runme.py ├── wolfssl.i └── wolfssl_adds.c ├── tests ├── api.c ├── hash.c ├── include.am ├── srp.c ├── suites.c ├── test-dtls.conf ├── test-ed25519.conf ├── test-psk-no-id.conf ├── test-qsh.conf ├── test-sctp.conf ├── test-sig.conf ├── test-tls13-ecc.conf ├── test-tls13.conf ├── test.conf ├── unit.c └── unit.h ├── testsuite ├── include.am ├── testsuite-ntru.vcproj ├── testsuite.c ├── testsuite.sln ├── testsuite.vcproj └── testsuite.vcxproj ├── tirtos ├── README ├── include.am ├── packages │ └── ti │ │ └── net │ │ └── wolfssl │ │ ├── package.bld │ │ ├── package.xdc │ │ ├── package.xs │ │ └── tests │ │ └── EK_TM4C1294XL │ │ └── wolfcrypt │ │ ├── benchmark │ │ ├── TM4C1294NC.icf │ │ ├── benchmark.cfg │ │ ├── main.c │ │ ├── package.bld.hide │ │ └── package.xdc │ │ └── test │ │ ├── TM4C1294NC.icf │ │ ├── main.c │ │ ├── package.bld.hide │ │ ├── package.xdc │ │ └── test.cfg ├── products.mak ├── wolfssl.bld └── wolfssl.mak ├── valgrind-error.sh ├── wolfcrypt ├── benchmark │ ├── benchmark.c │ ├── benchmark.h │ ├── benchmark.sln │ ├── benchmark.vcproj │ └── include.am ├── src │ ├── aes.c │ ├── aes_asm.asm │ ├── aes_asm.s │ ├── arc4.c │ ├── asm.c │ ├── asn.c │ ├── async.c │ ├── blake2b.c │ ├── camellia.c │ ├── chacha.c │ ├── chacha20_poly1305.c │ ├── cmac.c │ ├── coding.c │ ├── compress.c │ ├── cpuid.c │ ├── curve25519.c │ ├── des3.c │ ├── dh.c │ ├── dsa.c │ ├── ecc.c │ ├── ecc_fp.c │ ├── ed25519.c │ ├── error.c │ ├── evp.c │ ├── fe_low_mem.c │ ├── fe_operations.c │ ├── fe_x25519_128.i │ ├── fe_x25519_x64.i │ ├── fipsv2.c │ ├── fp_mont_small.i │ ├── fp_mul_comba_12.i │ ├── fp_mul_comba_17.i │ ├── fp_mul_comba_20.i │ ├── fp_mul_comba_24.i │ ├── fp_mul_comba_28.i │ ├── fp_mul_comba_3.i │ ├── fp_mul_comba_32.i │ ├── fp_mul_comba_4.i │ ├── fp_mul_comba_48.i │ ├── fp_mul_comba_6.i │ ├── fp_mul_comba_64.i │ ├── fp_mul_comba_7.i │ ├── fp_mul_comba_8.i │ ├── fp_mul_comba_9.i │ ├── fp_mul_comba_small_set.i │ ├── fp_sqr_comba_12.i │ ├── fp_sqr_comba_17.i │ ├── fp_sqr_comba_20.i │ ├── fp_sqr_comba_24.i │ ├── fp_sqr_comba_28.i │ ├── fp_sqr_comba_3.i │ ├── fp_sqr_comba_32.i │ ├── fp_sqr_comba_4.i │ ├── fp_sqr_comba_48.i │ ├── fp_sqr_comba_6.i │ ├── fp_sqr_comba_64.i │ ├── fp_sqr_comba_7.i │ ├── fp_sqr_comba_8.i │ ├── fp_sqr_comba_9.i │ ├── fp_sqr_comba_small_set.i │ ├── ge_low_mem.c │ ├── ge_operations.c │ ├── hash.c │ ├── hc128.c │ ├── hmac.c │ ├── idea.c │ ├── include.am │ ├── integer.c │ ├── logging.c │ ├── md2.c │ ├── md4.c │ ├── md5.c │ ├── memory.c │ ├── misc.c │ ├── pkcs12.c │ ├── pkcs7.c │ ├── poly1305.c │ ├── port │ │ ├── arm │ │ │ ├── armv8-aes.c │ │ │ └── armv8-sha256.c │ │ ├── atmel │ │ │ ├── README.md │ │ │ └── atmel.c │ │ ├── caam │ │ │ ├── caam_aes.c │ │ │ ├── caam_doc.pdf │ │ │ ├── caam_driver.c │ │ │ ├── caam_init.c │ │ │ └── caam_sha.c │ │ ├── cavium │ │ │ └── cavium_nitrox.c │ │ ├── intel │ │ │ ├── quickassist.c │ │ │ └── quickassist_mem.c │ │ ├── nrf51.c │ │ ├── nxp │ │ │ └── ksdk_port.c │ │ ├── pic32 │ │ │ └── pic32mz-crypt.c │ │ ├── st │ │ │ └── stm32.c │ │ ├── ti │ │ │ ├── ti-aes.c │ │ │ ├── ti-ccm.c │ │ │ ├── ti-des3.c │ │ │ └── ti-hash.c │ │ └── xilinx │ │ │ ├── xil-aesgcm.c │ │ │ └── xil-sha3.c │ ├── pwdbased.c │ ├── rabbit.c │ ├── random.c │ ├── ripemd.c │ ├── rsa.c │ ├── selftest.c │ ├── sha.c │ ├── sha256.c │ ├── sha3.c │ ├── sha512.c │ ├── signature.c │ ├── sp.c │ ├── sp_int.c │ ├── srp.c │ ├── tfm.c │ ├── wc_encrypt.c │ ├── wc_port.c │ ├── wolfevent.c │ └── wolfmath.c ├── test │ ├── include.am │ ├── test.c │ ├── test.h │ ├── test.sln │ └── test.vcproj └── user-crypto │ ├── Makefile.am │ ├── README.txt │ ├── autogen.sh │ ├── configure.ac │ ├── include.am │ ├── include │ └── user_rsa.h │ ├── lib │ └── .gitkeep │ └── src │ └── rsa.c ├── wolfssl-ntru.sln ├── wolfssl-ntru.vcproj ├── wolfssl.sln ├── wolfssl.vcproj ├── wolfssl.vcxproj ├── wolfssl ├── callbacks.h ├── certs_test.h ├── crl.h ├── error-ssl.h ├── include.am ├── internal.h ├── ocsp.h ├── openssl │ ├── aes.h │ ├── asn1.h │ ├── bio.h │ ├── bn.h │ ├── buffer.h │ ├── conf.h │ ├── crypto.h │ ├── des.h │ ├── dh.h │ ├── dsa.h │ ├── ec.h │ ├── ec25519.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ed25519.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── include.am │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pkcs12.h │ ├── rand.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── sha.h │ ├── ssl.h │ ├── ssl23.h │ ├── stack.h │ ├── ui.h │ ├── x509.h │ └── x509v3.h ├── options.h ├── options.h.in ├── sniffer.h ├── sniffer_error.h ├── sniffer_error.rc ├── ssl.h ├── test.h ├── version.h ├── version.h.in ├── wolfcrypt │ ├── aes.h │ ├── arc4.h │ ├── asn.h │ ├── asn_public.h │ ├── async.h │ ├── blake2-impl.h │ ├── blake2-int.h │ ├── blake2.h │ ├── camellia.h │ ├── chacha.h │ ├── chacha20_poly1305.h │ ├── cmac.h │ ├── coding.h │ ├── compress.h │ ├── cpuid.h │ ├── curve25519.h │ ├── des3.h │ ├── dh.h │ ├── dsa.h │ ├── ecc.h │ ├── ed25519.h │ ├── error-crypt.h │ ├── fe_operations.h │ ├── fips.h │ ├── fips_test.h │ ├── ge_operations.h │ ├── hash.h │ ├── hc128.h │ ├── hmac.h │ ├── idea.h │ ├── include.am │ ├── integer.h │ ├── logging.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── mem_track.h │ ├── memory.h │ ├── misc.h │ ├── mpi_class.h │ ├── mpi_superclass.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── poly1305.h │ ├── port │ │ ├── atmel │ │ │ └── atmel.h │ │ ├── caam │ │ │ ├── caam_driver.h │ │ │ ├── wolfcaam.h │ │ │ └── wolfcaam_sha.h │ │ ├── cavium │ │ │ └── cavium_nitrox.h │ │ ├── intel │ │ │ ├── quickassist.h │ │ │ └── quickassist_mem.h │ │ ├── nrf51.h │ │ ├── nxp │ │ │ └── ksdk_port.h │ │ ├── pic32 │ │ │ └── pic32mz-crypt.h │ │ ├── st │ │ │ └── stm32.h │ │ ├── ti │ │ │ ├── ti-ccm.h │ │ │ └── ti-hash.h │ │ └── xilinx │ │ │ └── xil-sha3.h │ ├── pwdbased.h │ ├── rabbit.h │ ├── random.h │ ├── ripemd.h │ ├── rsa.h │ ├── selftest.h │ ├── settings.h │ ├── sha.h │ ├── sha256.h │ ├── sha3.h │ ├── sha512.h │ ├── signature.h │ ├── sp.h │ ├── sp_int.h │ ├── srp.h │ ├── tfm.h │ ├── types.h │ ├── visibility.h │ ├── wc_encrypt.h │ ├── wc_port.h │ ├── wolfevent.h │ └── wolfmath.h └── wolfio.h ├── wolfssl64.sln └── wrapper ├── CSharp ├── wolfSSL-DTLS-PSK-Server │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── wolfSSL-DTLS-PSK-Server.cs │ └── wolfSSL-DTLS-PSK-Server.csproj ├── wolfSSL-DTLS-Server │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── wolfSSL-DTLS-Server.cs │ └── wolfSSL-DTLS-Server.csproj ├── wolfSSL-Example-IOCallbacks │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── wolfSSL-Example-IOCallbacks.cs │ └── wolfSSL-Example-IOCallbacks.csproj ├── wolfSSL-TLS-PSK-Server │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── wolfSSL-TLS-PSK-Server.cs │ └── wolfSSL-TLS-PSK-Server.csproj ├── wolfSSL-TLS-Server │ ├── App.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── wolfSSL-TLS-Server.cs │ └── wolfSSL-TLS-Server.csproj ├── wolfSSL_CSharp.sln └── wolfSSL_CSharp │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── wolfSSL.cs │ └── wolfSSL_CSharp.csproj ├── include.am └── python ├── wolfcrypt ├── .gitignore ├── LICENSING.rst ├── MANIFEST.in ├── README.rst ├── docs │ ├── Makefile │ ├── asymmetric.rst │ ├── conf.py │ ├── digest.rst │ ├── index.rst │ ├── mac.rst │ ├── random.rst │ └── symmetric.rst ├── include.am ├── requirements-testing.txt ├── setup.py ├── test │ ├── test_ciphers.py │ ├── test_hashes.py │ └── test_random.py ├── tox.ini └── wolfcrypt │ ├── __about__.py │ ├── __init__.py │ ├── build_ffi.py │ ├── ciphers.py │ ├── exceptions.py │ ├── hashes.py │ ├── random.py │ └── utils.py └── wolfssl ├── .centos-provisioner.sh ├── .gitignore ├── .ubuntu-provisioner.sh ├── LICENSING.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── Vagrantfile ├── docs ├── Makefile ├── api.rst ├── conf.py ├── examples.rst ├── index.rst ├── installation.rst ├── licensing.rst ├── requirements.txt └── usage.rst ├── examples ├── client.py └── server.py ├── include.am ├── requirements-testing.txt ├── setup.py ├── src └── wolfssl │ ├── __about__.py │ ├── __init__.py │ ├── _memory.py │ ├── _methods.py │ ├── build_ffi.py │ ├── exceptions.py │ └── utils.py ├── test ├── conftest.py ├── test_client.py ├── test_context.py └── test_methods.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /files.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/files.tar.enc -------------------------------------------------------------------------------- /installers/88-busybox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/88-busybox.sh -------------------------------------------------------------------------------- /installers/Bins/arm/xzdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/Bins/arm/xzdec -------------------------------------------------------------------------------- /installers/Bins/mips/xzdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/Bins/mips/xzdec -------------------------------------------------------------------------------- /installers/Bins/x86/xzdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/Bins/x86/xzdec -------------------------------------------------------------------------------- /installers/addusergroup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/addusergroup.sh -------------------------------------------------------------------------------- /installers/base_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/base_installer.sh -------------------------------------------------------------------------------- /installers/cleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/cleaner.sh -------------------------------------------------------------------------------- /installers/normal_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/installers/normal_installer.sh -------------------------------------------------------------------------------- /installers/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /libs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/build.sh -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/ChangeLog -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/LICENSE -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/Makefile -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/VERSION: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_audit.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_has_perm.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_av_stats.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_cache_stats.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_cleanup.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_compute_member.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_compute_create.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_destroy.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_entry_ref_init.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_has_perm.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_get_initial_context.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_context_to_sid.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_get_initial_sid.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_context_to_sid.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_has_perm_noaudit.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_has_perm.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_netlink_acquire_fd.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_netlink_loop.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_netlink_check_nb.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_netlink_loop.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_netlink_close.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_netlink_loop.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_netlink_open.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_netlink_loop.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_netlink_release_fd.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_netlink_loop.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_reset.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_sid_stats.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_cache_stats.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/avc_sid_to_context.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_context_to_sid.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/checkPasswdAccess.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_free.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_range_get.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_range_set.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_role_get.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_role_set.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_type_get.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_type_set.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_user_get.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/context_user_set.3: -------------------------------------------------------------------------------- 1 | .so man3/context_new.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/fgetfilecon.3: -------------------------------------------------------------------------------- 1 | .so man3/getfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/fgetfilecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/fini_selinuxmnt.3: -------------------------------------------------------------------------------- 1 | .so man3/init_selinuxmnt.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/freecon.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/freeconary.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/fsetfilecon.3: -------------------------------------------------------------------------------- 1 | .so man3/setfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/fsetfilecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/setfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/get_default_context.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/get_default_context_with_level.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/get_default_context_with_role.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/get_default_context_with_rolelevel.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/get_default_type.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/get_ordered_context_list_with_level.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getcon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getexeccon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getexeccon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getfilecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getfscreatecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getfscreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getkeycreatecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getkeycreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getpeercon.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getpeercon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getpidcon.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getpidcon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getprevcon.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getprevcon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/getsockcreatecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getsockcreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/is_selinux_mls_enabled.3: -------------------------------------------------------------------------------- 1 | .so man3/is_selinux_enabled.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/lgetfilecon.3: -------------------------------------------------------------------------------- 1 | .so man3/getfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/lgetfilecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/lsetfilecon.3: -------------------------------------------------------------------------------- 1 | .so man3/setfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/lsetfilecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/setfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/manual_user_enter_context.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/matchpathcon_fini.3: -------------------------------------------------------------------------------- 1 | .so man3/matchpathcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/matchpathcon_index.3: -------------------------------------------------------------------------------- 1 | .so man3/matchpathcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/matchpathcon_init.3: -------------------------------------------------------------------------------- 1 | .so man3/matchpathcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/mode_to_security_class.3: -------------------------------------------------------------------------------- 1 | .so man3/security_class_to_string.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/print_access_vector.3: -------------------------------------------------------------------------------- 1 | .so man3/security_class_to_string.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/query_user_context.3: -------------------------------------------------------------------------------- 1 | .so man3/get_ordered_context_list.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/rpm_execcon.3: -------------------------------------------------------------------------------- 1 | .so man3/getexeccon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_av_perm_to_string.3: -------------------------------------------------------------------------------- 1 | .so man3/security_class_to_string.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_av_string.3: -------------------------------------------------------------------------------- 1 | .so man3/security_class_to_string.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_check_context_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_check_context.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_commit_booleans.3: -------------------------------------------------------------------------------- 1 | .so man3/security_load_booleans.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_av_flags.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_av_flags_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_av_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_create.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_create_name.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_create_name_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_create_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_member.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_member_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_relabel.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_relabel_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_user.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_compute_user_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_deny_unknown.3: -------------------------------------------------------------------------------- 1 | .so man3/security_getenforce.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_get_boolean_active.3: -------------------------------------------------------------------------------- 1 | .so man3/security_load_booleans.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_get_boolean_names.3: -------------------------------------------------------------------------------- 1 | .so man3/security_load_booleans.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_get_boolean_pending.3: -------------------------------------------------------------------------------- 1 | .so man3/security_load_booleans.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_get_initial_context.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_get_initial_context_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_mkload_policy.3: -------------------------------------------------------------------------------- 1 | .so man3/security_load_policy.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_set_boolean.3: -------------------------------------------------------------------------------- 1 | .so man3/security_load_booleans.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/security_setenforce.3: -------------------------------------------------------------------------------- 1 | .so security_getenforce.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selabel_close.3: -------------------------------------------------------------------------------- 1 | .so man3/selabel_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selabel_lookup_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/selabel_lookup.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_booleans_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_check_access.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_check_passwd_access.3: -------------------------------------------------------------------------------- 1 | .so man3/security_compute_av.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_contexts_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_current_policy_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_default_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_default_type_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_failsafe_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_file_context_homedir_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_file_context_local_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_file_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_homedir_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_media_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_netfilter_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_removable_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_securetty_types_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_set_policy_root.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_policy_root.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_status_close.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_status_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_status_deny_unknown.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_status_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_status_getenforce.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_status_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_status_policyload.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_status_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_status_updated.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_status_open.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_user_contexts_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_usersconf_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/selinux_x_context_path.3: -------------------------------------------------------------------------------- 1 | .so man3/selinux_binary_policy_path.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/set_matchpathcon_invalidcon.3: -------------------------------------------------------------------------------- 1 | .so man3/set_matchpathcon_flags.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/set_matchpathcon_printf.3: -------------------------------------------------------------------------------- 1 | .so man3/set_matchpathcon_flags.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/set_selinuxmnt.3: -------------------------------------------------------------------------------- 1 | .so man3/init_selinuxmnt.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setcon.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setcon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getcon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setexeccon.3: -------------------------------------------------------------------------------- 1 | .so man3/getexeccon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setexeccon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getexeccon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setfilecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/setfilecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setfscreatecon.3: -------------------------------------------------------------------------------- 1 | .so man3/getfscreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setfscreatecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getfscreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setkeycreatecon.3: -------------------------------------------------------------------------------- 1 | .so man3/getkeycreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setkeycreatecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getkeycreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setsockcreatecon.3: -------------------------------------------------------------------------------- 1 | .so man3/getsockcreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/setsockcreatecon_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/getsockcreatecon.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/sidget.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_context_to_sid.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/sidput.3: -------------------------------------------------------------------------------- 1 | .so man3/avc_context_to_sid.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/string_to_av_perm.3: -------------------------------------------------------------------------------- 1 | .so man3/security_class_to_string.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man3/string_to_security_class.3: -------------------------------------------------------------------------------- 1 | .so man3/security_class_to_string.3 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/file_contexts.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_file.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/file_contexts.homedirs.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_file.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/file_contexts.local.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_file.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/file_contexts.subs.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_file.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/file_contexts.subs_dist.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_file.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/media.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_media.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/sepgsql_contexts.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_db.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/man/man5/x_contexts.5: -------------------------------------------------------------------------------- 1 | .so man5/selabel_x.5 2 | -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/avc.c -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/avc.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/avc.lo -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/avc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/avc.o -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/dso.h -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/init.c -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/init.o -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/libselinux.so: -------------------------------------------------------------------------------- 1 | libselinux.so.1 -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/rpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/rpm.c -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/rpm.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/rpm.lo -------------------------------------------------------------------------------- /libs/libselinux-2.2.2/src/rpm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libselinux-2.2.2/src/rpm.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/.gitignore: -------------------------------------------------------------------------------- 1 | utils/chkcon 2 | -------------------------------------------------------------------------------- /libs/libsepol-2.2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/Android.mk -------------------------------------------------------------------------------- /libs/libsepol-2.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/COPYING -------------------------------------------------------------------------------- /libs/libsepol-2.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/ChangeLog -------------------------------------------------------------------------------- /libs/libsepol-2.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/Makefile -------------------------------------------------------------------------------- /libs/libsepol-2.2/VERSION: -------------------------------------------------------------------------------- 1 | 2.2 2 | -------------------------------------------------------------------------------- /libs/libsepol-2.2/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/man/Makefile -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/Makefile -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/avtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/avtab.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/avtab.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/avtab.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/avtab.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/avtab.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/booleans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/booleans.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/booleans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/booleans.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/context.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/context.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/context.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/context.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/context.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/context.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/debug.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/debug.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/debug.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/debug.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/debug.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/debug.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/dso.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/ebitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/ebitmap.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/ebitmap.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/ebitmap.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/ebitmap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/ebitmap.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/expand.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/expand.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/expand.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/expand.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/expand.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/genbools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/genbools.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/genbools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/genbools.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/genusers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/genusers.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/genusers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/genusers.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/handle.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/handle.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/handle.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/handle.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/handle.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/handle.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/hashtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/hashtab.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/hashtab.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/hashtab.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/hashtab.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/hashtab.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/libsepol.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/libsepol.a -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/libsepol.so: -------------------------------------------------------------------------------- 1 | libsepol.so.1 -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/link.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/link.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/link.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/link.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/link.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/mls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/mls.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/mls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/mls.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/mls.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/mls.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/mls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/mls.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/module.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/module.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/module.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/module.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/module.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/nodes.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/nodes.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/nodes.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/nodes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/nodes.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/polcaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/polcaps.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/polcaps.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/polcaps.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/polcaps.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/polcaps.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/policydb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/policydb.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/policydb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/policydb.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/ports.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/ports.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/ports.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/ports.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/ports.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/private.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/roles.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/roles.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/roles.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/roles.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/roles.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/services.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/services.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/services.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/sidtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/sidtab.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/sidtab.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/sidtab.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/sidtab.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/sidtab.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/symtab.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/symtab.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/symtab.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/symtab.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/symtab.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/users.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/users.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/users.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/users.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/users.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/util.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/util.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/util.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/util.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/write.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/write.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/write.lo -------------------------------------------------------------------------------- /libs/libsepol-2.2/src/write.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/src/write.o -------------------------------------------------------------------------------- /libs/libsepol-2.2/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/tests/Makefile -------------------------------------------------------------------------------- /libs/libsepol-2.2/tests/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/tests/debug.c -------------------------------------------------------------------------------- /libs/libsepol-2.2/tests/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/tests/debug.h -------------------------------------------------------------------------------- /libs/libsepol-2.2/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/utils/Makefile -------------------------------------------------------------------------------- /libs/libsepol-2.2/utils/chkcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/libsepol-2.2/utils/chkcon.c -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/dftables.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_byte_order.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_chartables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_compile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_config.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_dfa_exec.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_exec.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_fullinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_get.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_globals.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_jit_compile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_maketables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_newline.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_ord2utf16.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_printint.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_refcount.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_string_utils.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_study.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_tables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_ucd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_utf16_utils.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_valid_utf16.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_version.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre16_xclass.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcre_jit_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcrecpp.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/.deps/pcrecpp.Plo -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcregrep.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/.deps/pcregrep.Po -------------------------------------------------------------------------------- /libs/pcre-8.31/.deps/pcretest.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/.deps/pcretest.Po -------------------------------------------------------------------------------- /libs/pcre-8.31/.libs/libpcre.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/.libs/libpcre.a -------------------------------------------------------------------------------- /libs/pcre-8.31/.libs/libpcre.la: -------------------------------------------------------------------------------- 1 | ../libpcre.la -------------------------------------------------------------------------------- /libs/pcre-8.31/.libs/libpcre.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/.libs/libpcre.lai -------------------------------------------------------------------------------- /libs/pcre-8.31/.libs/libpcrecpp.la: -------------------------------------------------------------------------------- 1 | ../libpcrecpp.la -------------------------------------------------------------------------------- /libs/pcre-8.31/.libs/libpcreposix.la: -------------------------------------------------------------------------------- 1 | ../libpcreposix.la -------------------------------------------------------------------------------- /libs/pcre-8.31/132html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/132html -------------------------------------------------------------------------------- /libs/pcre-8.31/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/AUTHORS -------------------------------------------------------------------------------- /libs/pcre-8.31/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/CMakeLists.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/COPYING -------------------------------------------------------------------------------- /libs/pcre-8.31/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/ChangeLog -------------------------------------------------------------------------------- /libs/pcre-8.31/CheckMan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/CheckMan -------------------------------------------------------------------------------- /libs/pcre-8.31/CleanTxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/CleanTxt -------------------------------------------------------------------------------- /libs/pcre-8.31/Detrail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/Detrail -------------------------------------------------------------------------------- /libs/pcre-8.31/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/HACKING -------------------------------------------------------------------------------- /libs/pcre-8.31/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/INSTALL -------------------------------------------------------------------------------- /libs/pcre-8.31/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/LICENCE -------------------------------------------------------------------------------- /libs/pcre-8.31/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/Makefile -------------------------------------------------------------------------------- /libs/pcre-8.31/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/Makefile.am -------------------------------------------------------------------------------- /libs/pcre-8.31/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/Makefile.in -------------------------------------------------------------------------------- /libs/pcre-8.31/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/NEWS -------------------------------------------------------------------------------- /libs/pcre-8.31/NON-UNIX-USE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/NON-UNIX-USE -------------------------------------------------------------------------------- /libs/pcre-8.31/PrepareRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/PrepareRelease -------------------------------------------------------------------------------- /libs/pcre-8.31/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/README -------------------------------------------------------------------------------- /libs/pcre-8.31/RunGrepTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/RunGrepTest -------------------------------------------------------------------------------- /libs/pcre-8.31/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/RunTest -------------------------------------------------------------------------------- /libs/pcre-8.31/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/RunTest.bat -------------------------------------------------------------------------------- /libs/pcre-8.31/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/aclocal.m4 -------------------------------------------------------------------------------- /libs/pcre-8.31/config-cmake.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config-cmake.h.in -------------------------------------------------------------------------------- /libs/pcre-8.31/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.guess -------------------------------------------------------------------------------- /libs/pcre-8.31/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.h -------------------------------------------------------------------------------- /libs/pcre-8.31/config.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.h.generic -------------------------------------------------------------------------------- /libs/pcre-8.31/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.h.in -------------------------------------------------------------------------------- /libs/pcre-8.31/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.log -------------------------------------------------------------------------------- /libs/pcre-8.31/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.status -------------------------------------------------------------------------------- /libs/pcre-8.31/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/config.sub -------------------------------------------------------------------------------- /libs/pcre-8.31/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/configure -------------------------------------------------------------------------------- /libs/pcre-8.31/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/configure.ac -------------------------------------------------------------------------------- /libs/pcre-8.31/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/depcomp -------------------------------------------------------------------------------- /libs/pcre-8.31/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/dftables.c -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre-config.1 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre16.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre16.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre_config.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre_config.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre_exec.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre_exec.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcre_study.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcre_study.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcreapi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcreapi.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrebuild.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrebuild.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrecallout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrecallout.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrecompat.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrecompat.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrecpp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrecpp.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcregrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcregrep.1 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcregrep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcregrep.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrejit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrejit.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrelimits.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrelimits.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrepartial.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrepartial.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrepattern.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrepattern.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcreperform.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcreperform.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcreposix.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcreposix.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcresample.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcresample.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcrestack.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcrestack.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcresyntax.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcresyntax.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcretest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcretest.1 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcretest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcretest.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/pcreunicode.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/pcreunicode.3 -------------------------------------------------------------------------------- /libs/pcre-8.31/doc/perltest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/doc/perltest.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/install-sh -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcre.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcre.la -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcre.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcre.pc -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcre.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcre.pc.in -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcre16.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcre16.pc -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcre16.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcre16.pc.in -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcrecpp.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcrecpp.la -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcrecpp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcrecpp.pc -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcrecpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcrecpp.pc.in -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcreposix.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcreposix.la -------------------------------------------------------------------------------- /libs/pcre-8.31/libpcreposix.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libpcreposix.pc -------------------------------------------------------------------------------- /libs/pcre-8.31/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/libtool -------------------------------------------------------------------------------- /libs/pcre-8.31/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/ltmain.sh -------------------------------------------------------------------------------- /libs/pcre-8.31/makevp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/makevp.bat -------------------------------------------------------------------------------- /libs/pcre-8.31/makevp_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/makevp_c.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/makevp_l.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/makevp_l.txt -------------------------------------------------------------------------------- /libs/pcre-8.31/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/missing -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre-config -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre-config.in -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre.h -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre.h.generic -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre.h.in -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_compile.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_config.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_dfa_exec.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_exec.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_fullinfo.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_get.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_globals.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_newline.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_printint.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_refcount.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_study.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_tables.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_ucd.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_version.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre16_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre16_xclass.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_byte_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_byte_order.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_byte_order.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_byte_order.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_chartables.c: -------------------------------------------------------------------------------- 1 | ./pcre_chartables.c.dist -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_chartables.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_chartables.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_compile.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_compile.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_compile.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_compile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_compile.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_config.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_config.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_config.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_config.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_config.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_dfa_exec.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_dfa_exec.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_dfa_exec.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_dfa_exec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_dfa_exec.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_exec.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_exec.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_exec.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_exec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_exec.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_fullinfo.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_fullinfo.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_fullinfo.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_fullinfo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_fullinfo.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_get.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_get.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_get.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_get.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_get.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_globals.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_globals.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_globals.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_globals.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_globals.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_internal.h -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_jit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_jit_test.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_maketables.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_maketables.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_maketables.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_newline.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_newline.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_newline.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_newline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_newline.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_ord2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_ord2utf8.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_ord2utf8.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_ord2utf8.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_ord2utf8.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_ord2utf8.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_printint.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_printint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_printint.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_refcount.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_refcount.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_refcount.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_refcount.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_refcount.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_scanner.cc -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_scanner.h -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_scanner.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_scanner.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_scanner.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_scanner.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_study.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_study.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_study.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_study.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_study.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_tables.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_tables.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_tables.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_tables.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_tables.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_ucd.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_ucd.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_ucd.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_ucd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_ucd.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_valid_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_valid_utf8.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_valid_utf8.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_valid_utf8.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_version.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_version.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_version.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_version.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_xclass.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_xclass.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_xclass.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcre_xclass.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcre_xclass.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpp.cc -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpp.h -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpp.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpp.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpp_unittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpp_unittest -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpparg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpparg.h -------------------------------------------------------------------------------- /libs/pcre-8.31/pcrecpparg.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcrecpparg.h.in -------------------------------------------------------------------------------- /libs/pcre-8.31/pcredemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcredemo.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcregexp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcregexp.pas -------------------------------------------------------------------------------- /libs/pcre-8.31/pcregrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcregrep -------------------------------------------------------------------------------- /libs/pcre-8.31/pcregrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcregrep.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcregrep.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcregrep.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcreposix.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcreposix.h -------------------------------------------------------------------------------- /libs/pcre-8.31/pcreposix.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcreposix.lo -------------------------------------------------------------------------------- /libs/pcre-8.31/pcreposix.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcreposix.o -------------------------------------------------------------------------------- /libs/pcre-8.31/pcretest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcretest -------------------------------------------------------------------------------- /libs/pcre-8.31/pcretest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcretest.c -------------------------------------------------------------------------------- /libs/pcre-8.31/pcretest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/pcretest.o -------------------------------------------------------------------------------- /libs/pcre-8.31/perltest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/perltest.pl -------------------------------------------------------------------------------- /libs/pcre-8.31/sljit/sljitLir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/sljit/sljitLir.c -------------------------------------------------------------------------------- /libs/pcre-8.31/sljit/sljitLir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/sljit/sljitLir.h -------------------------------------------------------------------------------- /libs/pcre-8.31/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/testdata/grepbinary: -------------------------------------------------------------------------------- 1 | The quick brown fx jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /libs/pcre-8.31/testdata/greplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/testdata/greplist -------------------------------------------------------------------------------- /libs/pcre-8.31/testdata/greppatN4: -------------------------------------------------------------------------------- 1 | xxx 2 | jkl -------------------------------------------------------------------------------- /libs/pcre-8.31/testdata/saved16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/testdata/saved16 -------------------------------------------------------------------------------- /libs/pcre-8.31/testdata/saved8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/testdata/saved8 -------------------------------------------------------------------------------- /libs/pcre-8.31/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/libs/pcre-8.31/ucp.h -------------------------------------------------------------------------------- /scripts/SEE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/SEE.template -------------------------------------------------------------------------------- /scripts/build-bb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/build-bb.sh -------------------------------------------------------------------------------- /scripts/build-ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/build-ssl.sh -------------------------------------------------------------------------------- /scripts/createtgz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/createtgz.sh -------------------------------------------------------------------------------- /scripts/download_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/download_files.py -------------------------------------------------------------------------------- /scripts/gettoolchains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/gettoolchains.sh -------------------------------------------------------------------------------- /scripts/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/install-dependencies.sh -------------------------------------------------------------------------------- /scripts/mkSEE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/mkSEE.sh -------------------------------------------------------------------------------- /scripts/mkzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/mkzip.sh -------------------------------------------------------------------------------- /scripts/readytorock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/readytorock.sh -------------------------------------------------------------------------------- /scripts/settags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/settags.sh -------------------------------------------------------------------------------- /scripts/signapk/inc.signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/signapk/inc.signapk.jar -------------------------------------------------------------------------------- /scripts/signapk/minsignapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/signapk/minsignapk.jar -------------------------------------------------------------------------------- /scripts/signapk/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/signapk/signapk.jar -------------------------------------------------------------------------------- /scripts/signapk/zipadjust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/signapk/zipadjust -------------------------------------------------------------------------------- /scripts/sourceforge-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/sourceforge-release.py -------------------------------------------------------------------------------- /scripts/toolchain-exports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/toolchain-exports.sh -------------------------------------------------------------------------------- /scripts/update-bins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/scripts/update-bins.sh -------------------------------------------------------------------------------- /wolfssl/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/.cproject -------------------------------------------------------------------------------- /wolfssl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/.project -------------------------------------------------------------------------------- /wolfssl/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/COPYING -------------------------------------------------------------------------------- /wolfssl/ChangeLog: -------------------------------------------------------------------------------- 1 | Please see the file 'README' in this directory. 2 | -------------------------------------------------------------------------------- /wolfssl/IDE/ARDUINO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/ARDUINO/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/ARDUINO/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/ARDUINO/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/GCC-ARM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/GCC-ARM/Makefile -------------------------------------------------------------------------------- /wolfssl/IDE/GCC-ARM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/GCC-ARM/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/GCC-ARM/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/GCC-ARM/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/GCC-ARM/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/GCC-ARM/linker.ld -------------------------------------------------------------------------------- /wolfssl/IDE/IAR-EWARM/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/IAR-EWARM/README -------------------------------------------------------------------------------- /wolfssl/IDE/LINUX-SGX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/LINUX-SGX/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/LINUX-SGX/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/LINUX-SGX/build.sh -------------------------------------------------------------------------------- /wolfssl/IDE/LINUX-SGX/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make -f sgx_t_static.mk clean 4 | -------------------------------------------------------------------------------- /wolfssl/IDE/LINUX-SGX/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/LINUX-SGX/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/LPCXPRESSO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/LPCXPRESSO/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/MYSQL/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/MYSQL/do.sh -------------------------------------------------------------------------------- /wolfssl/IDE/OPENSTM32/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/OPENSTM32/.cproject -------------------------------------------------------------------------------- /wolfssl/IDE/OPENSTM32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/OPENSTM32/.project -------------------------------------------------------------------------------- /wolfssl/IDE/OPENSTM32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/OPENSTM32/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/OPENSTM32/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/OPENSTM32/Src/main.c -------------------------------------------------------------------------------- /wolfssl/IDE/OPENSTM32/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/OPENSTM32/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/VS-ARM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/VS-ARM/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/VS-ARM/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/VS-ARM/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/VS-ARM/wolfssl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/VS-ARM/wolfssl.sln -------------------------------------------------------------------------------- /wolfssl/IDE/WIN-SGX/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN-SGX/ReadMe.txt -------------------------------------------------------------------------------- /wolfssl/IDE/WIN-SGX/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN-SGX/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/WIN/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN/README.txt -------------------------------------------------------------------------------- /wolfssl/IDE/WIN/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/WIN/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN/test.vcxproj -------------------------------------------------------------------------------- /wolfssl/IDE/WIN/user_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN/user_settings.h -------------------------------------------------------------------------------- /wolfssl/IDE/WIN/wolfssl-fips.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WIN/wolfssl-fips.sln -------------------------------------------------------------------------------- /wolfssl/IDE/WORKBENCH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WORKBENCH/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/WORKBENCH/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/WORKBENCH/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/XCODE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/XCODE/README.md -------------------------------------------------------------------------------- /wolfssl/IDE/XCODE/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/XCODE/include.am -------------------------------------------------------------------------------- /wolfssl/IDE/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/IDE/include.am -------------------------------------------------------------------------------- /wolfssl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/INSTALL -------------------------------------------------------------------------------- /wolfssl/IPP/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/LICENSING -------------------------------------------------------------------------------- /wolfssl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/Makefile.am -------------------------------------------------------------------------------- /wolfssl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/Makefile.in -------------------------------------------------------------------------------- /wolfssl/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/README -------------------------------------------------------------------------------- /wolfssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/README.md -------------------------------------------------------------------------------- /wolfssl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/aclocal.m4 -------------------------------------------------------------------------------- /wolfssl/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/compile -------------------------------------------------------------------------------- /wolfssl/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/config.guess -------------------------------------------------------------------------------- /wolfssl/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/config.sub -------------------------------------------------------------------------------- /wolfssl/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/depcomp -------------------------------------------------------------------------------- /wolfssl/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/install-sh -------------------------------------------------------------------------------- /wolfssl/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/ltmain.sh -------------------------------------------------------------------------------- /wolfssl/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/missing -------------------------------------------------------------------------------- /wolfssl/build-aux/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/build-aux/test-driver -------------------------------------------------------------------------------- /wolfssl/certs/1024/ca-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/ca-cert.der -------------------------------------------------------------------------------- /wolfssl/certs/1024/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/ca-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/1024/ca-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/ca-key.der -------------------------------------------------------------------------------- /wolfssl/certs/1024/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/ca-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/1024/dh1024.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/dh1024.der -------------------------------------------------------------------------------- /wolfssl/certs/1024/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/dh1024.pem -------------------------------------------------------------------------------- /wolfssl/certs/1024/dsa1024.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/dsa1024.der -------------------------------------------------------------------------------- /wolfssl/certs/1024/dsa1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/dsa1024.pem -------------------------------------------------------------------------------- /wolfssl/certs/1024/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/include.am -------------------------------------------------------------------------------- /wolfssl/certs/1024/rsa1024.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/1024/rsa1024.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-cert.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc-cert.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc-key.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc384-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc384-cert.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc384-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc384-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc384-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc384-key.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-ecc384-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-ecc384-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/ca-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-key.der -------------------------------------------------------------------------------- /wolfssl/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ca-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/client-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-ca.pem -------------------------------------------------------------------------------- /wolfssl/certs/client-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-cert.der -------------------------------------------------------------------------------- /wolfssl/certs/client-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/client-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-key.der -------------------------------------------------------------------------------- /wolfssl/certs/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/client-keyEnc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-keyEnc.pem -------------------------------------------------------------------------------- /wolfssl/certs/client-keyPub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/client-keyPub.der -------------------------------------------------------------------------------- /wolfssl/certs/crl/caEccCrl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/caEccCrl.pem -------------------------------------------------------------------------------- /wolfssl/certs/crl/cliCrl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/cliCrl.pem -------------------------------------------------------------------------------- /wolfssl/certs/crl/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/crl.pem -------------------------------------------------------------------------------- /wolfssl/certs/crl/crl.revoked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/crl.revoked -------------------------------------------------------------------------------- /wolfssl/certs/crl/crl2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/crl2.pem -------------------------------------------------------------------------------- /wolfssl/certs/crl/eccCliCRL.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/eccCliCRL.pem -------------------------------------------------------------------------------- /wolfssl/certs/crl/eccSrvCRL.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/eccSrvCRL.pem -------------------------------------------------------------------------------- /wolfssl/certs/crl/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/crl/include.am -------------------------------------------------------------------------------- /wolfssl/certs/dh2048.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/dh2048.der -------------------------------------------------------------------------------- /wolfssl/certs/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/dh2048.pem -------------------------------------------------------------------------------- /wolfssl/certs/dh3072.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/dh3072.pem -------------------------------------------------------------------------------- /wolfssl/certs/dsa2048.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/dsa2048.der -------------------------------------------------------------------------------- /wolfssl/certs/dsaparams.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/dsaparams.pem -------------------------------------------------------------------------------- /wolfssl/certs/ecc-client-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-client-key.der -------------------------------------------------------------------------------- /wolfssl/certs/ecc-client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-client-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/ecc-key-comp.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-key-comp.pem -------------------------------------------------------------------------------- /wolfssl/certs/ecc-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-key.der -------------------------------------------------------------------------------- /wolfssl/certs/ecc-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/ecc-keyPkcs8.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-keyPkcs8.pem -------------------------------------------------------------------------------- /wolfssl/certs/ecc-keyPub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-keyPub.der -------------------------------------------------------------------------------- /wolfssl/certs/ecc-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-privkey.pem -------------------------------------------------------------------------------- /wolfssl/certs/ecc-rsa-server.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc-rsa-server.p12 -------------------------------------------------------------------------------- /wolfssl/certs/ecc/genecc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc/genecc.sh -------------------------------------------------------------------------------- /wolfssl/certs/ecc/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc/include.am -------------------------------------------------------------------------------- /wolfssl/certs/ecc/wolfssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ecc/wolfssl.cnf -------------------------------------------------------------------------------- /wolfssl/certs/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/include.am -------------------------------------------------------------------------------- /wolfssl/certs/ntru-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ntru-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/ntru-key.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ntru-key.raw -------------------------------------------------------------------------------- /wolfssl/certs/ocsp/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ocsp/include.am -------------------------------------------------------------------------------- /wolfssl/certs/ocsp/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/ocsp/openssl.cnf -------------------------------------------------------------------------------- /wolfssl/certs/rsa2048.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/rsa2048.der -------------------------------------------------------------------------------- /wolfssl/certs/server-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-cert.der -------------------------------------------------------------------------------- /wolfssl/certs/server-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-cert.pem -------------------------------------------------------------------------------- /wolfssl/certs/server-ecc-rsa.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-ecc-rsa.der -------------------------------------------------------------------------------- /wolfssl/certs/server-ecc-rsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-ecc-rsa.pem -------------------------------------------------------------------------------- /wolfssl/certs/server-ecc.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-ecc.der -------------------------------------------------------------------------------- /wolfssl/certs/server-ecc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-ecc.pem -------------------------------------------------------------------------------- /wolfssl/certs/server-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-key.der -------------------------------------------------------------------------------- /wolfssl/certs/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-key.pem -------------------------------------------------------------------------------- /wolfssl/certs/server-keyEnc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/server-keyEnc.pem -------------------------------------------------------------------------------- /wolfssl/certs/taoCert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/taoCert.txt -------------------------------------------------------------------------------- /wolfssl/certs/test/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/certs/test/include.am -------------------------------------------------------------------------------- /wolfssl/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/config.in -------------------------------------------------------------------------------- /wolfssl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/configure -------------------------------------------------------------------------------- /wolfssl/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/configure.ac -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/aes.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/des3.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/fips.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/fips_test.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/hmac.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/ctaocrypt/src/misc.c -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/random.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/rsa.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/sha.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/sha256.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/ctaocrypt/src/sha512.c: -------------------------------------------------------------------------------- 1 | /* dummy file for autoconf */ 2 | -------------------------------------------------------------------------------- /wolfssl/cyassl/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/callbacks.h -------------------------------------------------------------------------------- /wolfssl/cyassl/certs_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/certs_test.h -------------------------------------------------------------------------------- /wolfssl/cyassl/crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/crl.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/aes.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/arc4.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/asn.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/des3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/des3.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/dh.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/dsa.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/ecc.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/hc128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/hc128.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/hmac.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/md2.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/md4.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/md5.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/misc.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/pkcs7.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/rsa.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/sha.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/tfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/tfm.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ctaocrypt/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ctaocrypt/types.h -------------------------------------------------------------------------------- /wolfssl/cyassl/error-ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/error-ssl.h -------------------------------------------------------------------------------- /wolfssl/cyassl/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/include.am -------------------------------------------------------------------------------- /wolfssl/cyassl/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/internal.h -------------------------------------------------------------------------------- /wolfssl/cyassl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ocsp.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/asn1.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/bio.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/bn.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/conf.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/crypto.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/des.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/dh.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/dsa.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ec.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ec25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ec25519.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ecdh.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ecdsa.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ed25519.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/engine.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/err.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/evp.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/hmac.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/lhash.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/md4.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/md5.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ocsp.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/pem.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/pkcs12.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/rand.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ripemd.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/rsa.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/sha.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ssl.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ssl23.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/stack.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/ui.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/x509.h -------------------------------------------------------------------------------- /wolfssl/cyassl/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/openssl/x509v3.h -------------------------------------------------------------------------------- /wolfssl/cyassl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/options.h -------------------------------------------------------------------------------- /wolfssl/cyassl/sniffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/sniffer.h -------------------------------------------------------------------------------- /wolfssl/cyassl/sniffer_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/sniffer_error.h -------------------------------------------------------------------------------- /wolfssl/cyassl/sniffer_error.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/sniffer_error.rc -------------------------------------------------------------------------------- /wolfssl/cyassl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/ssl.h -------------------------------------------------------------------------------- /wolfssl/cyassl/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/test.h -------------------------------------------------------------------------------- /wolfssl/cyassl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/cyassl/version.h -------------------------------------------------------------------------------- /wolfssl/doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/doc/README.txt -------------------------------------------------------------------------------- /wolfssl/doc/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/doc/include.am -------------------------------------------------------------------------------- /wolfssl/examples/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/examples/include.am -------------------------------------------------------------------------------- /wolfssl/gencertbuf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/gencertbuf.pl -------------------------------------------------------------------------------- /wolfssl/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/input -------------------------------------------------------------------------------- /wolfssl/lib/dummy: -------------------------------------------------------------------------------- 1 | // this is a dummy file 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/m4/ax_add_am_macro.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_add_am_macro.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_am_jobserver.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_am_jobserver.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_am_macros.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_am_macros.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_count_cpus.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_count_cpus.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_debug.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_debug.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_file_escapes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_file_escapes.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_print_to_file.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_print_to_file.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_tls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_tls.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ax_vcs_checkout.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ax_vcs_checkout.m4 -------------------------------------------------------------------------------- /wolfssl/m4/hexversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/hexversion.m4 -------------------------------------------------------------------------------- /wolfssl/m4/lib_socket_nsl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/lib_socket_nsl.m4 -------------------------------------------------------------------------------- /wolfssl/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/libtool.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ltoptions.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ltsugar.m4 -------------------------------------------------------------------------------- /wolfssl/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/ltversion.m4 -------------------------------------------------------------------------------- /wolfssl/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /wolfssl/m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/m4/visibility.m4 -------------------------------------------------------------------------------- /wolfssl/mcapi/PIC32MZ-serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/PIC32MZ-serial.h -------------------------------------------------------------------------------- /wolfssl/mcapi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/README -------------------------------------------------------------------------------- /wolfssl/mcapi/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/crypto.c -------------------------------------------------------------------------------- /wolfssl/mcapi/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/crypto.h -------------------------------------------------------------------------------- /wolfssl/mcapi/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/include.am -------------------------------------------------------------------------------- /wolfssl/mcapi/mcapi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/mcapi_test.c -------------------------------------------------------------------------------- /wolfssl/mcapi/user_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/user_settings.h -------------------------------------------------------------------------------- /wolfssl/mcapi/zlib.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mcapi/zlib.X/Makefile -------------------------------------------------------------------------------- /wolfssl/mplabx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mplabx/README -------------------------------------------------------------------------------- /wolfssl/mplabx/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mplabx/include.am -------------------------------------------------------------------------------- /wolfssl/mplabx/test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mplabx/test_main.c -------------------------------------------------------------------------------- /wolfssl/mplabx/user_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mplabx/user_settings.h -------------------------------------------------------------------------------- /wolfssl/mqx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mqx/README -------------------------------------------------------------------------------- /wolfssl/mqx/util_lib/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mqx/util_lib/.cproject -------------------------------------------------------------------------------- /wolfssl/mqx/util_lib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mqx/util_lib/.project -------------------------------------------------------------------------------- /wolfssl/mqx/wolfssl/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mqx/wolfssl/.cproject -------------------------------------------------------------------------------- /wolfssl/mqx/wolfssl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mqx/wolfssl/.project -------------------------------------------------------------------------------- /wolfssl/mqx/wolfssl/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/mqx/wolfssl/include.am -------------------------------------------------------------------------------- /wolfssl/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/rpm/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/rpm/include.am -------------------------------------------------------------------------------- /wolfssl/rpm/spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/rpm/spec.in -------------------------------------------------------------------------------- /wolfssl/scripts/benchmark.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/benchmark.test -------------------------------------------------------------------------------- /wolfssl/scripts/external.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/external.test -------------------------------------------------------------------------------- /wolfssl/scripts/google.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/google.test -------------------------------------------------------------------------------- /wolfssl/scripts/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/include.am -------------------------------------------------------------------------------- /wolfssl/scripts/ocsp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/ocsp.test -------------------------------------------------------------------------------- /wolfssl/scripts/openssl.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/openssl.test -------------------------------------------------------------------------------- /wolfssl/scripts/ping.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/ping.test -------------------------------------------------------------------------------- /wolfssl/scripts/psk.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/psk.test -------------------------------------------------------------------------------- /wolfssl/scripts/resume.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/resume.test -------------------------------------------------------------------------------- /wolfssl/scripts/testsuite.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/testsuite.pcap -------------------------------------------------------------------------------- /wolfssl/scripts/tls13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/scripts/tls13.test -------------------------------------------------------------------------------- /wolfssl/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/bio.c -------------------------------------------------------------------------------- /wolfssl/src/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/crl.c -------------------------------------------------------------------------------- /wolfssl/src/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/include.am -------------------------------------------------------------------------------- /wolfssl/src/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/internal.c -------------------------------------------------------------------------------- /wolfssl/src/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/keys.c -------------------------------------------------------------------------------- /wolfssl/src/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/ocsp.c -------------------------------------------------------------------------------- /wolfssl/src/sniffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/sniffer.c -------------------------------------------------------------------------------- /wolfssl/src/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/ssl.c -------------------------------------------------------------------------------- /wolfssl/src/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/tls.c -------------------------------------------------------------------------------- /wolfssl/src/tls13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/tls13.c -------------------------------------------------------------------------------- /wolfssl/src/wolfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/src/wolfio.c -------------------------------------------------------------------------------- /wolfssl/stamp-h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/support/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/support/include.am -------------------------------------------------------------------------------- /wolfssl/support/wolfssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/support/wolfssl.pc -------------------------------------------------------------------------------- /wolfssl/support/wolfssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/support/wolfssl.pc.in -------------------------------------------------------------------------------- /wolfssl/swig/PythonBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/PythonBuild.sh -------------------------------------------------------------------------------- /wolfssl/swig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/README -------------------------------------------------------------------------------- /wolfssl/swig/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/include.am -------------------------------------------------------------------------------- /wolfssl/swig/rsasign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/rsasign.py -------------------------------------------------------------------------------- /wolfssl/swig/runme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/runme.py -------------------------------------------------------------------------------- /wolfssl/swig/wolfssl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/wolfssl.i -------------------------------------------------------------------------------- /wolfssl/swig/wolfssl_adds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/swig/wolfssl_adds.c -------------------------------------------------------------------------------- /wolfssl/tests/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/api.c -------------------------------------------------------------------------------- /wolfssl/tests/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/hash.c -------------------------------------------------------------------------------- /wolfssl/tests/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/include.am -------------------------------------------------------------------------------- /wolfssl/tests/srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/srp.c -------------------------------------------------------------------------------- /wolfssl/tests/suites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/suites.c -------------------------------------------------------------------------------- /wolfssl/tests/test-dtls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/test-dtls.conf -------------------------------------------------------------------------------- /wolfssl/tests/test-qsh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/test-qsh.conf -------------------------------------------------------------------------------- /wolfssl/tests/test-sctp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/test-sctp.conf -------------------------------------------------------------------------------- /wolfssl/tests/test-sig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/test-sig.conf -------------------------------------------------------------------------------- /wolfssl/tests/test-tls13.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/test-tls13.conf -------------------------------------------------------------------------------- /wolfssl/tests/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/test.conf -------------------------------------------------------------------------------- /wolfssl/tests/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/unit.c -------------------------------------------------------------------------------- /wolfssl/tests/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tests/unit.h -------------------------------------------------------------------------------- /wolfssl/testsuite/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/testsuite/include.am -------------------------------------------------------------------------------- /wolfssl/testsuite/testsuite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/testsuite/testsuite.c -------------------------------------------------------------------------------- /wolfssl/tirtos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tirtos/README -------------------------------------------------------------------------------- /wolfssl/tirtos/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tirtos/include.am -------------------------------------------------------------------------------- /wolfssl/tirtos/products.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tirtos/products.mak -------------------------------------------------------------------------------- /wolfssl/tirtos/wolfssl.bld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tirtos/wolfssl.bld -------------------------------------------------------------------------------- /wolfssl/tirtos/wolfssl.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/tirtos/wolfssl.mak -------------------------------------------------------------------------------- /wolfssl/valgrind-error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/valgrind-error.sh -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/aes.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/arc4.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/asm.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/asn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/asn.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/async.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/chacha.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/cmac.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/coding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/coding.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/cpuid.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/des3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/des3.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/dh.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/dsa.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/ecc.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/ecc_fp.c: -------------------------------------------------------------------------------- 1 | /* dummy ecc_fp.c for dist */ 2 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/error.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/evp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/evp.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/fipsv2.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/hash.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/hc128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/hc128.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/hmac.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/idea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/idea.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/md2.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/md4.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/md5.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/memory.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/misc.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/pkcs12.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/pkcs7.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/port/cavium/cavium_nitrox.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/port/intel/quickassist.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/port/intel/quickassist_mem.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/rabbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/rabbit.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/random.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/ripemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/ripemd.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/rsa.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/selftest.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/sha.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/sha256.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/sha3.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/sha512.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/sp.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/sp_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/sp_int.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/srp.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/src/tfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/src/tfm.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/test/test.c -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfcrypt/test/test.h -------------------------------------------------------------------------------- /wolfssl/wolfcrypt/user-crypto/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfssl-ntru.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl-ntru.sln -------------------------------------------------------------------------------- /wolfssl/wolfssl-ntru.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl-ntru.vcproj -------------------------------------------------------------------------------- /wolfssl/wolfssl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl.sln -------------------------------------------------------------------------------- /wolfssl/wolfssl.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl.vcproj -------------------------------------------------------------------------------- /wolfssl/wolfssl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl.vcxproj -------------------------------------------------------------------------------- /wolfssl/wolfssl/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/callbacks.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/certs_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/certs_test.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/crl.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/error-ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/error-ssl.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/include.am -------------------------------------------------------------------------------- /wolfssl/wolfssl/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/internal.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/ocsp.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/aes.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/asn1.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/bio.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/bn.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/conf.h: -------------------------------------------------------------------------------- 1 | /* conf.h for openssl */ 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/des.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/dh.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/dsa.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/ec.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/ecdh.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/err.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/evp.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/hmac.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | /* lhash.h for openSSL */ 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/md4.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/md5.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/ocsp.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | /* ossl_typ.h for openssl */ 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/pem.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/rand.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/rc4.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/rsa.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/sha.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/ssl.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | /* ssl23.h for openssl */ 2 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/stack.h: -------------------------------------------------------------------------------- 1 | /* stack.h for openssl */ 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/ui.h: -------------------------------------------------------------------------------- 1 | /* ui.h for openssl */ 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/openssl/x509.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | /* x509v3.h for openssl */ 2 | 3 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/options.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/options.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/options.h.in -------------------------------------------------------------------------------- /wolfssl/wolfssl/sniffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/sniffer.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/ssl.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/test.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/version.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/version.h.in -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/async.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/wolfcrypt/dh.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/fips.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/port/cavium/cavium_nitrox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/port/intel/quickassist.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/port/intel/quickassist_mem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfcrypt/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/wolfcrypt/sp.h -------------------------------------------------------------------------------- /wolfssl/wolfssl/wolfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl/wolfio.h -------------------------------------------------------------------------------- /wolfssl/wolfssl64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wolfssl64.sln -------------------------------------------------------------------------------- /wolfssl/wrapper/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashdsaraf/bb-bot/HEAD/wolfssl/wrapper/include.am -------------------------------------------------------------------------------- /wolfssl/wrapper/python/wolfcrypt/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSING.rst 2 | -------------------------------------------------------------------------------- /wolfssl/wrapper/python/wolfssl/docs/installation.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /wolfssl/wrapper/python/wolfssl/docs/licensing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../LICENSING.rst 2 | -------------------------------------------------------------------------------- /wolfssl/wrapper/python/wolfssl/requirements-testing.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | cffi 3 | tox 4 | --------------------------------------------------------------------------------