Skip to content

Instantly share code, notes, and snippets.

View catriname's full-sized avatar

catriname

View GitHub Profile
@catriname
catriname / PayTrace Client Side Encryption (PHP, IIS)
Created March 18, 2017 18:57
PayTrace Client Side Encryption (PHP / IIS)
This is a quick for-developers-only guide of how to everything working from PHP (Windows native) to PayTrace’s API. I chose the Client Side Encryption as being our first time out, I am trying to duck some PCI compliance (Client Side Encryption is less strict). This assumes you know PHP, JS, JQuery, a little of what an API does, enough to paste some JSON together and of course your HTML, CSS, etc. You’re a developer, you have all the code provided open source, but this is a quick A-B-C of how I got it working on Windows (IIS7) and hurdles I ran into.
@catriname
catriname / LabelSize.cs
Last active October 31, 2016 14:19
Production Requests
using System;
using System.Collections.Generic;
namespace ProductionServices.Models
{
public partial class LabelSize
{
public int Id { get; set; }
public string Name { get; set; }
}