files.com 1.0.264 → 1.0.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/as2_partner.md +2 -2
- data/lib/files.com/models/as2_partner.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db72f97f5c50d45af1ba2ffda8089503e3f2dc3f0cb441208851be1a81c87916
|
|
4
|
+
data.tar.gz: 35471750be051ca7abd9d92c8ba6ddc5a04e7f2a4345cf7cd94d829d732e5c6c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79af182d5bb3fcfe9dbb26201d339764373cb122f9d9382d55a9662c9ddf7365152dd3c8b3f7fc09fa2eb22100d507e5755940652f4afa65da176aaf0125dfb3
|
|
7
|
+
data.tar.gz: ddab423f75b5646667543a0e3d0a47f02ce4dcb0ad990e4f59d78ef7a343b9fb8b9c5355e6993fdd459f910802f6bcb7e235fe67da5605f5061d1e23cbe52fae
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.265
|
data/docs/as2_partner.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"server_certificate": "require_match",
|
|
12
12
|
"hex_public_certificate_serial": "A5:EB:C1:95:DC:D8:2B:E7",
|
|
13
13
|
"public_certificate_md5": "",
|
|
14
|
-
"
|
|
14
|
+
"public_certificate_subject": "",
|
|
15
15
|
"public_certificate_issuer": "",
|
|
16
16
|
"public_certificate_serial": "",
|
|
17
17
|
"public_certificate_not_before": "",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
* `server_certificate` (string): Remote server certificate security setting
|
|
27
27
|
* `hex_public_certificate_serial` (string): Serial of public certificate used for message security in hex format.
|
|
28
28
|
* `public_certificate_md5` (string): MD5 hash of public certificate used for message security.
|
|
29
|
-
* `
|
|
29
|
+
* `public_certificate_subject` (string): Subject of public certificate used for message security.
|
|
30
30
|
* `public_certificate_issuer` (string): Issuer of public certificate used for message security.
|
|
31
31
|
* `public_certificate_serial` (string): Serial of public certificate used for message security.
|
|
32
32
|
* `public_certificate_not_before` (string): Not before value of public certificate used for message security.
|
|
@@ -73,12 +73,12 @@ module Files
|
|
|
73
73
|
end
|
|
74
74
|
|
|
75
75
|
# string - Subject of public certificate used for message security.
|
|
76
|
-
def
|
|
77
|
-
@attributes[:
|
|
76
|
+
def public_certificate_subject
|
|
77
|
+
@attributes[:public_certificate_subject]
|
|
78
78
|
end
|
|
79
79
|
|
|
80
|
-
def
|
|
81
|
-
@attributes[:
|
|
80
|
+
def public_certificate_subject=(value)
|
|
81
|
+
@attributes[:public_certificate_subject] = value
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# string - Issuer of public certificate used for message security.
|