├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SwiftECC │ ├── Cipher │ ├── AES.swift │ ├── CBCCipher.swift │ ├── CFBCipher.swift │ ├── CTRCipher.swift │ ├── Cipher.swift │ ├── DeterministicK.swift │ ├── ECBCipher.swift │ ├── GCMCipher.swift │ ├── OFBCipher.swift │ └── PBE.swift │ ├── Curve.swift │ ├── Domain.swift │ ├── Domain2 │ ├── BitVector.swift │ ├── Domain2.swift │ ├── EC163.swift │ ├── EC233.swift │ ├── EC283.swift │ ├── EC409.swift │ ├── EC571.swift │ └── Point2.swift │ ├── DomainP │ ├── BP160.swift │ ├── BP192.swift │ ├── BP224.swift │ ├── BP256.swift │ ├── BP320.swift │ ├── BP384.swift │ ├── BP512.swift │ ├── DomainP.swift │ ├── EC192.swift │ ├── EC224.swift │ ├── EC256.swift │ ├── EC384.swift │ └── EC521.swift │ ├── Exception.swift │ ├── Point.swift │ ├── PrivateKey.swift │ ├── PublicKey.swift │ ├── RP.swift │ ├── Signature.swift │ └── SwiftECC.docc │ ├── Articles │ ├── AEADEncryptDecrypt.md │ ├── CreateDomain.md │ ├── ECArithmetic.md │ ├── EncryptDecrypt.md │ ├── EncryptedKeys.md │ ├── KeyAgrement.md │ ├── KeyManagement.md │ ├── Performance.md │ ├── References.md │ └── SignVerify.md │ ├── Extensions │ ├── DomainExt.md │ ├── PointExt.md │ ├── PrivateKeyExt.md │ ├── PublicKeyExt.md │ ├── RPExt.md │ └── SignatureExt.md │ └── SwiftECC.md ├── SwiftECC.doccarchive ├── css │ ├── 866.2d08a543.css │ ├── 989.4f123103.css │ ├── documentation-topic.da0b1931.css │ ├── index.3a335429.css │ ├── topic.4be8f56d.css │ └── tutorials-overview.adb17623.css ├── data │ └── documentation │ │ ├── swiftecc.json │ │ └── swiftecc │ │ ├── aeadencryptdecrypt.json │ │ ├── aescipher.json │ │ ├── aescipher │ │ ├── !=(_:_:).json │ │ ├── aes128.json │ │ ├── aes192.json │ │ ├── aes256.json │ │ └── equatable-implementations.json │ │ ├── blockmode.json │ │ ├── blockmode │ │ ├── !=(_:_:).json │ │ ├── cbc.json │ │ ├── cfb.json │ │ ├── ctr.json │ │ ├── ecb.json │ │ ├── equatable-implementations.json │ │ ├── gcm.json │ │ └── ofb.json │ │ ├── byte.json │ │ ├── bytes.json │ │ ├── createdomain.json │ │ ├── domain.json │ │ ├── domain │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── a.json │ │ ├── addpoints(_:_:).json │ │ ├── asn1.json │ │ ├── asn1decodepoint(_:)-5k4zf.json │ │ ├── asn1decodepoint(_:)-5xuks.json │ │ ├── asn1encodepoint(_:_:).json │ │ ├── asn1explicit().json │ │ ├── b.json │ │ ├── characteristic2.json │ │ ├── cofactor.json │ │ ├── contains(_:).json │ │ ├── decodepoint(_:).json │ │ ├── description.json │ │ ├── doublepoint(_:).json │ │ ├── encodepoint(_:_:).json │ │ ├── equatable-implementations.json │ │ ├── g.json │ │ ├── instance(curve:).json │ │ ├── instance(name:p:a:b:gx:gy:order:cofactor:oid:).json │ │ ├── instance(name:rp:a:b:gx:gy:order:cofactor:oid:).json │ │ ├── instance(oid:).json │ │ ├── instance(pem:).json │ │ ├── makekeypair().json │ │ ├── multiplypoint(_:_:).json │ │ ├── name.json │ │ ├── negatepoint(_:).json │ │ ├── oid.json │ │ ├── oid_2.json │ │ ├── oid_ec.json │ │ ├── oid_p.json │ │ ├── order.json │ │ ├── p.json │ │ ├── pem.json │ │ └── subtractpoints(_:_:).json │ │ ├── ecarithmetic.json │ │ ├── eccurve.json │ │ ├── eccurve │ │ ├── !=(_:_:).json │ │ ├── bp160r1.json │ │ ├── bp160t1.json │ │ ├── bp192r1.json │ │ ├── bp192t1.json │ │ ├── bp224r1.json │ │ ├── bp224t1.json │ │ ├── bp256r1.json │ │ ├── bp256t1.json │ │ ├── bp320r1.json │ │ ├── bp320t1.json │ │ ├── bp384r1.json │ │ ├── bp384t1.json │ │ ├── bp512r1.json │ │ ├── bp512t1.json │ │ ├── ec163k1.json │ │ ├── ec163r2.json │ │ ├── ec192k1.json │ │ ├── ec192r1.json │ │ ├── ec224k1.json │ │ ├── ec224r1.json │ │ ├── ec233k1.json │ │ ├── ec233r1.json │ │ ├── ec256k1.json │ │ ├── ec256r1.json │ │ ├── ec283k1.json │ │ ├── ec283r1.json │ │ ├── ec384r1.json │ │ ├── ec409k1.json │ │ ├── ec409r1.json │ │ ├── ec521r1.json │ │ ├── ec571k1.json │ │ ├── ec571r1.json │ │ └── equatable-implementations.json │ │ ├── ecexception.json │ │ ├── ecexception │ │ ├── !=(_:_:).json │ │ ├── asn1structure.json │ │ ├── authentication.json │ │ ├── decodepoint.json │ │ ├── description.json │ │ ├── domainparameter.json │ │ ├── encodepoint.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ ├── keyagreementparameter.json │ │ ├── localizeddescription.json │ │ ├── notenoughinput.json │ │ ├── notoncurve.json │ │ ├── padding.json │ │ ├── pemstructure.json │ │ ├── privatekeyparameter.json │ │ ├── publickeyparameter.json │ │ └── unknownoid.json │ │ ├── ecprivatekey.json │ │ ├── ecprivatekey │ │ ├── asn1.json │ │ ├── decrypt(msg:cipher:mode:)-9nqsp.json │ │ ├── decrypt(msg:cipher:mode:)-9pdnd.json │ │ ├── decryptaesgcm(msg:cipher:aad:)-1yypz.json │ │ ├── decryptaesgcm(msg:cipher:aad:)-7hhik.json │ │ ├── decryptchacha(msg:aad:)-7bguu.json │ │ ├── decryptchacha(msg:aad:)-ttft.json │ │ ├── der.json │ │ ├── derencrypted(password:cipher:).json │ │ ├── derpkcs8.json │ │ ├── description.json │ │ ├── domain.json │ │ ├── getkeyandmac(msg:cipher:mode:)-6t51.json │ │ ├── getkeyandmac(msg:cipher:mode:)-8d85z.json │ │ ├── hkdfkeyagreement(pubkey:length:kind:sharedinfo:salt:cofactor:).json │ │ ├── init(der:password:).json │ │ ├── init(der:pkcs8:).json │ │ ├── init(domain:s:).json │ │ ├── init(pem:).json │ │ ├── init(pem:password:).json │ │ ├── pem.json │ │ ├── pemencrypted(password:cipher:).json │ │ ├── pempkcs8.json │ │ ├── s.json │ │ ├── sharedsecret(pubkey:cofactor:).json │ │ ├── sign(msg:deterministic:)-1t1sl.json │ │ ├── sign(msg:deterministic:)-24jcb.json │ │ └── x963keyagreement(pubkey:length:kind:sharedinfo:cofactor:).json │ │ ├── ecpublickey.json │ │ ├── ecpublickey │ │ ├── asn1.json │ │ ├── der.json │ │ ├── description.json │ │ ├── domain.json │ │ ├── encrypt(msg:cipher:mode:)-4dil1.json │ │ ├── encrypt(msg:cipher:mode:)-4xz0p.json │ │ ├── encryptaesgcm(msg:cipher:aad:)-7ow39.json │ │ ├── encryptaesgcm(msg:cipher:aad:)-7w8j9.json │ │ ├── encryptchacha(msg:aad:)-535bd.json │ │ ├── encryptchacha(msg:aad:)-7qtyj.json │ │ ├── init(der:).json │ │ ├── init(domain:w:).json │ │ ├── init(pem:).json │ │ ├── init(privatekey:).json │ │ ├── pem.json │ │ ├── verify(signature:msg:bw:)-41jz7.json │ │ ├── verify(signature:msg:bw:)-61z0.json │ │ └── w.json │ │ ├── ecsignature.json │ │ ├── ecsignature │ │ ├── asn1.json │ │ ├── description.json │ │ ├── domain.json │ │ ├── init(asn1:domain:).json │ │ ├── init(domain:r:s:).json │ │ ├── r.json │ │ └── s.json │ │ ├── encryptdecrypt.json │ │ ├── encryptedkeys.json │ │ ├── keyagrement.json │ │ ├── keymanagement.json │ │ ├── performance.json │ │ ├── point.json │ │ ├── point │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── description.json │ │ ├── equatable-implementations.json │ │ ├── infinity-swift.property.json │ │ ├── infinity-swift.type.property.json │ │ ├── init(_:_:).json │ │ ├── x.json │ │ └── y.json │ │ ├── references.json │ │ ├── rp.json │ │ ├── rp │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── description.json │ │ ├── equatable-implementations.json │ │ ├── init(_:_:).json │ │ ├── init(_:_:_:_:).json │ │ ├── k1.json │ │ ├── k2.json │ │ ├── k3.json │ │ ├── m.json │ │ └── p.json │ │ └── signverify.json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation │ └── swiftecc │ │ ├── aeadencryptdecrypt │ │ └── index.html │ │ ├── aescipher │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── aes128 │ │ │ └── index.html │ │ ├── aes192 │ │ │ └── index.html │ │ ├── aes256 │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ └── index.html │ │ ├── blockmode │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── cbc │ │ │ └── index.html │ │ ├── cfb │ │ │ └── index.html │ │ ├── ctr │ │ │ └── index.html │ │ ├── ecb │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── gcm │ │ │ └── index.html │ │ ├── index.html │ │ └── ofb │ │ │ └── index.html │ │ ├── byte │ │ └── index.html │ │ ├── bytes │ │ └── index.html │ │ ├── createdomain │ │ └── index.html │ │ ├── domain │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── ==(_:_:) │ │ │ └── index.html │ │ ├── a │ │ │ └── index.html │ │ ├── addpoints(_:_:) │ │ │ └── index.html │ │ ├── asn1 │ │ │ └── index.html │ │ ├── asn1decodepoint(_:)-5k4zf │ │ │ └── index.html │ │ ├── asn1decodepoint(_:)-5xuks │ │ │ └── index.html │ │ ├── asn1encodepoint(_:_:) │ │ │ └── index.html │ │ ├── asn1explicit() │ │ │ └── index.html │ │ ├── b │ │ │ └── index.html │ │ ├── characteristic2 │ │ │ └── index.html │ │ ├── cofactor │ │ │ └── index.html │ │ ├── contains(_:) │ │ │ └── index.html │ │ ├── decodepoint(_:) │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── doublepoint(_:) │ │ │ └── index.html │ │ ├── encodepoint(_:_:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── g │ │ │ └── index.html │ │ ├── index.html │ │ ├── instance(curve:) │ │ │ └── index.html │ │ ├── instance(name:p:a:b:gx:gy:order:cofactor:oid:) │ │ │ └── index.html │ │ ├── instance(name:rp:a:b:gx:gy:order:cofactor:oid:) │ │ │ └── index.html │ │ ├── instance(oid:) │ │ │ └── index.html │ │ ├── instance(pem:) │ │ │ └── index.html │ │ ├── makekeypair() │ │ │ └── index.html │ │ ├── multiplypoint(_:_:) │ │ │ └── index.html │ │ ├── name │ │ │ └── index.html │ │ ├── negatepoint(_:) │ │ │ └── index.html │ │ ├── oid │ │ │ └── index.html │ │ ├── oid_2 │ │ │ └── index.html │ │ ├── oid_ec │ │ │ └── index.html │ │ ├── oid_p │ │ │ └── index.html │ │ ├── order │ │ │ └── index.html │ │ ├── p │ │ │ └── index.html │ │ ├── pem │ │ │ └── index.html │ │ └── subtractpoints(_:_:) │ │ │ └── index.html │ │ ├── ecarithmetic │ │ └── index.html │ │ ├── eccurve │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── bp160r1 │ │ │ └── index.html │ │ ├── bp160t1 │ │ │ └── index.html │ │ ├── bp192r1 │ │ │ └── index.html │ │ ├── bp192t1 │ │ │ └── index.html │ │ ├── bp224r1 │ │ │ └── index.html │ │ ├── bp224t1 │ │ │ └── index.html │ │ ├── bp256r1 │ │ │ └── index.html │ │ ├── bp256t1 │ │ │ └── index.html │ │ ├── bp320r1 │ │ │ └── index.html │ │ ├── bp320t1 │ │ │ └── index.html │ │ ├── bp384r1 │ │ │ └── index.html │ │ ├── bp384t1 │ │ │ └── index.html │ │ ├── bp512r1 │ │ │ └── index.html │ │ ├── bp512t1 │ │ │ └── index.html │ │ ├── ec163k1 │ │ │ └── index.html │ │ ├── ec163r2 │ │ │ └── index.html │ │ ├── ec192k1 │ │ │ └── index.html │ │ ├── ec192r1 │ │ │ └── index.html │ │ ├── ec224k1 │ │ │ └── index.html │ │ ├── ec224r1 │ │ │ └── index.html │ │ ├── ec233k1 │ │ │ └── index.html │ │ ├── ec233r1 │ │ │ └── index.html │ │ ├── ec256k1 │ │ │ └── index.html │ │ ├── ec256r1 │ │ │ └── index.html │ │ ├── ec283k1 │ │ │ └── index.html │ │ ├── ec283r1 │ │ │ └── index.html │ │ ├── ec384r1 │ │ │ └── index.html │ │ ├── ec409k1 │ │ │ └── index.html │ │ ├── ec409r1 │ │ │ └── index.html │ │ ├── ec521r1 │ │ │ └── index.html │ │ ├── ec571k1 │ │ │ └── index.html │ │ ├── ec571r1 │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ └── index.html │ │ ├── ecexception │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asn1structure │ │ │ └── index.html │ │ ├── authentication │ │ │ └── index.html │ │ ├── decodepoint │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── domainparameter │ │ │ └── index.html │ │ ├── encodepoint │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── keyagreementparameter │ │ │ └── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ ├── notenoughinput │ │ │ └── index.html │ │ ├── notoncurve │ │ │ └── index.html │ │ ├── padding │ │ │ └── index.html │ │ ├── pemstructure │ │ │ └── index.html │ │ ├── privatekeyparameter │ │ │ └── index.html │ │ ├── publickeyparameter │ │ │ └── index.html │ │ └── unknownoid │ │ │ └── index.html │ │ ├── ecprivatekey │ │ ├── asn1 │ │ │ └── index.html │ │ ├── decrypt(msg:cipher:mode:)-9nqsp │ │ │ └── index.html │ │ ├── decrypt(msg:cipher:mode:)-9pdnd │ │ │ └── index.html │ │ ├── decryptaesgcm(msg:cipher:aad:)-1yypz │ │ │ └── index.html │ │ ├── decryptaesgcm(msg:cipher:aad:)-7hhik │ │ │ └── index.html │ │ ├── decryptchacha(msg:aad:)-7bguu │ │ │ └── index.html │ │ ├── decryptchacha(msg:aad:)-ttft │ │ │ └── index.html │ │ ├── der │ │ │ └── index.html │ │ ├── derencrypted(password:cipher:) │ │ │ └── index.html │ │ ├── derpkcs8 │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── domain │ │ │ └── index.html │ │ ├── getkeyandmac(msg:cipher:mode:)-6t51 │ │ │ └── index.html │ │ ├── getkeyandmac(msg:cipher:mode:)-8d85z │ │ │ └── index.html │ │ ├── hkdfkeyagreement(pubkey:length:kind:sharedinfo:salt:cofactor:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(der:password:) │ │ │ └── index.html │ │ ├── init(der:pkcs8:) │ │ │ └── index.html │ │ ├── init(domain:s:) │ │ │ └── index.html │ │ ├── init(pem:) │ │ │ └── index.html │ │ ├── init(pem:password:) │ │ │ └── index.html │ │ ├── pem │ │ │ └── index.html │ │ ├── pemencrypted(password:cipher:) │ │ │ └── index.html │ │ ├── pempkcs8 │ │ │ └── index.html │ │ ├── s │ │ │ └── index.html │ │ ├── sharedsecret(pubkey:cofactor:) │ │ │ └── index.html │ │ ├── sign(msg:deterministic:)-1t1sl │ │ │ └── index.html │ │ ├── sign(msg:deterministic:)-24jcb │ │ │ └── index.html │ │ └── x963keyagreement(pubkey:length:kind:sharedinfo:cofactor:) │ │ │ └── index.html │ │ ├── ecpublickey │ │ ├── asn1 │ │ │ └── index.html │ │ ├── der │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── domain │ │ │ └── index.html │ │ ├── encrypt(msg:cipher:mode:)-4dil1 │ │ │ └── index.html │ │ ├── encrypt(msg:cipher:mode:)-4xz0p │ │ │ └── index.html │ │ ├── encryptaesgcm(msg:cipher:aad:)-7ow39 │ │ │ └── index.html │ │ ├── encryptaesgcm(msg:cipher:aad:)-7w8j9 │ │ │ └── index.html │ │ ├── encryptchacha(msg:aad:)-535bd │ │ │ └── index.html │ │ ├── encryptchacha(msg:aad:)-7qtyj │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(der:) │ │ │ └── index.html │ │ ├── init(domain:w:) │ │ │ └── index.html │ │ ├── init(pem:) │ │ │ └── index.html │ │ ├── init(privatekey:) │ │ │ └── index.html │ │ ├── pem │ │ │ └── index.html │ │ ├── verify(signature:msg:bw:)-41jz7 │ │ │ └── index.html │ │ ├── verify(signature:msg:bw:)-61z0 │ │ │ └── index.html │ │ └── w │ │ │ └── index.html │ │ ├── ecsignature │ │ ├── asn1 │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── domain │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(asn1:domain:) │ │ │ └── index.html │ │ ├── init(domain:r:s:) │ │ │ └── index.html │ │ ├── r │ │ │ └── index.html │ │ └── s │ │ │ └── index.html │ │ ├── encryptdecrypt │ │ └── index.html │ │ ├── encryptedkeys │ │ └── index.html │ │ ├── index.html │ │ ├── keyagrement │ │ └── index.html │ │ ├── keymanagement │ │ └── index.html │ │ ├── performance │ │ └── index.html │ │ ├── point │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── ==(_:_:) │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── infinity-swift.property │ │ │ └── index.html │ │ ├── infinity-swift.type.property │ │ │ └── index.html │ │ ├── init(_:_:) │ │ │ └── index.html │ │ ├── x │ │ │ └── index.html │ │ └── y │ │ │ └── index.html │ │ ├── references │ │ └── index.html │ │ ├── rp │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── ==(_:_:) │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(_:_:) │ │ │ └── index.html │ │ ├── init(_:_:_:_:) │ │ │ └── index.html │ │ ├── k1 │ │ │ └── index.html │ │ ├── k2 │ │ │ └── index.html │ │ ├── k3 │ │ │ └── index.html │ │ ├── m │ │ │ └── index.html │ │ └── p │ │ │ └── index.html │ │ └── signverify │ │ └── index.html ├── favicon.ico ├── favicon.svg ├── img │ ├── added-icon.832a5d2c.svg │ ├── deprecated-icon.7bf1740a.svg │ └── modified-icon.efb2697d.svg ├── index.html ├── index │ ├── availability.index │ ├── data.mdb │ ├── index.json │ └── navigator.index ├── js │ ├── 104.fe5974d0.js │ ├── 337.274a8ccc.js │ ├── 842.aeb682fd.js │ ├── 866.6e371bd7.js │ ├── chunk-vendors.bdb7cbba.js │ ├── documentation-topic.28579b4f.js │ ├── highlight-js-bash-js.702f0c5c.js │ ├── highlight-js-c-js.063069d3.js │ ├── highlight-js-cpp-js.458a9ae4.js │ ├── highlight-js-css-js.bfc4251f.js │ ├── highlight-js-custom-markdown.78c9f6ed.js │ ├── highlight-js-custom-swift.738731d1.js │ ├── highlight-js-diff-js.4db9a783.js │ ├── highlight-js-http-js.f78e83c2.js │ ├── highlight-js-java-js.4fe21e94.js │ ├── highlight-js-javascript-js.dfc9d16d.js │ ├── highlight-js-json-js.2a1856ba.js │ ├── highlight-js-llvm-js.26121771.js │ ├── highlight-js-markdown-js.a2f456af.js │ ├── highlight-js-objectivec-js.74dea052.js │ ├── highlight-js-perl-js.da6eda82.js │ ├── highlight-js-php-js.c458ffa4.js │ ├── highlight-js-python-js.60354774.js │ ├── highlight-js-ruby-js.7272231f.js │ ├── highlight-js-scss-js.adcd11a2.js │ ├── highlight-js-shell-js.0ad5b20f.js │ ├── highlight-js-swift-js.bdd5bff5.js │ ├── highlight-js-xml-js.0d78f903.js │ ├── index.d2f6f6a9.js │ ├── topic.24dedb87.js │ └── tutorials-overview.2d184ec0.js └── metadata.json ├── Tests └── SwiftECCTests │ ├── BlueTest.swift │ ├── BrainpoolTest.swift │ ├── CipherTest.swift │ ├── CryptoKitTest.swift │ ├── DomainTest.swift │ ├── ECDHTest.swift │ ├── EciesAESGCMTest.swift │ ├── EciesChaChaTest.swift │ ├── EciesTest.swift │ ├── ExceptionTest.swift │ ├── FuzzTest.swift │ ├── GCMTest.swift │ ├── KeysEncryptedTest.swift │ ├── KeysTest.swift │ ├── PEMTest.swift │ ├── PointTest.swift │ ├── SignatureDetTest.swift │ ├── SignatureTest.swift │ ├── Test29.swift │ ├── Test4.swift │ ├── VerifyTest.swift │ └── ZTest.swift └── docs ├── css ├── 866.2d08a543.css ├── 989.4f123103.css ├── documentation-topic.da0b1931.css ├── index.3a335429.css ├── topic.4be8f56d.css └── tutorials-overview.adb17623.css ├── data └── documentation │ ├── swiftecc.json │ └── swiftecc │ ├── aeadencryptdecrypt.json │ ├── aescipher.json │ ├── aescipher │ ├── !=(_:_:).json │ ├── aes128.json │ ├── aes192.json │ ├── aes256.json │ └── equatable-implementations.json │ ├── blockmode.json │ ├── blockmode │ ├── !=(_:_:).json │ ├── cbc.json │ ├── cfb.json │ ├── ctr.json │ ├── ecb.json │ ├── equatable-implementations.json │ ├── gcm.json │ └── ofb.json │ ├── byte.json │ ├── bytes.json │ ├── createdomain.json │ ├── domain.json │ ├── domain │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── a.json │ ├── addpoints(_:_:).json │ ├── asn1.json │ ├── asn1decodepoint(_:)-5k4zf.json │ ├── asn1decodepoint(_:)-5xuks.json │ ├── asn1encodepoint(_:_:).json │ ├── asn1explicit().json │ ├── b.json │ ├── characteristic2.json │ ├── cofactor.json │ ├── contains(_:).json │ ├── decodepoint(_:).json │ ├── description.json │ ├── doublepoint(_:).json │ ├── encodepoint(_:_:).json │ ├── equatable-implementations.json │ ├── g.json │ ├── instance(curve:).json │ ├── instance(name:p:a:b:gx:gy:order:cofactor:oid:).json │ ├── instance(name:rp:a:b:gx:gy:order:cofactor:oid:).json │ ├── instance(oid:).json │ ├── instance(pem:).json │ ├── makekeypair().json │ ├── multiplypoint(_:_:).json │ ├── name.json │ ├── negatepoint(_:).json │ ├── oid.json │ ├── oid_2.json │ ├── oid_ec.json │ ├── oid_p.json │ ├── order.json │ ├── p.json │ ├── pem.json │ └── subtractpoints(_:_:).json │ ├── ecarithmetic.json │ ├── eccurve.json │ ├── eccurve │ ├── !=(_:_:).json │ ├── bp160r1.json │ ├── bp160t1.json │ ├── bp192r1.json │ ├── bp192t1.json │ ├── bp224r1.json │ ├── bp224t1.json │ ├── bp256r1.json │ ├── bp256t1.json │ ├── bp320r1.json │ ├── bp320t1.json │ ├── bp384r1.json │ ├── bp384t1.json │ ├── bp512r1.json │ ├── bp512t1.json │ ├── ec163k1.json │ ├── ec163r2.json │ ├── ec192k1.json │ ├── ec192r1.json │ ├── ec224k1.json │ ├── ec224r1.json │ ├── ec233k1.json │ ├── ec233r1.json │ ├── ec256k1.json │ ├── ec256r1.json │ ├── ec283k1.json │ ├── ec283r1.json │ ├── ec384r1.json │ ├── ec409k1.json │ ├── ec409r1.json │ ├── ec521r1.json │ ├── ec571k1.json │ ├── ec571r1.json │ └── equatable-implementations.json │ ├── ecexception.json │ ├── ecexception │ ├── !=(_:_:).json │ ├── asn1structure.json │ ├── authentication.json │ ├── decodepoint.json │ ├── description.json │ ├── domainparameter.json │ ├── encodepoint.json │ ├── equatable-implementations.json │ ├── error-implementations.json │ ├── keyagreementparameter.json │ ├── localizeddescription.json │ ├── notenoughinput.json │ ├── notoncurve.json │ ├── padding.json │ ├── pemstructure.json │ ├── privatekeyparameter.json │ ├── publickeyparameter.json │ └── unknownoid.json │ ├── ecprivatekey.json │ ├── ecprivatekey │ ├── asn1.json │ ├── decrypt(msg:cipher:mode:)-9nqsp.json │ ├── decrypt(msg:cipher:mode:)-9pdnd.json │ ├── decryptaesgcm(msg:cipher:aad:)-1yypz.json │ ├── decryptaesgcm(msg:cipher:aad:)-7hhik.json │ ├── decryptchacha(msg:aad:)-7bguu.json │ ├── decryptchacha(msg:aad:)-ttft.json │ ├── der.json │ ├── derencrypted(password:cipher:).json │ ├── derpkcs8.json │ ├── description.json │ ├── domain.json │ ├── getkeyandmac(msg:cipher:mode:)-6t51.json │ ├── getkeyandmac(msg:cipher:mode:)-8d85z.json │ ├── hkdfkeyagreement(pubkey:length:kind:sharedinfo:salt:cofactor:).json │ ├── init(der:password:).json │ ├── init(der:pkcs8:).json │ ├── init(domain:s:).json │ ├── init(pem:).json │ ├── init(pem:password:).json │ ├── pem.json │ ├── pemencrypted(password:cipher:).json │ ├── pempkcs8.json │ ├── s.json │ ├── sharedsecret(pubkey:cofactor:).json │ ├── sign(msg:deterministic:)-1t1sl.json │ ├── sign(msg:deterministic:)-24jcb.json │ └── x963keyagreement(pubkey:length:kind:sharedinfo:cofactor:).json │ ├── ecpublickey.json │ ├── ecpublickey │ ├── asn1.json │ ├── der.json │ ├── description.json │ ├── domain.json │ ├── encrypt(msg:cipher:mode:)-4dil1.json │ ├── encrypt(msg:cipher:mode:)-4xz0p.json │ ├── encryptaesgcm(msg:cipher:aad:)-7ow39.json │ ├── encryptaesgcm(msg:cipher:aad:)-7w8j9.json │ ├── encryptchacha(msg:aad:)-535bd.json │ ├── encryptchacha(msg:aad:)-7qtyj.json │ ├── init(der:).json │ ├── init(domain:w:).json │ ├── init(pem:).json │ ├── init(privatekey:).json │ ├── pem.json │ ├── verify(signature:msg:bw:)-41jz7.json │ ├── verify(signature:msg:bw:)-61z0.json │ └── w.json │ ├── ecsignature.json │ ├── ecsignature │ ├── asn1.json │ ├── description.json │ ├── domain.json │ ├── init(asn1:domain:).json │ ├── init(domain:r:s:).json │ ├── r.json │ └── s.json │ ├── encryptdecrypt.json │ ├── encryptedkeys.json │ ├── keyagrement.json │ ├── keymanagement.json │ ├── performance.json │ ├── point.json │ ├── point │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── description.json │ ├── equatable-implementations.json │ ├── infinity-swift.property.json │ ├── infinity-swift.type.property.json │ ├── init(_:_:).json │ ├── x.json │ └── y.json │ ├── references.json │ ├── rp.json │ ├── rp │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── description.json │ ├── equatable-implementations.json │ ├── init(_:_:).json │ ├── init(_:_:_:_:).json │ ├── k1.json │ ├── k2.json │ ├── k3.json │ ├── m.json │ └── p.json │ └── signverify.json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation └── swiftecc │ ├── aeadencryptdecrypt │ └── index.html │ ├── aescipher │ ├── !=(_:_:) │ │ └── index.html │ ├── aes128 │ │ └── index.html │ ├── aes192 │ │ └── index.html │ ├── aes256 │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ └── index.html │ ├── blockmode │ ├── !=(_:_:) │ │ └── index.html │ ├── cbc │ │ └── index.html │ ├── cfb │ │ └── index.html │ ├── ctr │ │ └── index.html │ ├── ecb │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── gcm │ │ └── index.html │ ├── index.html │ └── ofb │ │ └── index.html │ ├── byte │ └── index.html │ ├── bytes │ └── index.html │ ├── createdomain │ └── index.html │ ├── domain │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── a │ │ └── index.html │ ├── addpoints(_:_:) │ │ └── index.html │ ├── asn1 │ │ └── index.html │ ├── asn1decodepoint(_:)-5k4zf │ │ └── index.html │ ├── asn1decodepoint(_:)-5xuks │ │ └── index.html │ ├── asn1encodepoint(_:_:) │ │ └── index.html │ ├── asn1explicit() │ │ └── index.html │ ├── b │ │ └── index.html │ ├── characteristic2 │ │ └── index.html │ ├── cofactor │ │ └── index.html │ ├── contains(_:) │ │ └── index.html │ ├── decodepoint(_:) │ │ └── index.html │ ├── description │ │ └── index.html │ ├── doublepoint(_:) │ │ └── index.html │ ├── encodepoint(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── g │ │ └── index.html │ ├── index.html │ ├── instance(curve:) │ │ └── index.html │ ├── instance(name:p:a:b:gx:gy:order:cofactor:oid:) │ │ └── index.html │ ├── instance(name:rp:a:b:gx:gy:order:cofactor:oid:) │ │ └── index.html │ ├── instance(oid:) │ │ └── index.html │ ├── instance(pem:) │ │ └── index.html │ ├── makekeypair() │ │ └── index.html │ ├── multiplypoint(_:_:) │ │ └── index.html │ ├── name │ │ └── index.html │ ├── negatepoint(_:) │ │ └── index.html │ ├── oid │ │ └── index.html │ ├── oid_2 │ │ └── index.html │ ├── oid_ec │ │ └── index.html │ ├── oid_p │ │ └── index.html │ ├── order │ │ └── index.html │ ├── p │ │ └── index.html │ ├── pem │ │ └── index.html │ └── subtractpoints(_:_:) │ │ └── index.html │ ├── ecarithmetic │ └── index.html │ ├── eccurve │ ├── !=(_:_:) │ │ └── index.html │ ├── bp160r1 │ │ └── index.html │ ├── bp160t1 │ │ └── index.html │ ├── bp192r1 │ │ └── index.html │ ├── bp192t1 │ │ └── index.html │ ├── bp224r1 │ │ └── index.html │ ├── bp224t1 │ │ └── index.html │ ├── bp256r1 │ │ └── index.html │ ├── bp256t1 │ │ └── index.html │ ├── bp320r1 │ │ └── index.html │ ├── bp320t1 │ │ └── index.html │ ├── bp384r1 │ │ └── index.html │ ├── bp384t1 │ │ └── index.html │ ├── bp512r1 │ │ └── index.html │ ├── bp512t1 │ │ └── index.html │ ├── ec163k1 │ │ └── index.html │ ├── ec163r2 │ │ └── index.html │ ├── ec192k1 │ │ └── index.html │ ├── ec192r1 │ │ └── index.html │ ├── ec224k1 │ │ └── index.html │ ├── ec224r1 │ │ └── index.html │ ├── ec233k1 │ │ └── index.html │ ├── ec233r1 │ │ └── index.html │ ├── ec256k1 │ │ └── index.html │ ├── ec256r1 │ │ └── index.html │ ├── ec283k1 │ │ └── index.html │ ├── ec283r1 │ │ └── index.html │ ├── ec384r1 │ │ └── index.html │ ├── ec409k1 │ │ └── index.html │ ├── ec409r1 │ │ └── index.html │ ├── ec521r1 │ │ └── index.html │ ├── ec571k1 │ │ └── index.html │ ├── ec571r1 │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ └── index.html │ ├── ecexception │ ├── !=(_:_:) │ │ └── index.html │ ├── asn1structure │ │ └── index.html │ ├── authentication │ │ └── index.html │ ├── decodepoint │ │ └── index.html │ ├── description │ │ └── index.html │ ├── domainparameter │ │ └── index.html │ ├── encodepoint │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── error-implementations │ │ └── index.html │ ├── index.html │ ├── keyagreementparameter │ │ └── index.html │ ├── localizeddescription │ │ └── index.html │ ├── notenoughinput │ │ └── index.html │ ├── notoncurve │ │ └── index.html │ ├── padding │ │ └── index.html │ ├── pemstructure │ │ └── index.html │ ├── privatekeyparameter │ │ └── index.html │ ├── publickeyparameter │ │ └── index.html │ └── unknownoid │ │ └── index.html │ ├── ecprivatekey │ ├── asn1 │ │ └── index.html │ ├── decrypt(msg:cipher:mode:)-9nqsp │ │ └── index.html │ ├── decrypt(msg:cipher:mode:)-9pdnd │ │ └── index.html │ ├── decryptaesgcm(msg:cipher:aad:)-1yypz │ │ └── index.html │ ├── decryptaesgcm(msg:cipher:aad:)-7hhik │ │ └── index.html │ ├── decryptchacha(msg:aad:)-7bguu │ │ └── index.html │ ├── decryptchacha(msg:aad:)-ttft │ │ └── index.html │ ├── der │ │ └── index.html │ ├── derencrypted(password:cipher:) │ │ └── index.html │ ├── derpkcs8 │ │ └── index.html │ ├── description │ │ └── index.html │ ├── domain │ │ └── index.html │ ├── getkeyandmac(msg:cipher:mode:)-6t51 │ │ └── index.html │ ├── getkeyandmac(msg:cipher:mode:)-8d85z │ │ └── index.html │ ├── hkdfkeyagreement(pubkey:length:kind:sharedinfo:salt:cofactor:) │ │ └── index.html │ ├── index.html │ ├── init(der:password:) │ │ └── index.html │ ├── init(der:pkcs8:) │ │ └── index.html │ ├── init(domain:s:) │ │ └── index.html │ ├── init(pem:) │ │ └── index.html │ ├── init(pem:password:) │ │ └── index.html │ ├── pem │ │ └── index.html │ ├── pemencrypted(password:cipher:) │ │ └── index.html │ ├── pempkcs8 │ │ └── index.html │ ├── s │ │ └── index.html │ ├── sharedsecret(pubkey:cofactor:) │ │ └── index.html │ ├── sign(msg:deterministic:)-1t1sl │ │ └── index.html │ ├── sign(msg:deterministic:)-24jcb │ │ └── index.html │ └── x963keyagreement(pubkey:length:kind:sharedinfo:cofactor:) │ │ └── index.html │ ├── ecpublickey │ ├── asn1 │ │ └── index.html │ ├── der │ │ └── index.html │ ├── description │ │ └── index.html │ ├── domain │ │ └── index.html │ ├── encrypt(msg:cipher:mode:)-4dil1 │ │ └── index.html │ ├── encrypt(msg:cipher:mode:)-4xz0p │ │ └── index.html │ ├── encryptaesgcm(msg:cipher:aad:)-7ow39 │ │ └── index.html │ ├── encryptaesgcm(msg:cipher:aad:)-7w8j9 │ │ └── index.html │ ├── encryptchacha(msg:aad:)-535bd │ │ └── index.html │ ├── encryptchacha(msg:aad:)-7qtyj │ │ └── index.html │ ├── index.html │ ├── init(der:) │ │ └── index.html │ ├── init(domain:w:) │ │ └── index.html │ ├── init(pem:) │ │ └── index.html │ ├── init(privatekey:) │ │ └── index.html │ ├── pem │ │ └── index.html │ ├── verify(signature:msg:bw:)-41jz7 │ │ └── index.html │ ├── verify(signature:msg:bw:)-61z0 │ │ └── index.html │ └── w │ │ └── index.html │ ├── ecsignature │ ├── asn1 │ │ └── index.html │ ├── description │ │ └── index.html │ ├── domain │ │ └── index.html │ ├── index.html │ ├── init(asn1:domain:) │ │ └── index.html │ ├── init(domain:r:s:) │ │ └── index.html │ ├── r │ │ └── index.html │ └── s │ │ └── index.html │ ├── encryptdecrypt │ └── index.html │ ├── encryptedkeys │ └── index.html │ ├── index.html │ ├── keyagrement │ └── index.html │ ├── keymanagement │ └── index.html │ ├── performance │ └── index.html │ ├── point │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── description │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── infinity-swift.property │ │ └── index.html │ ├── infinity-swift.type.property │ │ └── index.html │ ├── init(_:_:) │ │ └── index.html │ ├── x │ │ └── index.html │ └── y │ │ └── index.html │ ├── references │ └── index.html │ ├── rp │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── description │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── init(_:_:) │ │ └── index.html │ ├── init(_:_:_:_:) │ │ └── index.html │ ├── k1 │ │ └── index.html │ ├── k2 │ │ └── index.html │ ├── k3 │ │ └── index.html │ ├── m │ │ └── index.html │ └── p │ │ └── index.html │ └── signverify │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.832a5d2c.svg ├── deprecated-icon.7bf1740a.svg └── modified-icon.efb2697d.svg ├── index.html ├── index └── index.json ├── js ├── 104.fe5974d0.js ├── 337.274a8ccc.js ├── 842.aeb682fd.js ├── 866.6e371bd7.js ├── chunk-vendors.bdb7cbba.js ├── documentation-topic.28579b4f.js ├── highlight-js-bash-js.702f0c5c.js ├── highlight-js-c-js.063069d3.js ├── highlight-js-cpp-js.458a9ae4.js ├── highlight-js-css-js.bfc4251f.js ├── highlight-js-custom-markdown.78c9f6ed.js ├── highlight-js-custom-swift.738731d1.js ├── highlight-js-diff-js.4db9a783.js ├── highlight-js-http-js.f78e83c2.js ├── highlight-js-java-js.4fe21e94.js ├── highlight-js-javascript-js.dfc9d16d.js ├── highlight-js-json-js.2a1856ba.js ├── highlight-js-llvm-js.26121771.js ├── highlight-js-markdown-js.a2f456af.js ├── highlight-js-objectivec-js.74dea052.js ├── highlight-js-perl-js.da6eda82.js ├── highlight-js-php-js.c458ffa4.js ├── highlight-js-python-js.60354774.js ├── highlight-js-ruby-js.7272231f.js ├── highlight-js-scss-js.adcd11a2.js ├── highlight-js-shell-js.0ad5b20f.js ├── highlight-js-swift-js.bdd5bff5.js ├── highlight-js-xml-js.0d78f903.js ├── index.d2f6f6a9.js ├── topic.24dedb87.js └── tutorials-overview.2d184ec0.js └── metadata.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/AES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/AES.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/CBCCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/CBCCipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/CFBCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/CFBCipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/CTRCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/CTRCipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/Cipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/Cipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/DeterministicK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/DeterministicK.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/ECBCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/ECBCipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/GCMCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/GCMCipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/OFBCipher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/OFBCipher.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Cipher/PBE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Cipher/PBE.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Curve.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Curve.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/BitVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/BitVector.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/Domain2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/Domain2.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/EC163.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/EC163.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/EC233.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/EC233.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/EC283.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/EC283.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/EC409.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/EC409.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/EC571.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/EC571.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Domain2/Point2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Domain2/Point2.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP160.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP160.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP192.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP192.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP224.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP224.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP256.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP256.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP320.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP320.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP384.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP384.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/BP512.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/BP512.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/DomainP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/DomainP.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/EC192.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/EC192.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/EC224.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/EC224.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/EC256.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/EC256.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/EC384.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/EC384.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/DomainP/EC521.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/DomainP/EC521.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Exception.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Exception.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Point.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/PrivateKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/PrivateKey.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/PublicKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/PublicKey.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/RP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/RP.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/Signature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/Signature.swift -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/AEADEncryptDecrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/AEADEncryptDecrypt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/CreateDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/CreateDomain.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/ECArithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/ECArithmetic.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/EncryptDecrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/EncryptDecrypt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/EncryptedKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/EncryptedKeys.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/KeyAgrement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/KeyAgrement.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/KeyManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/KeyManagement.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/Performance.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/References.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Articles/SignVerify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Articles/SignVerify.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Extensions/DomainExt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Extensions/DomainExt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Extensions/PointExt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Extensions/PointExt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Extensions/PrivateKeyExt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Extensions/PrivateKeyExt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Extensions/PublicKeyExt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Extensions/PublicKeyExt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Extensions/RPExt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Extensions/RPExt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/Extensions/SignatureExt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/Extensions/SignatureExt.md -------------------------------------------------------------------------------- /Sources/SwiftECC/SwiftECC.docc/SwiftECC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Sources/SwiftECC/SwiftECC.docc/SwiftECC.md -------------------------------------------------------------------------------- /SwiftECC.doccarchive/css/866.2d08a543.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/css/866.2d08a543.css -------------------------------------------------------------------------------- /SwiftECC.doccarchive/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/css/989.4f123103.css -------------------------------------------------------------------------------- /SwiftECC.doccarchive/css/documentation-topic.da0b1931.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/css/documentation-topic.da0b1931.css -------------------------------------------------------------------------------- /SwiftECC.doccarchive/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/css/index.3a335429.css -------------------------------------------------------------------------------- /SwiftECC.doccarchive/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /SwiftECC.doccarchive/css/tutorials-overview.adb17623.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/css/tutorials-overview.adb17623.css -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/aeadencryptdecrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/aeadencryptdecrypt.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/aescipher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/aescipher.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/aes128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/aes128.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/aes192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/aes192.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/aes256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/aescipher/aes256.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/cbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/cbc.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/cfb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/cfb.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/ctr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/ctr.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/ecb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/ecb.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/gcm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/gcm.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/ofb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/blockmode/ofb.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/byte.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/bytes.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/createdomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/createdomain.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/==(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/a.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/asn1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/b.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/cofactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/cofactor.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/contains(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/contains(_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/description.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/g.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/makekeypair().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/makekeypair().json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/name.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid_2.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid_ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid_ec.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid_p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/oid_p.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/order.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/p.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/domain/pem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/domain/pem.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecarithmetic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecarithmetic.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp160r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp160r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp160t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp160t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp192r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp192r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp192t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp192t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp224r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp224r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp224t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp224t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp256r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp256r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp256t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp256t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp320r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp320r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp320t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp320t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp384r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp384r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp384t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp384t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp512r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp512r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp512t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/bp512t1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec163k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec163k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec163r2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec163r2.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec192k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec192k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec192r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec192r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec224k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec224k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec224r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec224r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec233k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec233k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec233r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec233r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec256k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec256k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec256r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec256r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec283k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec283k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec283r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec283r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec384r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec384r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec409k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec409k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec409r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec409r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec521r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec521r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec571k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec571k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec571r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/eccurve/ec571r1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecexception.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecexception.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecexception/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecexception/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecexception/padding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecexception/padding.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/asn1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/der.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/der.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/domain.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/pem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/pem.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecprivatekey/s.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/asn1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/der.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/der.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/domain.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/pem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/pem.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecpublickey/w.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/asn1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/domain.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/r.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/ecsignature/s.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/encryptdecrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/encryptdecrypt.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/encryptedkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/encryptedkeys.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/keyagrement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/keyagrement.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/keymanagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/keymanagement.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/performance.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point/==(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point/description.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point/init(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point/init(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point/x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point/x.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/point/y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/point/y.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/references.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/!=(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/==(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/description.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/init(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/init(_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/init(_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/init(_:_:_:_:).json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/k1.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/k2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/k2.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/k3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/k3.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/m.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/rp/p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/rp/p.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/data/documentation/swiftecc/signverify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/data/documentation/swiftecc/signverify.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/developer-og-twitter.jpg -------------------------------------------------------------------------------- /SwiftECC.doccarchive/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/developer-og.jpg -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/aeadencryptdecrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/aeadencryptdecrypt/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/aescipher/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/aescipher/!=(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/aescipher/aes128/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/aescipher/aes128/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/aescipher/aes192/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/aescipher/aes192/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/aescipher/aes256/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/aescipher/aes256/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/aescipher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/aescipher/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/!=(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/cbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/cbc/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/cfb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/cfb/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/ctr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/ctr/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/ecb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/ecb/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/gcm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/gcm/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/blockmode/ofb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/blockmode/ofb/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/byte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/byte/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/bytes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/bytes/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/createdomain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/createdomain/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/!=(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/==(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/a/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/asn1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/b/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/b/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/cofactor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/cofactor/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/contains(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/contains(_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/description/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/g/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/g/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/name/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/oid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/oid/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/oid_2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/oid_2/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/oid_ec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/oid_ec/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/oid_p/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/oid_p/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/order/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/order/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/p/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/p/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/domain/pem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/domain/pem/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecarithmetic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecarithmetic/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/!=(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp160r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp160r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp160t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp160t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp192r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp192r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp192t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp192t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp224r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp224r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp224t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp224t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp256r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp256r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp256t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp256t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp320r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp320r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp320t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp320t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp384r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp384r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp384t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp384t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp512r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp512r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp512t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/bp512t1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec163k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec163k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec163r2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec163r2/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec192k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec192k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec192r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec192r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec224k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec224k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec224r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec224r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec233k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec233k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec233r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec233r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec256k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec256k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec256r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec256r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec283k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec283k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec283r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec283r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec384r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec384r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec409k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec409k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec409r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec409r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec521r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec521r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec571k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec571k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec571r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/ec571r1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/eccurve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/eccurve/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecexception/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecexception/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/der/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/der/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/pem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/pem/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecprivatekey/s/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/asn1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/der/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/der/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/pem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/pem/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/w/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecpublickey/w/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecsignature/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecsignature/asn1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecsignature/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecsignature/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecsignature/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecsignature/r/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/ecsignature/s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/ecsignature/s/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/encryptdecrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/encryptdecrypt/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/encryptedkeys/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/encryptedkeys/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/keyagrement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/keyagrement/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/keymanagement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/keymanagement/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/performance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/performance/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/point/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/point/!=(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/point/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/point/==(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/point/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/point/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/point/init(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/point/init(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/point/x/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/point/x/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/point/y/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/point/y/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/references/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/references/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/!=(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/==(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/description/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/init(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/init(_:_:)/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/k1/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/k2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/k2/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/k3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/k3/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/m/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/m/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/rp/p/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/rp/p/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/documentation/swiftecc/signverify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/documentation/swiftecc/signverify/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/favicon.ico -------------------------------------------------------------------------------- /SwiftECC.doccarchive/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/favicon.svg -------------------------------------------------------------------------------- /SwiftECC.doccarchive/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /SwiftECC.doccarchive/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /SwiftECC.doccarchive/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /SwiftECC.doccarchive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/index.html -------------------------------------------------------------------------------- /SwiftECC.doccarchive/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/index/availability.index -------------------------------------------------------------------------------- /SwiftECC.doccarchive/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/index/data.mdb -------------------------------------------------------------------------------- /SwiftECC.doccarchive/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/index/index.json -------------------------------------------------------------------------------- /SwiftECC.doccarchive/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/index/navigator.index -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/104.fe5974d0.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/337.274a8ccc.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/842.aeb682fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/842.aeb682fd.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/866.6e371bd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/866.6e371bd7.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/documentation-topic.28579b4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/documentation-topic.28579b4f.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/index.d2f6f6a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/index.d2f6f6a9.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/topic.24dedb87.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/topic.24dedb87.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/js/tutorials-overview.2d184ec0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/js/tutorials-overview.2d184ec0.js -------------------------------------------------------------------------------- /SwiftECC.doccarchive/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/SwiftECC.doccarchive/metadata.json -------------------------------------------------------------------------------- /Tests/SwiftECCTests/BlueTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/BlueTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/BrainpoolTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/BrainpoolTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/CipherTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/CipherTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/CryptoKitTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/CryptoKitTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/DomainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/DomainTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/ECDHTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/ECDHTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/EciesAESGCMTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/EciesAESGCMTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/EciesChaChaTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/EciesChaChaTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/EciesTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/EciesTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/ExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/ExceptionTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/FuzzTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/FuzzTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/GCMTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/GCMTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/KeysEncryptedTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/KeysEncryptedTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/KeysTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/KeysTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/PEMTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/PEMTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/PointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/PointTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/SignatureDetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/SignatureDetTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/SignatureTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/SignatureTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/Test29.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/Test29.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/Test4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/Test4.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/VerifyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/VerifyTest.swift -------------------------------------------------------------------------------- /Tests/SwiftECCTests/ZTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/Tests/SwiftECCTests/ZTest.swift -------------------------------------------------------------------------------- /docs/css/866.2d08a543.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/css/866.2d08a543.css -------------------------------------------------------------------------------- /docs/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/css/documentation-topic.da0b1931.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/css/documentation-topic.da0b1931.css -------------------------------------------------------------------------------- /docs/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.adb17623.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/css/tutorials-overview.adb17623.css -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/aeadencryptdecrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/aeadencryptdecrypt.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/aescipher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/aescipher.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/aescipher/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/aescipher/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/aescipher/aes128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/aescipher/aes128.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/aescipher/aes192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/aescipher/aes192.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/aescipher/aes256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/aescipher/aes256.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/cbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/cbc.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/cfb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/cfb.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/ctr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/ctr.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/ecb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/ecb.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/gcm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/gcm.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/blockmode/ofb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/blockmode/ofb.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/byte.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/bytes.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/createdomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/createdomain.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/a.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/addpoints(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/addpoints(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/asn1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/asn1decodepoint(_:)-5k4zf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/asn1decodepoint(_:)-5k4zf.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/asn1decodepoint(_:)-5xuks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/asn1decodepoint(_:)-5xuks.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/asn1encodepoint(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/asn1encodepoint(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/asn1explicit().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/asn1explicit().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/b.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/characteristic2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/characteristic2.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/cofactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/cofactor.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/contains(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/contains(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/decodepoint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/decodepoint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/doublepoint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/doublepoint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/encodepoint(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/encodepoint(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/g.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/g.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/instance(curve:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/instance(curve:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/instance(oid:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/instance(oid:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/instance(pem:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/instance(pem:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/makekeypair().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/makekeypair().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/multiplypoint(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/multiplypoint(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/name.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/negatepoint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/negatepoint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/oid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/oid.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/oid_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/oid_2.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/oid_ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/oid_ec.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/oid_p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/oid_p.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/order.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/p.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/pem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/pem.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/domain/subtractpoints(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/domain/subtractpoints(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecarithmetic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecarithmetic.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp160r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp160r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp160t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp160t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp192r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp192r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp192t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp192t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp224r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp224r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp224t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp224t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp256r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp256r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp256t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp256t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp320r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp320r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp320t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp320t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp384r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp384r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp384t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp384t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp512r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp512r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/bp512t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/bp512t1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec163k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec163k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec163r2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec163r2.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec192k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec192k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec192r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec192r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec224k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec224k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec224r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec224r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec233k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec233k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec233r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec233r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec256k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec256k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec256r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec256r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec283k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec283k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec283r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec283r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec384r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec384r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec409k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec409k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec409r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec409r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec521r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec521r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec571k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec571k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/ec571r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/ec571r1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/eccurve/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/eccurve/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/asn1structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/asn1structure.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/authentication.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/decodepoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/decodepoint.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/domainparameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/domainparameter.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/encodepoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/encodepoint.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/error-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/error-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/keyagreementparameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/keyagreementparameter.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/localizeddescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/localizeddescription.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/notenoughinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/notenoughinput.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/notoncurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/notoncurve.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/padding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/padding.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/pemstructure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/pemstructure.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/privatekeyparameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/privatekeyparameter.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/publickeyparameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/publickeyparameter.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecexception/unknownoid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecexception/unknownoid.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/asn1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/der.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/der.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/derpkcs8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/derpkcs8.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/domain.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/init(der:password:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/init(der:password:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/init(der:pkcs8:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/init(der:pkcs8:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/init(domain:s:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/init(domain:s:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/init(pem:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/init(pem:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/init(pem:password:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/init(pem:password:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/pem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/pem.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/pempkcs8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/pempkcs8.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecprivatekey/s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecprivatekey/s.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/asn1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/der.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/der.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/domain.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/init(der:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/init(der:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/init(domain:w:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/init(domain:w:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/init(pem:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/init(pem:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/init(privatekey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/init(privatekey:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/pem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/pem.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecpublickey/w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecpublickey/w.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/asn1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/domain.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/init(asn1:domain:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/init(asn1:domain:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/init(domain:r:s:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/init(domain:r:s:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/r.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/ecsignature/s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/ecsignature/s.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/encryptdecrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/encryptdecrypt.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/encryptedkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/encryptedkeys.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/keyagrement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/keyagrement.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/keymanagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/keymanagement.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/performance.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/infinity-swift.property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/infinity-swift.property.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/init(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/init(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/x.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/point/y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/point/y.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/references.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/description.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/init(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/init(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/init(_:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/init(_:_:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/k1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/k1.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/k2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/k2.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/k3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/k3.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/m.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/rp/p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/rp/p.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftecc/signverify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/data/documentation/swiftecc/signverify.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/swiftecc/aeadencryptdecrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/aeadencryptdecrypt/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/aescipher/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/aescipher/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/aescipher/aes128/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/aescipher/aes128/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/aescipher/aes192/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/aescipher/aes192/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/aescipher/aes256/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/aescipher/aes256/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/aescipher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/aescipher/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/cbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/cbc/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/cfb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/cfb/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/ctr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/ctr/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/ecb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/ecb/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/gcm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/gcm/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/blockmode/ofb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/blockmode/ofb/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/byte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/byte/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/bytes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/bytes/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/createdomain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/createdomain/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/a/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/addpoints(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/addpoints(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/asn1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/asn1decodepoint(_:)-5k4zf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/asn1decodepoint(_:)-5k4zf/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/asn1decodepoint(_:)-5xuks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/asn1decodepoint(_:)-5xuks/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/asn1encodepoint(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/asn1encodepoint(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/asn1explicit()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/asn1explicit()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/b/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/b/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/characteristic2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/characteristic2/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/cofactor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/cofactor/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/contains(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/contains(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/decodepoint(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/decodepoint(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/doublepoint(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/doublepoint(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/encodepoint(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/encodepoint(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/g/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/g/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/instance(curve:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/instance(curve:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/instance(oid:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/instance(oid:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/instance(pem:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/instance(pem:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/makekeypair()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/makekeypair()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/multiplypoint(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/multiplypoint(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/name/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/negatepoint(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/negatepoint(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/oid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/oid/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/oid_2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/oid_2/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/oid_ec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/oid_ec/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/oid_p/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/oid_p/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/order/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/order/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/p/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/p/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/pem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/pem/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/domain/subtractpoints(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/domain/subtractpoints(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecarithmetic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecarithmetic/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp160r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp160r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp160t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp160t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp192r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp192r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp192t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp192t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp224r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp224r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp224t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp224t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp256r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp256r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp256t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp256t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp320r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp320r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp320t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp320t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp384r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp384r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp384t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp384t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp512r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp512r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/bp512t1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/bp512t1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec163k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec163k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec163r2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec163r2/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec192k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec192k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec192r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec192r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec224k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec224k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec224r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec224r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec233k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec233k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec233r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec233r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec256k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec256k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec256r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec256r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec283k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec283k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec283r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec283r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec384r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec384r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec409k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec409k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec409r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec409r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec521r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec521r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec571k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec571k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/ec571r1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/ec571r1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/eccurve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/eccurve/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/asn1structure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/asn1structure/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/authentication/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/authentication/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/decodepoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/decodepoint/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/domainparameter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/domainparameter/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/encodepoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/encodepoint/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/localizeddescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/localizeddescription/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/notenoughinput/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/notenoughinput/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/notoncurve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/notoncurve/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/padding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/padding/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/pemstructure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/pemstructure/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/privatekeyparameter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/privatekeyparameter/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/publickeyparameter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/publickeyparameter/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecexception/unknownoid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecexception/unknownoid/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/asn1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/der/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/der/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/derpkcs8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/derpkcs8/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/domain/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/init(der:password:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/init(der:password:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/init(der:pkcs8:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/init(der:pkcs8:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/init(domain:s:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/init(domain:s:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/init(pem:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/init(pem:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/init(pem:password:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/init(pem:password:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/pem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/pem/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/pempkcs8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/pempkcs8/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecprivatekey/s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecprivatekey/s/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/asn1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/der/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/der/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/domain/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/init(der:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/init(der:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/init(domain:w:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/init(domain:w:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/init(pem:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/init(pem:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/init(privatekey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/init(privatekey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/pem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/pem/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecpublickey/w/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecpublickey/w/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/asn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/asn1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/domain/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/init(asn1:domain:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/init(asn1:domain:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/init(domain:r:s:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/init(domain:r:s:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/r/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/ecsignature/s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/ecsignature/s/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/encryptdecrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/encryptdecrypt/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/encryptedkeys/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/encryptedkeys/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/keyagrement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/keyagrement/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/keymanagement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/keymanagement/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/performance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/performance/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/infinity-swift.property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/infinity-swift.property/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/init(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/init(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/x/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/x/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/point/y/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/point/y/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/references/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/references/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/description/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/init(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/init(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/init(_:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/init(_:_:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/k1/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/k2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/k2/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/k3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/k3/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/m/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/m/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/rp/p/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/rp/p/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftecc/signverify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/documentation/swiftecc/signverify/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/js/842.aeb682fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/842.aeb682fd.js -------------------------------------------------------------------------------- /docs/js/866.6e371bd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/866.6e371bd7.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.28579b4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/documentation-topic.28579b4f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/js/index.d2f6f6a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/index.d2f6f6a9.js -------------------------------------------------------------------------------- /docs/js/topic.24dedb87.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/topic.24dedb87.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.2d184ec0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/js/tutorials-overview.2d184ec0.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leif-ibsen/SwiftECC/HEAD/docs/metadata.json --------------------------------------------------------------------------------