├── .github └── settings.yml ├── 0000-template.md ├── CODEOWNERS ├── LICENSE ├── README.md └── text ├── 0001-encryption-api ├── README.md ├── flamacro.tex ├── hartm_macro_safe.tex └── main.tex ├── 0002-zmix-api └── README.md ├── 0011-python-wrappers └── README.md ├── cs-verifiable-encryption └── README.md ├── delegatable_cdd └── README.md ├── language-bindings └── README.md ├── pok-vpc └── README.md └── ps-signatures └── README.md /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/0000-template.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hyperledger/ursa-maintainers 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/README.md -------------------------------------------------------------------------------- /text/0001-encryption-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/0001-encryption-api/README.md -------------------------------------------------------------------------------- /text/0001-encryption-api/flamacro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/0001-encryption-api/flamacro.tex -------------------------------------------------------------------------------- /text/0001-encryption-api/hartm_macro_safe.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/0001-encryption-api/hartm_macro_safe.tex -------------------------------------------------------------------------------- /text/0001-encryption-api/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/0001-encryption-api/main.tex -------------------------------------------------------------------------------- /text/0002-zmix-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/0002-zmix-api/README.md -------------------------------------------------------------------------------- /text/0011-python-wrappers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/0011-python-wrappers/README.md -------------------------------------------------------------------------------- /text/cs-verifiable-encryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/cs-verifiable-encryption/README.md -------------------------------------------------------------------------------- /text/delegatable_cdd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/delegatable_cdd/README.md -------------------------------------------------------------------------------- /text/language-bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/language-bindings/README.md -------------------------------------------------------------------------------- /text/pok-vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/pok-vpc/README.md -------------------------------------------------------------------------------- /text/ps-signatures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-archives/ursa-rfcs/HEAD/text/ps-signatures/README.md --------------------------------------------------------------------------------