EtheaDev / Delphi-SAML

A SAML implementation for Delphi developers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Delphi SAML implementation

License

Delphi SAML is a SAML implementation written on top of xmlsec. The basic idea behind the code comes from samltools.

How to setup a service provider locally?

  • Clone the repo
  • Copy all the DLL in the Demos\bin folder (see installation)
  • Setup a loopback mapping to "sp.samltools.com". On windows:
    • Open C:\Windows\System32\drivers\etc\hosts
    • Add 127.0.0.1 sp.samltools.com
  • Compile Demos\SAML\SPDemo.dpr
  • Run it
  • Choose idp-auth0.ini in Identity Provider settings
  • Choose sp-samltest.ini in Serivce Provider settings
  • Click Open Browser and follow the instructions

Demo

SPDemo!

Installation

Download all zip files from https://www.zlatkovic.com/pub/libxml/ and extract all DLLs into the demos\bin folder.

  • libxmlsec.dll: main DLL
    • libxml2.dll: to handle XML
      • iconv.dll: to convert between charsets
    • libxmlsec-mscrypto.dll: if you want to use cryptographics functions from msCrypto (install msCrypto from MS)
    • libxmlsec-openssl.dll: or if you want to use cryptographics functions from OpenSSL
      • libeay32.dll
      • ssleay32.dll
    • zlib1.dll: compression... but I'm not sure who need it
    • libexslt.dll: xsl transformations (optional)
    • libxslt.dll: xsl transformations (optional)

If you want you can extract xmlsec.exe and openssl.exe. The first can be used to test XML signing and encryption, and the second to handle certificates and cryptography.

TODO

  • 📌 Better metadata support
  • 📌 Password protected certificate support
  • ✨ Identity provider implementation
  • ✨ Basic key format conversion (PEM, DER, ...)

Documentation

Delphi SAML consists of some modules:

  • The cryptographic units: used to handle signing and encryption
  • The SAML message units: to build request and parse response
  • The metadata unit: to read and write metadata
  • The demos: to see how Delphi SAML works

If you need more help you can read the API documentation.

License

Delphi SAML is released under the term of the Apache License. Here follows the licenses of all dependencies:

Library License Using with proprietary applications/libraries
xmlsec-core MIT license Yes
xmlsec-openssl OpenSSL License Yes
xmlsec-mscrypto Microsoft licensing: The libraries are part of MS Windows, and are also distributed with Internet Explorer. Unknown
libxml2 MIT license Yes
iconv LGPL Yes
openssl Apache-2.0 license Yes
zlib1 Zlib license Yes
libexslt MIT License Yes
libxslt MIT License Yes

Resources

SAML documentation:

XML-Sec API:

Resources:

Generate the keys

If you want to sign you request you need a private and a public key. You can generate both with this command:

keygen.bat -h sp.samltools.com -e urn:msingh.samltools:sp -y 10

See command line for further detail.

About

A SAML implementation for Delphi developers

License:Apache License 2.0


Languages

Language:Pascal 100.0%