iyzipay-rust 0.1.2

iyzipay rust client
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod hash_test {
    use iyzipay_rust::hash::HashGenerator;

    #[test]
    fn should_generate_hash() {
        assert_eq!(
            "Cy84UuLZpfGhI7oaPD0Ckx1M0mo=",
            HashGenerator::generate_hash("apiKey", "secretKey", "random", "[data=value]")
        );
    }
}