diff --git a/README.md b/README.md index 8c48dacd..2cf6981c 100644 --- a/README.md +++ b/README.md @@ -241,16 +241,20 @@ In the directory src/test/fixture/sdkintegration/e2e-2Orgs/channel The command used to generate end2end `crypto-config` artifacts:
- ```build/bin/cryptogen generate --config crypto-config.yaml --output=crypto-config``` + v1.0 ```build/bin/cryptogen generate --config crypto-config.yaml --output=crypto-config``` + + v1.1 ```cryptogen generate --config crypto-config.yaml --output=v1.1/crypto-config``` For ease of assigning ports and mapping of artifacts to physical files, all peers, orderers, and fabric-ca are run as Docker containers controlled via a docker-compose configuration file. The files used by the end to end are: - * _src/test/fixture/sdkintegration/e2e-2Orgs/channel_ (everything needed to bootstrap the orderer and create the channels) - * _src/test/fixture/sdkintegration/e2e-2Orgs/crypto-config_ (as-is. Used by `configtxgen` and `docker-compose` to map the MSP directories) + * _src/test/fixture/sdkintegration/e2e-2Orgs/vX.0_ (everything needed to bootstrap the orderer and create the channels) + * _src/test/fixture/sdkintegration/e2e-2Orgs/vX.0crypto-config_ (as-is. Used by `configtxgen` and `docker-compose` to map the MSP directories) * _src/test/fixture/sdkintegration/docker-compose.yaml_ + + The end to end test case artifacts are stored under the directory _src/test/fixture/sdkintegration/e2e-2Org/channel_ . ### TLS connection to Orderer and Peers @@ -297,25 +301,31 @@ and one file in the _src/test/fixture/sdkintegration/e2e-2Orgs/channel_ director section to be true. The `signed-by` references an identity in the identities section. ### Channel creation artifacts -Channel configuration files and orderer bootstrap files ( see directory _src/test/fixture/sdkintegration/e2e-2Orgs/channel_ ) are needed when creating a new channel. -This is created with the Hyperledger Fabric `configtxgen` tool. +Channel configuration files and orderer bootstrap files ( see directory _src/test/fixture/sdkintegration/e2e-2Orgs_ ) are needed when creating a new channel. +This is created with the Hyperledger Fabric `configtxgen` tool. This must be run after `cryptogen` and the directory you're +running in **must** have a generated `crypto-config` directory. + +If `build/bin/configtxgen` tool is not present run `make configtxgen` -For End2endIT.java the commands are +For v1.0 integration test the commands are: * build/bin/configtxgen -outputCreateChannelTx foo.tx -profile TwoOrgsChannel -channelID foo * build/bin/configtxgen -outputCreateChannelTx bar.tx -profile TwoOrgsChannel -channelID bar - * build/bin/configtxgen -outputBlock orderer.block -profile TwoOrgsOrdererGenesis -with the configtxgen config file _src/test/fixture/sdkintegration/e2e-2Orgs/channel/configtx.yaml_ +For v1.1 integration the commands use the v11 profiles in configtx.yaml. + You need to for now copy the configtx.yaml in `e2e-20orgs` to the v1.1 directory and run from there: + * configtxgen -outputBlock orderer.block -profile TwoOrgsOrdererGenesis_v11 + * configtxgen -outputCreateChannelTx bar.tx -profile TwoOrgsChannel_v11 -channelID bar + * configtxgen -outputCreateChannelTx foo.tx -profile TwoOrgsChannel_v11 -channelID foo + + This should produce in the `v1.1` directory: bar.tx,foo.tx, orderer.block + + **Note:** The above describes how this was done. If you redo this there are private key files + which are produced with uniqe names which won't match what's expected in the integration tests. + One examle of this is the docker-compose.yaml (search for **_sk**) -If `build/bin/configtxgen` tool is not present run `make configtxgen` -Before running the end to end test case: - * you may need to modify `configtx.yaml` to change all hostname and port definitions to match -your server(s) hostname(s) and port(s). - * you **WILL** have to modify `configtx.yaml` to have the _MSPDir_ point to the correct path to the _crypto-config_ directories. - * `configtx.yaml` currently assumes that you are running in a Vagrant environment where the fabric, fabric-ca and fabric-sdk-java projects exist under the _/opt/gopath/src/github.com/hyperledger_ directory. ### GO Lang chaincode Go lang chaincode dependencies must be contained in vendor folder. diff --git a/src/main/java/org/hyperledger/fabric_ca/sdk/HFCAClient.java b/src/main/java/org/hyperledger/fabric_ca/sdk/HFCAClient.java index f24f6d51..3f1735a6 100644 --- a/src/main/java/org/hyperledger/fabric_ca/sdk/HFCAClient.java +++ b/src/main/java/org/hyperledger/fabric_ca/sdk/HFCAClient.java @@ -97,7 +97,6 @@ import org.hyperledger.fabric.sdk.helper.Utils; import org.hyperledger.fabric.sdk.security.CryptoPrimitives; import org.hyperledger.fabric.sdk.security.CryptoSuite; -import org.hyperledger.fabric_ca.sdk.HFCAAffiliation.HFCAAffiliationResp; import org.hyperledger.fabric_ca.sdk.exception.AffiliationException; import org.hyperledger.fabric_ca.sdk.exception.EnrollmentException; import org.hyperledger.fabric_ca.sdk.exception.GenerateCRLException; @@ -168,6 +167,8 @@ public class HFCAClient { */ public static final String HFCA_ATTRIBUTE_HFGENCRL = "hf.GenCRL"; + private static final Config config = Config.getConfig(); // DO NOT REMOVE THIS IS NEEDED TO MAKE SURE WE FIRST LOAD CONFIG!!! + private static final Log logger = LogFactory.getLog(HFCAClient.class); static final String FABRIC_CA_REQPROP = "caname"; diff --git a/src/main/java/org/hyperledger/fabric_ca/sdk/RegistrationRequest.java b/src/main/java/org/hyperledger/fabric_ca/sdk/RegistrationRequest.java index 5bc2ca55..f256001d 100644 --- a/src/main/java/org/hyperledger/fabric_ca/sdk/RegistrationRequest.java +++ b/src/main/java/org/hyperledger/fabric_ca/sdk/RegistrationRequest.java @@ -34,7 +34,7 @@ public class RegistrationRequest { // The enrollment ID of the user private String enrollmentID; // Type of identity - private String type = "user"; + private String type = HFCAClient.HFCA_TYPE_CLIENT; // Optional secret private String secret; // Maximum number of enrollments with the secret diff --git a/src/test/cirun.sh b/src/test/cirun.sh index 401da916..df1f12ce 100755 --- a/src/test/cirun.sh +++ b/src/test/cirun.sh @@ -28,12 +28,18 @@ export ORG_HYPERLEDGER_FABRIC_SDK_CHANNEL_GENESISBLOCK_WAIT_TIME=180000 ORG_HYPERLEDGER_FABRIC_SDKTEST_VERSION=${ORG_HYPERLEDGER_FABRIC_SDKTEST_VERSION:-} if [ "$ORG_HYPERLEDGER_FABRIC_SDKTEST_VERSION" == "1.0.0" ]; then +# Limit the test run for V1.0 export ORG_HYPERLEDGER_FABRIC_SDKTEST_ITSUITE="-Dorg.hyperledger.fabric.sdktest.ITSuite=IntegrationSuiteV1.java" +#Options starting fabric-ca in docker-compose.yaml which are not supported on v1.0 export V11_IDENTITIES_ALLOWREMOVE="" export V11_AFFILIATIONS_ALLOWREMOVE="" +#set which images we pull for docker-compose.yaml when starting Fabric. export IMAGE_TAG_FABRIC=:x86_64-1.0.0 export IMAGE_TAG_FABRIC_CA=:x86_64-1.0.0 +# set which Fabric generated configuations is used. +export FAB_CONFIG_GEN_VERS="v1.0" else +#everythign just defaults for latest (v1.1) export ORG_HYPERLEDGER_FABRIC_SDKTEST_ITSUITE="" #unset to use what's in docker's .env file. unset IMAGE_TAG_FABRIC diff --git a/src/test/fixture/sdkintegration/.env b/src/test/fixture/sdkintegration/.env index cebc9abc..a1905d35 100644 --- a/src/test/fixture/sdkintegration/.env +++ b/src/test/fixture/sdkintegration/.env @@ -15,5 +15,7 @@ ORG_HYPERLEDGER_FABRIC_SDKTEST_INTEGRATIONTESTS_CA_TLS= #IMAGE_TAG_FABRIC_CA=:x86_64-1.1.0-alpha IMAGE_TAG_FABRIC= IMAGE_TAG_FABRIC_CA= +#FAB_CONFIG_GEN_VERS=v1.0 +FAB_CONFIG_GEN_VERS=v1.1 V11_IDENTITIES_ALLOWREMOVE=--cfg.identities.allowremove V11_AFFILIATIONS_ALLOWREMOVE=--cfg.affiliations.allowremove diff --git a/src/test/fixture/sdkintegration/docker-compose.yaml b/src/test/fixture/sdkintegration/docker-compose.yaml index 3a9b4a9d..753b77e1 100644 --- a/src/test/fixture/sdkintegration/docker-compose.yaml +++ b/src/test/fixture/sdkintegration/docker-compose.yaml @@ -15,7 +15,7 @@ services: command: sh -c 'fabric-ca-server start -n ca0 ${V11_IDENTITIES_ALLOWREMOVE} ${V11_AFFILIATIONS_ALLOWREMOVE} --registry.maxenrollments -1 --ca.certfile /etc/hyperledger/fabric-ca-server-config/ca.org1.example.com-cert.pem --ca.keyfile /etc/hyperledger/fabric-ca-server-config/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk -b admin:adminpw ${ORG_HYPERLEDGER_FABRIC_SDKTEST_INTEGRATIONTESTS_CA_TLS} --tls.certfile /etc/hyperledger/fabric-ca-server-config/ca.org1.example.com-cert.pem --tls.keyfile /etc/hyperledger/fabric-ca-server-config/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk -d' volumes: - - ./e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/ca/:/etc/hyperledger/fabric-ca-server-config:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/peerOrganizations/org1.example.com/ca/:/etc/hyperledger/fabric-ca-server-config:ro container_name: ca_peerOrg1 ca1: @@ -26,7 +26,7 @@ services: - "8054:7054" command: sh -c 'fabric-ca-server start --registry.maxenrollments -1 --ca.certfile /etc/hyperledger/fabric-ca-server-config/ca.org2.example.com-cert.pem --ca.keyfile /etc/hyperledger/fabric-ca-server-config/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk -b admin:adminpw ${ORG_HYPERLEDGER_FABRIC_SDKTEST_INTEGRATIONTESTS_CA_TLS} --tls.certfile /etc/hyperledger/fabric-ca-server-config/ca.org2.example.com-cert.pem --tls.keyfile /etc/hyperledger/fabric-ca-server-config/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk -d' volumes: - - ./e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/ca/:/etc/hyperledger/fabric-ca-server-config:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/peerOrganizations/org2.example.com/ca/:/etc/hyperledger/fabric-ca-server-config:ro container_name: ca_peerOrg2 @@ -44,14 +44,14 @@ services: - ORDERER_GENERAL_TLS_PRIVATEKEY=/etc/hyperledger/msp/orderer/tls/server.key - ORDERER_GENERAL_TLS_CERTIFICATE=/etc/hyperledger/msp/orderer/tls/server.crt - ORDERER_GENERAL_TLS_ROOTCAS=[/etc/hyperledger/msp/orderer/tls/ca.crt] -# - ORDERER_GENERAL_TLS_ROOTCAS=[/etc/hyperledger/msp/orderer/tls/ca.crt, /etc/hyperledger/msp/peer0Org1/tls/ca.crt, /etc/hyperledger/msp/peer1Org1/tls/ca.crt, /etc/hyperledger/msp/peer0Org2/tls/ca.crt, /etc/hyperledger/msp/peer1Org2/tls/ca.crt] - GRPC_TRACE=all=true, - GRPC_VERBOSITY=debug + - ORDERER_GENERAL_AUTHENTICATION_TIMEWINDOW=3600s #Not for production -- remove. working_dir: /opt/gopath/src/github.com/hyperledger/fabric command: orderer volumes: - - ./e2e-2Orgs/channel:/etc/hyperledger/configtx:ro - - ./e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/:/etc/hyperledger/msp/orderer:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}:/etc/hyperledger/configtx:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/:/etc/hyperledger/msp/orderer:ro ports: - 7050:7050 @@ -68,7 +68,7 @@ services: - CORE_PEER_LOCALMSPID=Org1MSP volumes: - /var/run/:/host/var/run/ - - ./e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/:/etc/hyperledger/msp/peer:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/:/etc/hyperledger/msp/peer:ro ports: - 7051:7051 - 7053:7053 @@ -88,7 +88,7 @@ services: - CORE_PEER_LOCALMSPID=Org1MSP volumes: - /var/run/:/host/var/run/ - - ./e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/:/etc/hyperledger/msp/peer:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/:/etc/hyperledger/msp/peer:ro ports: - 7056:7051 - 7058:7053 @@ -109,7 +109,7 @@ services: - CORE_PEER_LOCALMSPID=Org2MSP volumes: - /var/run/:/host/var/run/ - - ./e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/:/etc/hyperledger/msp/peer:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/:/etc/hyperledger/msp/peer:ro ports: - 8051:7051 - 8053:7053 @@ -129,7 +129,7 @@ services: - CORE_PEER_LOCALMSPID=Org2MSP volumes: - /var/run/:/host/var/run/ - - ./e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/:/etc/hyperledger/msp/peer:ro + - ./e2e-2Orgs/${FAB_CONFIG_GEN_VERS}/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/:/etc/hyperledger/msp/peer:ro ports: - 8056:7051 - 8058:7053 diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/configtx.yaml b/src/test/fixture/sdkintegration/e2e-2Orgs/channel/configtx.yaml deleted file mode 100644 index 5bc6e609..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/configtx.yaml +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright IBM Corp. All Rights Reserved. -# -# SPDX-License-Identifier: Apache-2.0 -# - ---- -################################################################################ -# -# Profile -# -# - Different configuration profiles may be encoded here to be specified -# as parameters to the configtxgen tool -# -################################################################################ -Profiles: - - TwoOrgsOrdererGenesis: - Orderer: - <<: *OrdererDefaults - Organizations: - - *OrdererOrg - Consortiums: - SampleConsortium: - Organizations: - - *Org1 - - *Org2 - TwoOrgsChannel: - Consortium: SampleConsortium - Application: - <<: *ApplicationDefaults - Organizations: - - *Org1 - - *Org2 - -################################################################################ -# -# Section: Organizations -# -# - This section defines the different organizational identities which will -# be referenced later in the configuration. -# -################################################################################ -Organizations: - - # SampleOrg defines an MSP using the sampleconfig. It should never be used - # in production but may be used as a template for other definitions - - &OrdererOrg - # DefaultOrg defines the organization which is used in the sampleconfig - # of the fabric.git development environment - Name: OrdererOrg - - # ID to load the MSP definition as - ID: OrdererMSP - - # MSPDir is the filesystem path which contains the MSP configuration - MSPDir: crypto-config/ordererOrganizations/example.com/msp - - - &Org1 - # DefaultOrg defines the organization which is used in the sampleconfig - # of the fabric.git development environment - Name: Org1MSP - - # ID to load the MSP definition as - ID: Org1MSP - - MSPDir: crypto-config/peerOrganizations/org1.example.com/msp - - AnchorPeers: - # AnchorPeers defines the location of peers which can be used - # for cross org gossip communication. Note, this value is only - # encoded in the genesis block in the Application section context - - Host: peer0.org1.example.com - Port: 7051 - - - &Org2 - # DefaultOrg defines the organization which is used in the sampleconfig - # of the fabric.git development environment - Name: Org2MSP - - # ID to load the MSP definition as - ID: Org2MSP - - MSPDir: crypto-config/peerOrganizations/org2.example.com/msp - - AnchorPeers: - # AnchorPeers defines the location of peers which can be used - # for cross org gossip communication. Note, this value is only - # encoded in the genesis block in the Application section context - - Host: peer0.org2.example.com - Port: 7051 - -################################################################################ -# -# SECTION: Orderer -# -# - This section defines the values to encode into a config transaction or -# genesis block for orderer related parameters -# -################################################################################ -Orderer: &OrdererDefaults - - # Orderer Type: The orderer implementation to start - # Available types are "solo" and "kafka" - OrdererType: solo - - Addresses: - - orderer.example.com:7050 - - # Batch Timeout: The amount of time to wait before creating a batch - BatchTimeout: 2s - - # Batch Size: Controls the number of messages batched into a block - BatchSize: - - # Max Message Count: The maximum number of messages to permit in a batch - MaxMessageCount: 10 - - # Absolute Max Bytes: The absolute maximum number of bytes allowed for - # the serialized messages in a batch. - AbsoluteMaxBytes: 98 MB - - # Preferred Max Bytes: The preferred maximum number of bytes allowed for - # the serialized messages in a batch. A message larger than the preferred - # max bytes will result in a batch larger than preferred max bytes. - PreferredMaxBytes: 512 KB - - Kafka: - # Brokers: A list of Kafka brokers to which the orderer connects - # NOTE: Use IP:port notation - Brokers: - - 127.0.0.1:9092 - - # Organizations is the list of orgs which are defined as participants on - # the orderer side of the network - Organizations: - -################################################################################ -# -# SECTION: Application -# -# - This section defines the values to encode into a config transaction or -# genesis block for application related parameters -# -################################################################################ -Application: &ApplicationDefaults - - # Organizations is the list of orgs which are defined as participants on - # the application side of the network - Organizations: diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.json b/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.json deleted file mode 100755 index 5bec7fad..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "name": "global-trade-network", - "x-type": "hlfv1", - "description": "The network to be in if you want to stay in the global trade business", - "version": "1.0.0", - "client": { - "organization": "Org1", - "credentialStore": { - "path": "/tmp/hfc-kvs", - "cryptoStore": { - "path": "/tmp/hfc-cvs" - }, - "wallet": "wallet-name" - } - }, - "channels": { - "mychannel": { - "orderers": [ - "orderer.example.com" - ], - "peers": { - "peer0.org1.example.com": { - "endorsingPeer": true, - "chaincodeQuery": true, - "ledgerQuery": true, - "eventSource": true - }, - "peer0.org2.example.com": { - "endorsingPeer": true, - "chaincodeQuery": false, - "ledgerQuery": true, - "eventSource": false - } - }, - "chaincodes": [ - "example02:v1", - "marbles:1.0" - ] - } - }, - "organizations": { - "Org1": { - "mspid": "Org1MSP", - "peers": [ - "peer0.org1.example.com", - "peer1.org1.example.com" - ], - "certificateAuthorities": [ - "ca-org1" - ], - "adminPrivateKey": { - "pem": "-----BEGIN PRIVATE KEY-----\nMIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQghnA7rdgbZi/wndusiXjyf0KgE6OKZjQ+5INjwelRAC6hRANCAASb3u+hY+U/FZvhYDN6d08HJ1v56UJUyz/n2NHyJgTg6kC05AaJMeGIinEF0JeJtRDNVQGzoQJQYjnzUTS9FvGh\n-----END PRIVATE KEY-----" - }, - "signedCert": { - "path": "src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem" - } - }, - "Org2": { - "mspid": "Org2MSP", - "peers": [ - "peer0.org2.example.com" - ] - } - }, - "orderers": { - "orderer.example.com": { - "url": "grpcs://localhost:7050", - "grpcOptions": { - "ssl-target-name-override": "orderer.example.com", - "grpc-max-send-message-length": 15 - }, - "tlsCACerts": { - "pem": "-----BEGIN CERTIFICATE----- " - } - } - }, - "peers": { - "peer0.org1.example.com": { - "url": "grpcs://localhost:7051", - "eventUrl": "grpcs://localhost:7053", - "grpcOptions": { - "ssl-target-name-override": "peer0.org1.example.com", - "grpc.http2.keepalive_time": 15 - }, - "tlsCACerts": { - "path": "src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt" - } - }, - "peer0.org2.example.com": { - "url": "grpcs://localhost:8051", - "eventUrl": "grpcs://localhost:8053", - "grpcOptions": { - "ssl-target-name-override": "peer0.org2.example.com" - }, - "tlsCACerts": { - "path": "src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt" - } - } - }, - "certificateAuthorities": { - "ca-org1": { - "url": "https://localhost:7054", - "httpOptions": { - "verify": true - }, - "tlsCACerts": { - "path": "peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem" - }, - "registrar": [ - { - "enrollId": "admin", - "enrollSecret": "adminpw" - } - ], - "caName": "caNameHere" - } - } -} \ No newline at end of file diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/configtx.yaml b/src/test/fixture/sdkintegration/e2e-2Orgs/configtx.yaml new file mode 100644 index 00000000..7308091c --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/configtx.yaml @@ -0,0 +1,268 @@ +# Copyright IBM Corp. All Rights Reserved. +# +# SPDX-License-Identifier: Apache-2.0 +# + +--- +################################################################################ +# +# Profile +# +# - Different configuration profiles may be encoded here to be specified +# as parameters to the configtxgen tool +# +################################################################################ +Profiles: + + TwoOrgsOrdererGenesis: + Orderer: + <<: *OrdererDefaults + Organizations: + - *OrdererOrg + Consortiums: + SampleConsortium: + Organizations: + - *Org1 + - *Org2 + + TwoOrgsChannel: + Consortium: SampleConsortium + Application: + <<: *ApplicationDefaults + Organizations: + - *Org1 + - *Org2 + +################################################################################ +# +# Profile for v1.1 capabilities +# +# - Different configuration profiles may be encoded here to be specified +# as parameters to the configtxgen tool +# +################################################################################ + + + TwoOrgsOrdererGenesis_v11: + Capabilities: + <<: *ChannelCapabilities + Orderer: + <<: *OrdererDefaults + Organizations: + - *OrdererOrg + Capabilities: + <<: *OrdererCapabilities + Consortiums: + SampleConsortium: + Organizations: + - *Org1 + - *Org2 + + TwoOrgsChannel_v11: + Consortium: SampleConsortium + Application: + <<: *ApplicationDefaults + Organizations: + - *Org1 + - *Org2 + Capabilities: + <<: *ApplicationCapabilities + +################################################################################ +# +# ORGANIZATIONS +# +# This section defines the organizational identities that can be referenced +# in the configuration profiles. +# +################################################################################ +Organizations: + + # SampleOrg defines an MSP using the sampleconfig. It should never be used + # in production but may be used as a template for other definitions + - &OrdererOrg + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: OrdererOrg + + # ID to load the MSP definition as + ID: OrdererMSP + + # MSPDir is the filesystem path which contains the MSP configuration + MSPDir: crypto-config/ordererOrganizations/example.com/msp + +# # AdminPrincipal dictates the type of principal used for an +# # organization's Admins policy. Today, only the values of Role.ADMIN and +# # Role.MEMBER are accepted, which indicates a principal of role type +# # ADMIN and role type MEMBER respectively. +# AdminPrincipal: Role.ADMIN + + - &Org1 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org1MSP + + # ID to load the MSP definition as + ID: Org1MSP + + MSPDir: crypto-config/peerOrganizations/org1.example.com/msp + + AnchorPeers: + # AnchorPeers defines the location of peers which can be used + # for cross org gossip communication. Note, this value is only + # encoded in the genesis block in the Application section context + - Host: peer0.org1.example.com + Port: 7051 + + - &Org2 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org2MSP + + # ID to load the MSP definition as + ID: Org2MSP + + MSPDir: crypto-config/peerOrganizations/org2.example.com/msp + + AnchorPeers: + # AnchorPeers defines the location of peers which can be used + # for cross org gossip communication. Note, this value is only + # encoded in the genesis block in the Application section context + - Host: peer0.org2.example.com + Port: 7051 + +################################################################################ +# +# ORDERER +# +# This section defines the values to encode into a config transaction or +# genesis block for orderer related parameters. +# +################################################################################ +Orderer: &OrdererDefaults + + # Orderer Type: The orderer implementation to start. + # Available types are "solo" and "kafka". + OrdererType: solo + + Addresses: + - orderer.example.com:7050 + + # Batch Timeout: The amount of time to wait before creating a batch. + BatchTimeout: 2s + + # Batch Size: Controls the number of messages batched into a block. + BatchSize: + + # Max Message Count: The maximum number of messages to permit in a + # batch. + MaxMessageCount: 10 + + # Absolute Max Bytes: The absolute maximum number of bytes allowed for + # the serialized messages in a batch. If the "kafka" OrdererType is + # selected, set 'message.max.bytes' and 'replica.fetch.max.bytes' on + # the Kafka brokers to a value that is larger than this one. + AbsoluteMaxBytes: 10 MB + + # Preferred Max Bytes: The preferred maximum number of bytes allowed + # for the serialized messages in a batch. A message larger than the + # preferred max bytes will result in a batch larger than preferred max + # bytes. + PreferredMaxBytes: 512 KB + + # Max Channels is the maximum number of channels to allow on the ordering + # network. When set to 0, this implies no maximum number of channels. + MaxChannels: 0 + +# Kafka: +# # Brokers: A list of Kafka brokers to which the orderer connects. Edit +# # this list to identify the brokers of the ordering service. +# # NOTE: Use IP:port notation. +# Brokers: +# - kafka0:9092 +# - kafka1:9092 +# - kafka2:9092 + + # Organizations lists the orgs participating on the orderer side of the + # network. + Organizations: + +################################################################################ +# +# APPLICATION +# +# This section defines the values to encode into a config transaction or +# genesis block for application-related parameters. +# +################################################################################ +Application: &ApplicationDefaults + + # Organizations lists the orgs participating on the application side of the + # network. + Organizations: + +################################################################################ +# +# CAPABILITIES +# +# This section defines the capabilities of fabric network. This is a new +# concept as of v1.1.0 and should not be utilized in mixed networks with +# v1.0.x peers and orderers. Capabilities define features which must be +# present in a fabric binary for that binary to safely participate in the +# fabric network. For instance, if a new MSP type is added, newer binaries +# might recognize and validate the signatures from this type, while older +# binaries without this support would be unable to validate those +# transactions. This could lead to different versions of the fabric binaries +# having different world states. Instead, defining a capability for a channel +# informs those binaries without this capability that they must cease +# processing transactions until they have been upgraded. For v1.0.x if any +# capabilities are defined (including a map with all capabilities turned off) +# then the v1.0.x peer will deliberately crash. +# +################################################################################ +Capabilities: + # Channel capabilities apply to both the orderers and the peers and must be + # supported by both. Set the value of the capability to true to require it. + Channel: &ChannelCapabilities + # V1.1 for Channel is a catchall flag for behavior which has been + # determined to be desired for all orderers and peers running v1.0.x, + # but the modification of which would cause incompatibilities. Users + # should leave this flag set to true. + V1_1: true + + # Orderer capabilities apply only to the orderers, and may be safely + # manipulated without concern for upgrading peers. Set the value of the + # capability to true to require it. + Orderer: &OrdererCapabilities + # V1.1 for Order is a catchall flag for behavior which has been + # determined to be desired for all orderers running v1.0.x, but the + # modification of which would cause incompatibilities. Users should + # leave this flag set to true. + V1_1: true + + # Application capabilities apply only to the peer network, and may be + # safely manipulated without concern for upgrading orderers. Set the value + # of the capability to true to require it. + Application: &ApplicationCapabilities + # V1.1 for Application is a catchall flag for behavior which has been + # determined to be desired for all peers running v1.0.x, but the + # modification of which would cause incompatibilities. Users should + # leave this flag set to true. + V1_1: true + # V1_1_PVTDATA_EXPERIMENTAL is an Application capability to enable the + # private data capability. It is only supported when using peers built + # with experimental build tag. When set to true, private data + # collections can be configured upon chaincode instantiation and + # utilized within chaincode Invokes. + # NOTE: Use of this feature with non "experimental" binaries on the + # network may cause a fork. + V1_1_PVTDATA_EXPERIMENTAL: false + # V1_1_RESOURCETREE_EXPERIMENTAL is an Application capability to enable + # the resources capability. Currently this is needed for defining + # resource-based access control (RBAC). RBAC helps set fine-grained + # access control on system resources such as the endorser and various + # system chaincodes. Default is v1.0-based access control based on + # CHANNEL_READERS and CHANNEL_WRITERS. + # NOTE: Use of this feature with non "experimental" binaries on + # the network may cause a fork. + V1_1_RESOURCETREE_EXPERIMENTAL: false diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config.yaml b/src/test/fixture/sdkintegration/e2e-2Orgs/crypto-config.yaml similarity index 92% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config.yaml rename to src/test/fixture/sdkintegration/e2e-2Orgs/crypto-config.yaml index f5a66e94..c0896706 100644 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config.yaml +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/crypto-config.yaml @@ -1,9 +1,8 @@ - -# # Copyright IBM Corp. All Rights Reserved. # # SPDX-License-Identifier: Apache-2.0 # + # --------------------------------------------------------------------------- # "OrdererOrgs" - Definition of organizations managing orderer nodes # --------------------------------------------------------------------------- @@ -13,13 +12,15 @@ OrdererOrgs: # --------------------------------------------------------------------------- - Name: Orderer Domain: example.com - + CA: + Country: US + Province: California + Locality: San Francisco # --------------------------------------------------------------------------- # "Specs" - See PeerOrgs below for complete description # --------------------------------------------------------------------------- Specs: - Hostname: orderer - # --------------------------------------------------------------------------- # "PeerOrgs" - Definition of organizations managing peer nodes # --------------------------------------------------------------------------- @@ -29,7 +30,11 @@ PeerOrgs: # --------------------------------------------------------------------------- - Name: Org1 Domain: org1.example.com - + # EnableNodeOUs: true + CA: + Country: US + Province: California + Locality: San Francisco # --------------------------------------------------------------------------- # "Specs" # --------------------------------------------------------------------------- @@ -51,7 +56,6 @@ PeerOrgs: # CommonName: foo27.org5.example.com # overrides Hostname-based FQDN set above # - Hostname: bar # - Hostname: baz - # --------------------------------------------------------------------------- # "Template" # --------------------------------------------------------------------------- @@ -68,7 +72,6 @@ PeerOrgs: Count: 2 # Start: 5 # Hostname: {{.Prefix}}{{.Index}} # default - # --------------------------------------------------------------------------- # "Users" # --------------------------------------------------------------------------- @@ -76,12 +79,16 @@ PeerOrgs: # --------------------------------------------------------------------------- Users: Count: 1 - # --------------------------------------------------------------------------- # Org2: See "Org1" for full specification # --------------------------------------------------------------------------- - Name: Org2 Domain: org2.example.com + # EnableNodeOUs: true + CA: + Country: US + Province: California + Locality: San Francisco Template: Count: 2 Users: diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg1/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg1/cert.pem deleted file mode 100644 index d0431215..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg1/cert.pem +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICjjCCAjWgAwIBAgIUb+pBomHSL8C01Cnu3EIn5EOF2YUwCgYIKoZIzj0EAwIw -fzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNh -biBGcmFuY2lzY28xHzAdBgNVBAoTFkludGVybmV0IFdpZGdldHMsIEluYy4xDDAK -BgNVBAsTA1dXVzEUMBIGA1UEAxMLZXhhbXBsZS5jb20wHhcNMTYxMjE1MTUwMjAw -WhcNMTcxMjE1MTUwMjAwWjB3MQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGgg -Q2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxGzAZBgNVBAoTEkh5cGVybGVkZ2Vy -IEZhYnJpYzEMMAoGA1UECxMDQ09QMRIwEAYDVQQDEwlsb2NhbGhvc3QwWTATBgcq -hkjOPQIBBggqhkjOPQMBBwNCAASuHvMFzxg8Wd28v/wFIZdeeDZ1uBh209PxLxr3 -N3CEVMpiQ0th2yJjp6p9ps9b1bVKBK1ARoPDRjdUiTewtdqWo4GWMIGTMA4GA1Ud -DwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0T -AQH/BAIwADAdBgNVHQ4EFgQU2zKxG8Oe8mstbsLmRMtBrXFgBXkwHwYDVR0jBBgw -FoAUF2dCPaqegj/ExR2fW8OZ0bWcSBAwFAYDVR0RBA0wC4IJbG9jYWxob3N0MAoG -CCqGSM49BAMCA0cAMEQCIB4h/Z42OxiK9bZIpGKq5OIY7XUyoPMtcMqwJwWKgKJv -AiAospIN21TgdjZYmzFIVklLOvzAtoCPjF0WQZ+NYFQGZw== ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg1/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg1/key.pem deleted file mode 100644 index 34b5bcf8..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg1/key.pem +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN EC PRIVATE KEY----- -MHcCAQEEIM10+hjgrRHJCJBp8YC4SmyEVExM/VUtvS48BrY2GH+DoAoGCCqGSM49 -AwEHoUQDQgAErh7zBc8YPFndvL/8BSGXXng2dbgYdtPT8S8a9zdwhFTKYkNLYdsi -Y6eqfabPW9W1SgStQEaDw0Y3VIk3sLXalg== ------END EC PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg2/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg2/cert.pem deleted file mode 100644 index d0431215..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg2/cert.pem +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICjjCCAjWgAwIBAgIUb+pBomHSL8C01Cnu3EIn5EOF2YUwCgYIKoZIzj0EAwIw -fzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNh -biBGcmFuY2lzY28xHzAdBgNVBAoTFkludGVybmV0IFdpZGdldHMsIEluYy4xDDAK -BgNVBAsTA1dXVzEUMBIGA1UEAxMLZXhhbXBsZS5jb20wHhcNMTYxMjE1MTUwMjAw -WhcNMTcxMjE1MTUwMjAwWjB3MQswCQYDVQQGEwJVUzEXMBUGA1UECBMOTm9ydGgg -Q2Fyb2xpbmExEDAOBgNVBAcTB1JhbGVpZ2gxGzAZBgNVBAoTEkh5cGVybGVkZ2Vy -IEZhYnJpYzEMMAoGA1UECxMDQ09QMRIwEAYDVQQDEwlsb2NhbGhvc3QwWTATBgcq -hkjOPQIBBggqhkjOPQMBBwNCAASuHvMFzxg8Wd28v/wFIZdeeDZ1uBh209PxLxr3 -N3CEVMpiQ0th2yJjp6p9ps9b1bVKBK1ARoPDRjdUiTewtdqWo4GWMIGTMA4GA1Ud -DwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0T -AQH/BAIwADAdBgNVHQ4EFgQU2zKxG8Oe8mstbsLmRMtBrXFgBXkwHwYDVR0jBBgw -FoAUF2dCPaqegj/ExR2fW8OZ0bWcSBAwFAYDVR0RBA0wC4IJbG9jYWxob3N0MAoG -CCqGSM49BAMCA0cAMEQCIB4h/Z42OxiK9bZIpGKq5OIY7XUyoPMtcMqwJwWKgKJv -AiAospIN21TgdjZYmzFIVklLOvzAtoCPjF0WQZ+NYFQGZw== ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg2/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg2/key.pem deleted file mode 100644 index 34b5bcf8..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/cas/peerOrg2/key.pem +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN EC PRIVATE KEY----- -MHcCAQEEIM10+hjgrRHJCJBp8YC4SmyEVExM/VUtvS48BrY2GH+DoAoGCCqGSM49 -AwEHoUQDQgAErh7zBc8YPFndvL/8BSGXXng2dbgYdtPT8S8a9zdwhFTKYkNLYdsi -Y6eqfabPW9W1SgStQEaDw0Y3VIk3sLXalg== ------END EC PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/ca-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/ca-cert.pem deleted file mode 100644 index 68ac637e..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/ca-cert.pem +++ /dev/null @@ -1,78 +0,0 @@ -Certificate: - Data: - Version: 3 (0x2) - Serial Number: 10003212956370811117 (0x8ad28d2f3d1138ed) - Signature Algorithm: sha256WithRSAEncryption - Issuer: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Validity - Not Before: Mar 29 07:31:55 2017 GMT - Not After : Mar 28 07:31:55 2020 GMT - Subject: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Subject Public Key Info: - Public Key Algorithm: rsaEncryption - Public-Key: (2048 bit) - Modulus: - 00:c4:60:f4:4b:c4:6a:09:78:d4:90:d4:74:b5:99: - 91:2e:e0:44:2d:08:64:7f:f8:62:e1:08:a0:07:12: - c1:d4:d8:cd:79:71:ac:cc:6a:b7:c7:ec:c6:58:12: - 33:b1:41:6d:03:7b:fd:98:28:fc:de:90:f9:4a:0e: - a9:ee:45:aa:03:0d:a0:e4:80:b5:9c:8b:6b:b5:b1: - 93:ee:61:13:e4:c4:91:53:87:2f:06:64:e8:15:ea: - 13:b9:48:77:c3:97:c1:56:7f:83:37:95:17:9c:c5: - 40:03:eb:46:d9:0f:88:54:39:7a:ea:88:cc:22:07: - d1:eb:59:a0:e9:d8:80:72:9f:4c:1e:b7:00:2e:e3: - 29:c5:f1:19:80:d3:e1:34:d8:a3:0d:9c:a0:62:c7: - 31:1d:94:e1:33:81:d3:0e:58:bf:23:68:7d:4a:b5: - d1:69:56:63:f0:77:c7:03:2b:bb:2f:a3:38:7a:62: - cd:e7:30:e9:93:f3:fb:67:59:c6:01:da:47:35:67: - 95:c0:88:d2:24:81:0b:31:ad:18:fe:f4:15:7d:bd: - 3d:ea:16:27:3d:6f:9a:b9:e2:ef:5f:08:27:ef:6d: - 15:d0:7c:0f:4b:80:7b:b1:16:ab:a8:4a:31:b5:a1: - d6:c1:42:82:d0:3b:46:de:d6:af:f0:d4:72:4e:48: - 01:ab - Exponent: 65537 (0x10001) - X509v3 extensions: - X509v3 Subject Key Identifier: - AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - X509v3 Authority Key Identifier: - keyid:AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - - X509v3 Basic Constraints: - CA:TRUE - Signature Algorithm: sha256WithRSAEncryption - 69:e4:78:35:ba:b0:12:b7:ea:69:ac:e9:90:54:9a:97:8d:77: - 8f:2f:9c:22:a5:02:08:dc:4b:81:3c:50:af:b5:f2:26:1f:8f: - 17:ec:5b:b6:6c:44:20:86:63:cd:8b:c9:39:56:3d:b2:c7:65: - bc:13:3a:f0:d9:15:ad:1a:b4:df:61:7a:ec:eb:c2:9b:ed:0b: - 8a:87:b2:18:2d:b3:09:11:a9:72:44:df:1f:c0:05:92:eb:4d: - 5e:3e:d2:81:f7:05:31:29:59:80:b5:19:a9:0f:dd:e9:61:cc: - 20:76:29:ed:0e:52:fb:b4:8d:00:87:80:04:3b:d4:f3:e8:27: - f9:56:4e:32:3e:f3:27:e6:f0:ea:43:18:43:d0:28:47:5c:98: - e0:0b:ba:ab:bc:7e:21:7f:26:bb:18:b1:fb:55:84:d8:77:76: - 8d:1f:a4:83:00:ed:38:38:2b:48:c3:92:1b:06:35:7e:7b:c3: - ab:01:b8:0f:f4:67:2c:77:e6:9b:04:1a:f9:2f:4b:ec:56:e2: - c8:3c:c2:79:08:94:8f:9b:44:eb:10:a4:61:6f:1c:93:91:37: - 02:9f:c5:05:f3:32:b6:b6:cf:71:0e:72:29:98:29:47:0c:2d: - 7c:06:49:44:24:88:ab:c9:fe:fd:9a:a2:e6:00:0d:8f:11:6e: - b2:2d:38:4d ------BEGIN CERTIFICATE----- -MIIDczCCAlugAwIBAgIJAIrSjS89ETjtMA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzAzMjkwNzMxNTVaFw0yMDAz -MjgwNzMxNTVaMFAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRg9EvEagl41JDUdLWZkS7gRC0I -ZH/4YuEIoAcSwdTYzXlxrMxqt8fsxlgSM7FBbQN7/Zgo/N6Q+UoOqe5FqgMNoOSA -tZyLa7Wxk+5hE+TEkVOHLwZk6BXqE7lId8OXwVZ/gzeVF5zFQAPrRtkPiFQ5euqI -zCIH0etZoOnYgHKfTB63AC7jKcXxGYDT4TTYow2coGLHMR2U4TOB0w5YvyNofUq1 -0WlWY/B3xwMruy+jOHpizecw6ZPz+2dZxgHaRzVnlcCI0iSBCzGtGP70FX29PeoW -Jz1vmrni718IJ+9tFdB8D0uAe7EWq6hKMbWh1sFCgtA7Rt7Wr/DUck5IAasCAwEA -AaNQME4wHQYDVR0OBBYEFKpGWOCwSTd0531ohWVcZ4nPoaH+MB8GA1UdIwQYMBaA -FKpGWOCwSTd0531ohWVcZ4nPoaH+MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBAGnkeDW6sBK36mms6ZBUmpeNd48vnCKlAgjcS4E8UK+18iYfjxfsW7Zs -RCCGY82LyTlWPbLHZbwTOvDZFa0atN9heuzrwpvtC4qHshgtswkRqXJE3x/ABZLr -TV4+0oH3BTEpWYC1GakP3elhzCB2Ke0OUvu0jQCHgAQ71PPoJ/lWTjI+8yfm8OpD -GEPQKEdcmOALuqu8fiF/JrsYsftVhNh3do0fpIMA7Tg4K0jDkhsGNX57w6sBuA/0 -Zyx35psEGvkvS+xW4sg8wnkIlI+bROsQpGFvHJORNwKfxQXzMra2z3EOcimYKUcM -LXwGSUQkiKvJ/v2aouYADY8RbrItOE0= ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/cert.pem deleted file mode 100644 index 6c875dae..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDFzCCAf+gAwIBAgIJAIrSjS89ETjzMA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzA0MDMwMjAyMzhaFw0yNzA0 -MDEwMjAyMzhaME0xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMREwDwYDVQQDDAhvcmRlcmVyMDCBnzANBgkq -hkiG9w0BAQEFAAOBjQAwgYkCgYEA3eAY8BV0cquJp76tcFqTUvYu02/giMaVFnOP -TI1GBf5qlzkOY5cDW1jYBExAnU2UYZqNTRTF9RgiQnuvanVTZ/f4iYvN1/M+XamK -yJsrEw/YwKdPyq4UTsl/nd6eyKu0KmUoQurOIolRCtM4sBPkeJGKjqSDJ97b8hE/ -RAk1w6sCAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNT -TCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFJTAlgo+T+inCUw9cOxf -2mSV+wwdMB8GA1UdIwQYMBaAFKpGWOCwSTd0531ohWVcZ4nPoaH+MA0GCSqGSIb3 -DQEBCwUAA4IBAQAakf0atJfHUmPbRyIrt5K8w2ikKberTd8zfJOLvq4lsd+PSgO6 -L/xTMKG46ZuzhpUjb1VG42V0ROgE01ZDW6/cHTmRifgqM+OfkVPx2FeNw1dXutJ3 -AV3zmVBEd3SvAoNQYJakhku2qjV3FsCJ7Mvr6E++V+xSqlbhi/cJrIgxc+v+vgvO -tivEev6gN7IRIBMIU4EQYazEBTFT2iYTbP/JjZ9lL0MjUEUKhBFlROidUgzrRNwK -aGNzKUZlDauN37HF5DVvLNCoAo52GUORll0DxX6RBzF9y6JzXDYGpBvOd2XEr0O2 -Nc7fugvU5jK1iFsJD7K6MgCUsLiMCHhwiU8E ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/key.pem deleted file mode 100644 index 91c20ca3..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/orderer/key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXQIBAAKBgQDd4BjwFXRyq4mnvq1wWpNS9i7Tb+CIxpUWc49MjUYF/mqXOQ5j -lwNbWNgETECdTZRhmo1NFMX1GCJCe69qdVNn9/iJi83X8z5dqYrImysTD9jAp0/K -rhROyX+d3p7Iq7QqZShC6s4iiVEK0ziwE+R4kYqOpIMn3tvyET9ECTXDqwIDAQAB -AoGBAM9yRn664JySS+s9uXXSCerIaHGiKcJYQW6zbyj48Z6LCGgJna15tVbEE3y5 -OrSYo4I6eaC3KnsFLIsSj6kut2JA4qySRNZEoiNZ7OG5svgC3MXmcgkyRk0QAC3O -68Y+GH5GUxkHALaqlHQkDoPmpBbu5GIvH6b3ZAjqDdtV7yhZAkEA+jb7AwD0wRRO -xNU0l+GmpYkiVFIzbiigsDtW4Yos5u5f/wQ214iEI1jQLqWq2iakv4yUbYEGKfbz -yl5BXofYVwJBAOMBYFKw2gPiVzQ4y2WLKv2C6mCk6ZlFYL1cTQq8TuNBbfBeajpL -Y8kX+3ALAVxAOrnTbOEIQ7GMSpGihBYC6s0CQF/uyoiZSj3o8lZnRDXjT0hybpYT -uiJHM2y+I45vss2LoYSd8gTrE3aV66Om4v2nCU1jsdjWOi3GwCvbvYZn4RsCQAJy -6loaBFAUagJrNm6DANS5S9P9E3QO1otUapRaEbPL6ea07gpw88OgmZrM05fuLXQB -vuPyleBddhR6H1ipcWUCQQCDeB7bnHOibdZA37fbsQNOxhIHjw7AnsDsdcBzPEFq -J0vT83Y5IB1S2dUUi0f+YHvEqZ9CQ1eWUfvGP/4VULnR ------END RSA PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/ca-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/ca-cert.pem deleted file mode 100644 index 68ac637e..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/ca-cert.pem +++ /dev/null @@ -1,78 +0,0 @@ -Certificate: - Data: - Version: 3 (0x2) - Serial Number: 10003212956370811117 (0x8ad28d2f3d1138ed) - Signature Algorithm: sha256WithRSAEncryption - Issuer: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Validity - Not Before: Mar 29 07:31:55 2017 GMT - Not After : Mar 28 07:31:55 2020 GMT - Subject: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Subject Public Key Info: - Public Key Algorithm: rsaEncryption - Public-Key: (2048 bit) - Modulus: - 00:c4:60:f4:4b:c4:6a:09:78:d4:90:d4:74:b5:99: - 91:2e:e0:44:2d:08:64:7f:f8:62:e1:08:a0:07:12: - c1:d4:d8:cd:79:71:ac:cc:6a:b7:c7:ec:c6:58:12: - 33:b1:41:6d:03:7b:fd:98:28:fc:de:90:f9:4a:0e: - a9:ee:45:aa:03:0d:a0:e4:80:b5:9c:8b:6b:b5:b1: - 93:ee:61:13:e4:c4:91:53:87:2f:06:64:e8:15:ea: - 13:b9:48:77:c3:97:c1:56:7f:83:37:95:17:9c:c5: - 40:03:eb:46:d9:0f:88:54:39:7a:ea:88:cc:22:07: - d1:eb:59:a0:e9:d8:80:72:9f:4c:1e:b7:00:2e:e3: - 29:c5:f1:19:80:d3:e1:34:d8:a3:0d:9c:a0:62:c7: - 31:1d:94:e1:33:81:d3:0e:58:bf:23:68:7d:4a:b5: - d1:69:56:63:f0:77:c7:03:2b:bb:2f:a3:38:7a:62: - cd:e7:30:e9:93:f3:fb:67:59:c6:01:da:47:35:67: - 95:c0:88:d2:24:81:0b:31:ad:18:fe:f4:15:7d:bd: - 3d:ea:16:27:3d:6f:9a:b9:e2:ef:5f:08:27:ef:6d: - 15:d0:7c:0f:4b:80:7b:b1:16:ab:a8:4a:31:b5:a1: - d6:c1:42:82:d0:3b:46:de:d6:af:f0:d4:72:4e:48: - 01:ab - Exponent: 65537 (0x10001) - X509v3 extensions: - X509v3 Subject Key Identifier: - AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - X509v3 Authority Key Identifier: - keyid:AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - - X509v3 Basic Constraints: - CA:TRUE - Signature Algorithm: sha256WithRSAEncryption - 69:e4:78:35:ba:b0:12:b7:ea:69:ac:e9:90:54:9a:97:8d:77: - 8f:2f:9c:22:a5:02:08:dc:4b:81:3c:50:af:b5:f2:26:1f:8f: - 17:ec:5b:b6:6c:44:20:86:63:cd:8b:c9:39:56:3d:b2:c7:65: - bc:13:3a:f0:d9:15:ad:1a:b4:df:61:7a:ec:eb:c2:9b:ed:0b: - 8a:87:b2:18:2d:b3:09:11:a9:72:44:df:1f:c0:05:92:eb:4d: - 5e:3e:d2:81:f7:05:31:29:59:80:b5:19:a9:0f:dd:e9:61:cc: - 20:76:29:ed:0e:52:fb:b4:8d:00:87:80:04:3b:d4:f3:e8:27: - f9:56:4e:32:3e:f3:27:e6:f0:ea:43:18:43:d0:28:47:5c:98: - e0:0b:ba:ab:bc:7e:21:7f:26:bb:18:b1:fb:55:84:d8:77:76: - 8d:1f:a4:83:00:ed:38:38:2b:48:c3:92:1b:06:35:7e:7b:c3: - ab:01:b8:0f:f4:67:2c:77:e6:9b:04:1a:f9:2f:4b:ec:56:e2: - c8:3c:c2:79:08:94:8f:9b:44:eb:10:a4:61:6f:1c:93:91:37: - 02:9f:c5:05:f3:32:b6:b6:cf:71:0e:72:29:98:29:47:0c:2d: - 7c:06:49:44:24:88:ab:c9:fe:fd:9a:a2:e6:00:0d:8f:11:6e: - b2:2d:38:4d ------BEGIN CERTIFICATE----- -MIIDczCCAlugAwIBAgIJAIrSjS89ETjtMA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzAzMjkwNzMxNTVaFw0yMDAz -MjgwNzMxNTVaMFAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRg9EvEagl41JDUdLWZkS7gRC0I -ZH/4YuEIoAcSwdTYzXlxrMxqt8fsxlgSM7FBbQN7/Zgo/N6Q+UoOqe5FqgMNoOSA -tZyLa7Wxk+5hE+TEkVOHLwZk6BXqE7lId8OXwVZ/gzeVF5zFQAPrRtkPiFQ5euqI -zCIH0etZoOnYgHKfTB63AC7jKcXxGYDT4TTYow2coGLHMR2U4TOB0w5YvyNofUq1 -0WlWY/B3xwMruy+jOHpizecw6ZPz+2dZxgHaRzVnlcCI0iSBCzGtGP70FX29PeoW -Jz1vmrni718IJ+9tFdB8D0uAe7EWq6hKMbWh1sFCgtA7Rt7Wr/DUck5IAasCAwEA -AaNQME4wHQYDVR0OBBYEFKpGWOCwSTd0531ohWVcZ4nPoaH+MB8GA1UdIwQYMBaA -FKpGWOCwSTd0531ohWVcZ4nPoaH+MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBAGnkeDW6sBK36mms6ZBUmpeNd48vnCKlAgjcS4E8UK+18iYfjxfsW7Zs -RCCGY82LyTlWPbLHZbwTOvDZFa0atN9heuzrwpvtC4qHshgtswkRqXJE3x/ABZLr -TV4+0oH3BTEpWYC1GakP3elhzCB2Ke0OUvu0jQCHgAQ71PPoJ/lWTjI+8yfm8OpD -GEPQKEdcmOALuqu8fiF/JrsYsftVhNh3do0fpIMA7Tg4K0jDkhsGNX57w6sBuA/0 -Zyx35psEGvkvS+xW4sg8wnkIlI+bROsQpGFvHJORNwKfxQXzMra2z3EOcimYKUcM -LXwGSUQkiKvJ/v2aouYADY8RbrItOE0= ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/cert.pem deleted file mode 100644 index 32c4d230..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDFDCCAfygAwIBAgIJAIrSjS89ETj0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzA0MDMwMjA2MzJaFw0yNzA0 -MDEwMjA2MzJaMEoxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMQ4wDAYDVQQDDAVwZWVyMDCBnzANBgkqhkiG -9w0BAQEFAAOBjQAwgYkCgYEAtFVI0ns3Y3Arp6+ANUlsrlSAthivwIEfGRrWeLWi -WM/WrY0mcftGfqn2kYyhS4p2XfH15kdzaW0PW2oqRcsauiMWLbq1ljsWLOCkyrpL -177pJLe6I686JoWenk2GD5awlGVT5uZt7676BCyqonHp3WB/BaEVVUDZh1qkwjMe -juUCAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBH -ZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFG5V0mSCQjq/K5nxIDHAXkYV -WpqLMB8GA1UdIwQYMBaAFKpGWOCwSTd0531ohWVcZ4nPoaH+MA0GCSqGSIb3DQEB -CwUAA4IBAQCTapTQUY4VoGqbmHb7jpDdsZfePmETVs7pko8WlXlely1SURJiY14m -OxtRjZU3gdcuF4bRH2OnHPL9qSmyo+pVTgqIMUACOoFS44jYCbuKN727DY9AmN07 -3E4MebFMd2ervYxUTTEybpr6yupZlj8FwjOuUp65WlN3jKJILhVBmsTJubOPDt+p -QH/mOBfHqGej5h69AugH2oJIleu7fMgmM8Fo4kMgoqIWqWphXJQG7NiuxCNE6qRc -O/V962fMQy6UPj/c5tXHPlHPW1E8CLv06t9wqn+4dQkahPJobthat1NVtZX/8r23 -y9sKJWJR8ApgEXCdBsKyyCBB6fbxOwKB ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/key.pem deleted file mode 100644 index edb7c54a..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer0/key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICWwIBAAKBgQC0VUjSezdjcCunr4A1SWyuVIC2GK/AgR8ZGtZ4taJYz9atjSZx -+0Z+qfaRjKFLinZd8fXmR3NpbQ9baipFyxq6IxYturWWOxYs4KTKukvXvukkt7oj -rzomhZ6eTYYPlrCUZVPm5m3vrvoELKqicendYH8FoRVVQNmHWqTCMx6O5QIDAQAB -AoGATtY2BuadOVixjRZ5m1IlNDV3K6SxORx55vTHrG/jsKX0OV1K4Gu0zu0pAUqU -vTykML/1+51jBEUMgK9yGZ8IaHkse7mirvjlZXMgtWIodyW/U3Qeei724PDQu2aM -rF/PtlPl72X3GhSCkIgqrMVqiuqVlBy+OD8rPlMPXz5SHCECQQDpP8PxZcCsJxo5 -FAtsVzg5Im09I9bCqv8TjfS7tOHpxvFMjJoR/I1i0lRS3aD0ppT47HDWZbJxH1dY -ANQRmCDdAkEAxew09f4ikJ6L6If+x+BmdgT3Qz5eB+ZsmN+LS39Axj4wWLmL2+rI -9Nyz+zCCAJRUjiHSoPlXgwGJ+awV0tABqQJAD/gsqy9jRKYctoG30oAaOlcwEXqN -rqBUfHtAoUVeHkpfpPUPa2HWMEjkOxQve/CXzH8rrpIh6HrT2ROdcWLwBQJABE2z -hRnGhKB96Et0tcHiWHSZL8QeZUuUVuqda8HTlbvqbzNxoBGF1xUpcK/IU9zlzcVc -gBWL2pRg/KXKP7A4KQJAJn99ie+AeKKHjFhAD2Uw4qY6Qk15BxbbILiRQfHj9OzK -my7l/Dfrel43GEcOqCgJ+nnrzkwmXYYVqn5dQNmZ2g== ------END RSA PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/ca-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/ca-cert.pem deleted file mode 100644 index 68ac637e..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/ca-cert.pem +++ /dev/null @@ -1,78 +0,0 @@ -Certificate: - Data: - Version: 3 (0x2) - Serial Number: 10003212956370811117 (0x8ad28d2f3d1138ed) - Signature Algorithm: sha256WithRSAEncryption - Issuer: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Validity - Not Before: Mar 29 07:31:55 2017 GMT - Not After : Mar 28 07:31:55 2020 GMT - Subject: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Subject Public Key Info: - Public Key Algorithm: rsaEncryption - Public-Key: (2048 bit) - Modulus: - 00:c4:60:f4:4b:c4:6a:09:78:d4:90:d4:74:b5:99: - 91:2e:e0:44:2d:08:64:7f:f8:62:e1:08:a0:07:12: - c1:d4:d8:cd:79:71:ac:cc:6a:b7:c7:ec:c6:58:12: - 33:b1:41:6d:03:7b:fd:98:28:fc:de:90:f9:4a:0e: - a9:ee:45:aa:03:0d:a0:e4:80:b5:9c:8b:6b:b5:b1: - 93:ee:61:13:e4:c4:91:53:87:2f:06:64:e8:15:ea: - 13:b9:48:77:c3:97:c1:56:7f:83:37:95:17:9c:c5: - 40:03:eb:46:d9:0f:88:54:39:7a:ea:88:cc:22:07: - d1:eb:59:a0:e9:d8:80:72:9f:4c:1e:b7:00:2e:e3: - 29:c5:f1:19:80:d3:e1:34:d8:a3:0d:9c:a0:62:c7: - 31:1d:94:e1:33:81:d3:0e:58:bf:23:68:7d:4a:b5: - d1:69:56:63:f0:77:c7:03:2b:bb:2f:a3:38:7a:62: - cd:e7:30:e9:93:f3:fb:67:59:c6:01:da:47:35:67: - 95:c0:88:d2:24:81:0b:31:ad:18:fe:f4:15:7d:bd: - 3d:ea:16:27:3d:6f:9a:b9:e2:ef:5f:08:27:ef:6d: - 15:d0:7c:0f:4b:80:7b:b1:16:ab:a8:4a:31:b5:a1: - d6:c1:42:82:d0:3b:46:de:d6:af:f0:d4:72:4e:48: - 01:ab - Exponent: 65537 (0x10001) - X509v3 extensions: - X509v3 Subject Key Identifier: - AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - X509v3 Authority Key Identifier: - keyid:AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - - X509v3 Basic Constraints: - CA:TRUE - Signature Algorithm: sha256WithRSAEncryption - 69:e4:78:35:ba:b0:12:b7:ea:69:ac:e9:90:54:9a:97:8d:77: - 8f:2f:9c:22:a5:02:08:dc:4b:81:3c:50:af:b5:f2:26:1f:8f: - 17:ec:5b:b6:6c:44:20:86:63:cd:8b:c9:39:56:3d:b2:c7:65: - bc:13:3a:f0:d9:15:ad:1a:b4:df:61:7a:ec:eb:c2:9b:ed:0b: - 8a:87:b2:18:2d:b3:09:11:a9:72:44:df:1f:c0:05:92:eb:4d: - 5e:3e:d2:81:f7:05:31:29:59:80:b5:19:a9:0f:dd:e9:61:cc: - 20:76:29:ed:0e:52:fb:b4:8d:00:87:80:04:3b:d4:f3:e8:27: - f9:56:4e:32:3e:f3:27:e6:f0:ea:43:18:43:d0:28:47:5c:98: - e0:0b:ba:ab:bc:7e:21:7f:26:bb:18:b1:fb:55:84:d8:77:76: - 8d:1f:a4:83:00:ed:38:38:2b:48:c3:92:1b:06:35:7e:7b:c3: - ab:01:b8:0f:f4:67:2c:77:e6:9b:04:1a:f9:2f:4b:ec:56:e2: - c8:3c:c2:79:08:94:8f:9b:44:eb:10:a4:61:6f:1c:93:91:37: - 02:9f:c5:05:f3:32:b6:b6:cf:71:0e:72:29:98:29:47:0c:2d: - 7c:06:49:44:24:88:ab:c9:fe:fd:9a:a2:e6:00:0d:8f:11:6e: - b2:2d:38:4d ------BEGIN CERTIFICATE----- -MIIDczCCAlugAwIBAgIJAIrSjS89ETjtMA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzAzMjkwNzMxNTVaFw0yMDAz -MjgwNzMxNTVaMFAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRg9EvEagl41JDUdLWZkS7gRC0I -ZH/4YuEIoAcSwdTYzXlxrMxqt8fsxlgSM7FBbQN7/Zgo/N6Q+UoOqe5FqgMNoOSA -tZyLa7Wxk+5hE+TEkVOHLwZk6BXqE7lId8OXwVZ/gzeVF5zFQAPrRtkPiFQ5euqI -zCIH0etZoOnYgHKfTB63AC7jKcXxGYDT4TTYow2coGLHMR2U4TOB0w5YvyNofUq1 -0WlWY/B3xwMruy+jOHpizecw6ZPz+2dZxgHaRzVnlcCI0iSBCzGtGP70FX29PeoW -Jz1vmrni718IJ+9tFdB8D0uAe7EWq6hKMbWh1sFCgtA7Rt7Wr/DUck5IAasCAwEA -AaNQME4wHQYDVR0OBBYEFKpGWOCwSTd0531ohWVcZ4nPoaH+MB8GA1UdIwQYMBaA -FKpGWOCwSTd0531ohWVcZ4nPoaH+MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBAGnkeDW6sBK36mms6ZBUmpeNd48vnCKlAgjcS4E8UK+18iYfjxfsW7Zs -RCCGY82LyTlWPbLHZbwTOvDZFa0atN9heuzrwpvtC4qHshgtswkRqXJE3x/ABZLr -TV4+0oH3BTEpWYC1GakP3elhzCB2Ke0OUvu0jQCHgAQ71PPoJ/lWTjI+8yfm8OpD -GEPQKEdcmOALuqu8fiF/JrsYsftVhNh3do0fpIMA7Tg4K0jDkhsGNX57w6sBuA/0 -Zyx35psEGvkvS+xW4sg8wnkIlI+bROsQpGFvHJORNwKfxQXzMra2z3EOcimYKUcM -LXwGSUQkiKvJ/v2aouYADY8RbrItOE0= ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/cert.pem deleted file mode 100644 index 76120a40..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDFDCCAfygAwIBAgIJAIrSjS89ETj1MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzA0MDMwMjA3MThaFw0yNzA0 -MDEwMjA3MThaMEoxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMQ4wDAYDVQQDDAVwZWVyMTCBnzANBgkqhkiG -9w0BAQEFAAOBjQAwgYkCgYEA3GBM6xvMuiq93HF/QWZ1gAZZWp9WFmK65+M5uRrN -+OoPAk8Q31v39Dcpt4Mp3tMUa0WQwA2F7bhS6/x0Ati4XKUDmEHyNGA6S37MLbTm -Ny9DEE8D+gCJTy4hBAOsXoeGhaKAYJ82gR6dWxM0+oe4KcW8iT0Nxm2VAlSJT7sf -EHUCAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBH -ZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFA7mEfmZems31HRrcrtWc8oC -lo9CMB8GA1UdIwQYMBaAFKpGWOCwSTd0531ohWVcZ4nPoaH+MA0GCSqGSIb3DQEB -CwUAA4IBAQBE3KIbNdaxJelP0MJ3jQUrzFJaI5DGpRh5vmwcPyVrzeRHrxHT0cnL -LygVd4ahvOEUWqTZClmK3Ke71F3VV5jNdQNqjr+dAISkeFeZNGhmEy8s0hOYbV6o -D0we+1d04Yj1GeIFbmBLEuPBgcrwmnepBlbbGJTg5QDpVxdXpSSJdAl5L6LNxJ7k -ouQ9lbVZySeu/7jdq2Yi6HLf7Qb61YDSoo4hTqtV1UWVlgm7UxLwtqS/BFieHr7B -VuFBjUrR5qhhyjU/dSxz9Os3NwtTgf6Oyq+9/njgSGjswIedm5puxaF6yPD652TS -dtFe9wzJNQi6d4OIuPQd+hBwHVxuh5bQ ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/key.pem deleted file mode 100644 index 3545c234..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer1/key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXwIBAAKBgQDcYEzrG8y6Kr3ccX9BZnWABllan1YWYrrn4zm5Gs346g8CTxDf -W/f0Nym3gyne0xRrRZDADYXtuFLr/HQC2LhcpQOYQfI0YDpLfswttOY3L0MQTwP6 -AIlPLiEEA6xeh4aFooBgnzaBHp1bEzT6h7gpxbyJPQ3GbZUCVIlPux8QdQIDAQAB -AoGBAI/xmuxKuTu0pVTzEXLvcLpR61VlE/8FOB407kQ4/OakQ293o4axdNEgovAK -DXRNHV5ADx9S9fLjXc5klIYzdp9d6VALQcuPF4Z84eQsMSs9V6pmachGtJa5Inpd -MXOfLiQeSE4cYGxpL8zZQCoUf5y0h9YZBNme0bU5bOoU7TNVAkEA/lc+jo4PUCoa -piVObu6O9cuiR9B75GZJvu9YT/w09F14bNES7aJdh1jTocj9rrAKVzC1Y1Gb6WIG -+RZSavI0wwJBAN3QVZU3JNYPPIkQNyE9exsWRl9BIrcwi9HsDoLJv1MTmS7K++0v -+cpsE6hW0LoXYiQ8w4l8O4bEy0TCTDBPcmcCQQDmLq8+9PKG6pQTqc/CNcTMTu8f -b1+w5aH4W0Thnq+OOMm0McOfrUJYK9vcn7p3TnsNTdfbexBPt5f39mvAvlNhAkEA -kbm9gDqqSLfZ3XJ5xazOpA0OTqZMWG3cbh3XqrVArSPDD6rrt/g882/tujrPBnM2 -VvhUvo6PzQqdQJ8lztdjIQJBAKI+Fl5Xp9aSNUbFIrA8LOzdsqsX7yxPBsakfPHr -YwvFc9CjVg7DgZbmUggwV7L3oPAVDtvtTcjTOGkOo0KQxJ8= ------END RSA PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/ca-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/ca-cert.pem deleted file mode 100644 index 68ac637e..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/ca-cert.pem +++ /dev/null @@ -1,78 +0,0 @@ -Certificate: - Data: - Version: 3 (0x2) - Serial Number: 10003212956370811117 (0x8ad28d2f3d1138ed) - Signature Algorithm: sha256WithRSAEncryption - Issuer: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Validity - Not Before: Mar 29 07:31:55 2017 GMT - Not After : Mar 28 07:31:55 2020 GMT - Subject: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Subject Public Key Info: - Public Key Algorithm: rsaEncryption - Public-Key: (2048 bit) - Modulus: - 00:c4:60:f4:4b:c4:6a:09:78:d4:90:d4:74:b5:99: - 91:2e:e0:44:2d:08:64:7f:f8:62:e1:08:a0:07:12: - c1:d4:d8:cd:79:71:ac:cc:6a:b7:c7:ec:c6:58:12: - 33:b1:41:6d:03:7b:fd:98:28:fc:de:90:f9:4a:0e: - a9:ee:45:aa:03:0d:a0:e4:80:b5:9c:8b:6b:b5:b1: - 93:ee:61:13:e4:c4:91:53:87:2f:06:64:e8:15:ea: - 13:b9:48:77:c3:97:c1:56:7f:83:37:95:17:9c:c5: - 40:03:eb:46:d9:0f:88:54:39:7a:ea:88:cc:22:07: - d1:eb:59:a0:e9:d8:80:72:9f:4c:1e:b7:00:2e:e3: - 29:c5:f1:19:80:d3:e1:34:d8:a3:0d:9c:a0:62:c7: - 31:1d:94:e1:33:81:d3:0e:58:bf:23:68:7d:4a:b5: - d1:69:56:63:f0:77:c7:03:2b:bb:2f:a3:38:7a:62: - cd:e7:30:e9:93:f3:fb:67:59:c6:01:da:47:35:67: - 95:c0:88:d2:24:81:0b:31:ad:18:fe:f4:15:7d:bd: - 3d:ea:16:27:3d:6f:9a:b9:e2:ef:5f:08:27:ef:6d: - 15:d0:7c:0f:4b:80:7b:b1:16:ab:a8:4a:31:b5:a1: - d6:c1:42:82:d0:3b:46:de:d6:af:f0:d4:72:4e:48: - 01:ab - Exponent: 65537 (0x10001) - X509v3 extensions: - X509v3 Subject Key Identifier: - AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - X509v3 Authority Key Identifier: - keyid:AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - - X509v3 Basic Constraints: - CA:TRUE - Signature Algorithm: sha256WithRSAEncryption - 69:e4:78:35:ba:b0:12:b7:ea:69:ac:e9:90:54:9a:97:8d:77: - 8f:2f:9c:22:a5:02:08:dc:4b:81:3c:50:af:b5:f2:26:1f:8f: - 17:ec:5b:b6:6c:44:20:86:63:cd:8b:c9:39:56:3d:b2:c7:65: - bc:13:3a:f0:d9:15:ad:1a:b4:df:61:7a:ec:eb:c2:9b:ed:0b: - 8a:87:b2:18:2d:b3:09:11:a9:72:44:df:1f:c0:05:92:eb:4d: - 5e:3e:d2:81:f7:05:31:29:59:80:b5:19:a9:0f:dd:e9:61:cc: - 20:76:29:ed:0e:52:fb:b4:8d:00:87:80:04:3b:d4:f3:e8:27: - f9:56:4e:32:3e:f3:27:e6:f0:ea:43:18:43:d0:28:47:5c:98: - e0:0b:ba:ab:bc:7e:21:7f:26:bb:18:b1:fb:55:84:d8:77:76: - 8d:1f:a4:83:00:ed:38:38:2b:48:c3:92:1b:06:35:7e:7b:c3: - ab:01:b8:0f:f4:67:2c:77:e6:9b:04:1a:f9:2f:4b:ec:56:e2: - c8:3c:c2:79:08:94:8f:9b:44:eb:10:a4:61:6f:1c:93:91:37: - 02:9f:c5:05:f3:32:b6:b6:cf:71:0e:72:29:98:29:47:0c:2d: - 7c:06:49:44:24:88:ab:c9:fe:fd:9a:a2:e6:00:0d:8f:11:6e: - b2:2d:38:4d ------BEGIN CERTIFICATE----- -MIIDczCCAlugAwIBAgIJAIrSjS89ETjtMA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzAzMjkwNzMxNTVaFw0yMDAz -MjgwNzMxNTVaMFAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRg9EvEagl41JDUdLWZkS7gRC0I -ZH/4YuEIoAcSwdTYzXlxrMxqt8fsxlgSM7FBbQN7/Zgo/N6Q+UoOqe5FqgMNoOSA -tZyLa7Wxk+5hE+TEkVOHLwZk6BXqE7lId8OXwVZ/gzeVF5zFQAPrRtkPiFQ5euqI -zCIH0etZoOnYgHKfTB63AC7jKcXxGYDT4TTYow2coGLHMR2U4TOB0w5YvyNofUq1 -0WlWY/B3xwMruy+jOHpizecw6ZPz+2dZxgHaRzVnlcCI0iSBCzGtGP70FX29PeoW -Jz1vmrni718IJ+9tFdB8D0uAe7EWq6hKMbWh1sFCgtA7Rt7Wr/DUck5IAasCAwEA -AaNQME4wHQYDVR0OBBYEFKpGWOCwSTd0531ohWVcZ4nPoaH+MB8GA1UdIwQYMBaA -FKpGWOCwSTd0531ohWVcZ4nPoaH+MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBAGnkeDW6sBK36mms6ZBUmpeNd48vnCKlAgjcS4E8UK+18iYfjxfsW7Zs -RCCGY82LyTlWPbLHZbwTOvDZFa0atN9heuzrwpvtC4qHshgtswkRqXJE3x/ABZLr -TV4+0oH3BTEpWYC1GakP3elhzCB2Ke0OUvu0jQCHgAQ71PPoJ/lWTjI+8yfm8OpD -GEPQKEdcmOALuqu8fiF/JrsYsftVhNh3do0fpIMA7Tg4K0jDkhsGNX57w6sBuA/0 -Zyx35psEGvkvS+xW4sg8wnkIlI+bROsQpGFvHJORNwKfxQXzMra2z3EOcimYKUcM -LXwGSUQkiKvJ/v2aouYADY8RbrItOE0= ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/cert.pem deleted file mode 100644 index 9639cc09..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDFDCCAfygAwIBAgIJAIrSjS89ETj2MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzA0MDMwMjA4MDRaFw0yNzA0 -MDEwMjA4MDRaMEoxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMQ4wDAYDVQQDDAVwZWVyMjCBnzANBgkqhkiG -9w0BAQEFAAOBjQAwgYkCgYEAmR3zpy8MO3k4mQQUdSoUILGBhgFxXGWYyq02I/Jg -lsuDkLiM81WurTodnh5EkR1ju/WV7XE15rXKsK8f41ftuw+iRrSaxMzCQvtWdrbp -HEJ2yP1daJXyMwTWu50rUc13DkQI6ddSEDStPJ516xR/KktyJYjM2imda/pUY9rU -oy0CAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBH -ZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFCjjxaSjEtPSDGlAr9FFpCWZ -Qsl4MB8GA1UdIwQYMBaAFKpGWOCwSTd0531ohWVcZ4nPoaH+MA0GCSqGSIb3DQEB -CwUAA4IBAQAM6oPoJVcHKajQpSn1RDhK7zatpKAyf3L7Y3Leq2zNO431u07zEzBb -F5iPdGdRaXEYIEetzDjTKvpKkEg41RtTI4qiRTukNvQ8fQCK8XJugPJhlp2+LSAf -Sw1h3FMyz4HyeKs7oJt0pXJSotx9OGqv8d8lzgL0epaW/u/Q6Gnrb0Fd9sWgb/va -Aj6o5adkYqa5P1QbO6tHzUntqeRKfS8Sg0lmb1IaImprRQP/yjLlQg7hPJBbiZdn -sepiECOmwVkS8HJ34Jprf0JcE1xmDEoB1AeCNoCycfyw9Cuxee17nzyW00s/ujHx -/ra6p1UJMPE72pAfqKHCKuyuWdAt2u98 ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/key.pem deleted file mode 100644 index 4d6903ef..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer2/key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXgIBAAKBgQCZHfOnLww7eTiZBBR1KhQgsYGGAXFcZZjKrTYj8mCWy4OQuIzz -Va6tOh2eHkSRHWO79ZXtcTXmtcqwrx/jV+27D6JGtJrEzMJC+1Z2tukcQnbI/V1o -lfIzBNa7nStRzXcORAjp11IQNK08nnXrFH8qS3IliMzaKZ1r+lRj2tSjLQIDAQAB -AoGBAJePBCxJ74u284TSewV2PzIVQaXJK9JPZivHw71VHrJkg7fuVOZPu3UP/10R -jMEvHBdigaLj2nyhGR5GWgQIdvCYF/PdDYSICgGV2LdgMF017CpHHHnVv7UaGjRJ -ouQWTiN4m9NOdEWcle/haFfJr4ndhV+yIP6+PbWdNawFad0pAkEAxuC98YlstCWz -0C4InpBlpJ2NmXGX89zDJku6RnEk7w2PHfUUSAtSvYl2QbVwx8HcdCIa0esrA6Hu -vtyS33f+TwJBAMUYdvW/0GgMrz7BHBQR2Nqh/XmRYGfkgbkugEsq7Her/FkLIP9A -eRhpygr7hrkHs9edlz77EE1/17Pp4HydA8MCQQCjo+cGqGIWdPNYt5gGCKBp6+3I -NUynrp2wlB0Iuy59uLVrG+59PTvukv4IIShUZXJk6G8TDSLOkV6mE06Sq+RHAkEA -mM/LC+ZYMxQCm2kl1/muZHTMDgFE+cgVO/ptxdnV1UMnN/KE9uKKAP+kgrdZUQRD -z5yDs3T8wtmn5/og7vzd+QJAU6r0Cz+aXdEI+qpGVYDwFTGg28Qqv0ks298rUCk7 -oAD629HUv8Osmdi/SYMhYhFpYjJ6mJW7mAJ/vjmfl+oeuw== ------END RSA PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/ca-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/ca-cert.pem deleted file mode 100644 index 68ac637e..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/ca-cert.pem +++ /dev/null @@ -1,78 +0,0 @@ -Certificate: - Data: - Version: 3 (0x2) - Serial Number: 10003212956370811117 (0x8ad28d2f3d1138ed) - Signature Algorithm: sha256WithRSAEncryption - Issuer: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Validity - Not Before: Mar 29 07:31:55 2017 GMT - Not After : Mar 28 07:31:55 2020 GMT - Subject: C=JP, ST=Tokyo, O=IBMJ, OU=TRL, CN=trl.ibm.com - Subject Public Key Info: - Public Key Algorithm: rsaEncryption - Public-Key: (2048 bit) - Modulus: - 00:c4:60:f4:4b:c4:6a:09:78:d4:90:d4:74:b5:99: - 91:2e:e0:44:2d:08:64:7f:f8:62:e1:08:a0:07:12: - c1:d4:d8:cd:79:71:ac:cc:6a:b7:c7:ec:c6:58:12: - 33:b1:41:6d:03:7b:fd:98:28:fc:de:90:f9:4a:0e: - a9:ee:45:aa:03:0d:a0:e4:80:b5:9c:8b:6b:b5:b1: - 93:ee:61:13:e4:c4:91:53:87:2f:06:64:e8:15:ea: - 13:b9:48:77:c3:97:c1:56:7f:83:37:95:17:9c:c5: - 40:03:eb:46:d9:0f:88:54:39:7a:ea:88:cc:22:07: - d1:eb:59:a0:e9:d8:80:72:9f:4c:1e:b7:00:2e:e3: - 29:c5:f1:19:80:d3:e1:34:d8:a3:0d:9c:a0:62:c7: - 31:1d:94:e1:33:81:d3:0e:58:bf:23:68:7d:4a:b5: - d1:69:56:63:f0:77:c7:03:2b:bb:2f:a3:38:7a:62: - cd:e7:30:e9:93:f3:fb:67:59:c6:01:da:47:35:67: - 95:c0:88:d2:24:81:0b:31:ad:18:fe:f4:15:7d:bd: - 3d:ea:16:27:3d:6f:9a:b9:e2:ef:5f:08:27:ef:6d: - 15:d0:7c:0f:4b:80:7b:b1:16:ab:a8:4a:31:b5:a1: - d6:c1:42:82:d0:3b:46:de:d6:af:f0:d4:72:4e:48: - 01:ab - Exponent: 65537 (0x10001) - X509v3 extensions: - X509v3 Subject Key Identifier: - AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - X509v3 Authority Key Identifier: - keyid:AA:46:58:E0:B0:49:37:74:E7:7D:68:85:65:5C:67:89:CF:A1:A1:FE - - X509v3 Basic Constraints: - CA:TRUE - Signature Algorithm: sha256WithRSAEncryption - 69:e4:78:35:ba:b0:12:b7:ea:69:ac:e9:90:54:9a:97:8d:77: - 8f:2f:9c:22:a5:02:08:dc:4b:81:3c:50:af:b5:f2:26:1f:8f: - 17:ec:5b:b6:6c:44:20:86:63:cd:8b:c9:39:56:3d:b2:c7:65: - bc:13:3a:f0:d9:15:ad:1a:b4:df:61:7a:ec:eb:c2:9b:ed:0b: - 8a:87:b2:18:2d:b3:09:11:a9:72:44:df:1f:c0:05:92:eb:4d: - 5e:3e:d2:81:f7:05:31:29:59:80:b5:19:a9:0f:dd:e9:61:cc: - 20:76:29:ed:0e:52:fb:b4:8d:00:87:80:04:3b:d4:f3:e8:27: - f9:56:4e:32:3e:f3:27:e6:f0:ea:43:18:43:d0:28:47:5c:98: - e0:0b:ba:ab:bc:7e:21:7f:26:bb:18:b1:fb:55:84:d8:77:76: - 8d:1f:a4:83:00:ed:38:38:2b:48:c3:92:1b:06:35:7e:7b:c3: - ab:01:b8:0f:f4:67:2c:77:e6:9b:04:1a:f9:2f:4b:ec:56:e2: - c8:3c:c2:79:08:94:8f:9b:44:eb:10:a4:61:6f:1c:93:91:37: - 02:9f:c5:05:f3:32:b6:b6:cf:71:0e:72:29:98:29:47:0c:2d: - 7c:06:49:44:24:88:ab:c9:fe:fd:9a:a2:e6:00:0d:8f:11:6e: - b2:2d:38:4d ------BEGIN CERTIFICATE----- -MIIDczCCAlugAwIBAgIJAIrSjS89ETjtMA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzAzMjkwNzMxNTVaFw0yMDAz -MjgwNzMxNTVaMFAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRg9EvEagl41JDUdLWZkS7gRC0I -ZH/4YuEIoAcSwdTYzXlxrMxqt8fsxlgSM7FBbQN7/Zgo/N6Q+UoOqe5FqgMNoOSA -tZyLa7Wxk+5hE+TEkVOHLwZk6BXqE7lId8OXwVZ/gzeVF5zFQAPrRtkPiFQ5euqI -zCIH0etZoOnYgHKfTB63AC7jKcXxGYDT4TTYow2coGLHMR2U4TOB0w5YvyNofUq1 -0WlWY/B3xwMruy+jOHpizecw6ZPz+2dZxgHaRzVnlcCI0iSBCzGtGP70FX29PeoW -Jz1vmrni718IJ+9tFdB8D0uAe7EWq6hKMbWh1sFCgtA7Rt7Wr/DUck5IAasCAwEA -AaNQME4wHQYDVR0OBBYEFKpGWOCwSTd0531ohWVcZ4nPoaH+MB8GA1UdIwQYMBaA -FKpGWOCwSTd0531ohWVcZ4nPoaH+MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEL -BQADggEBAGnkeDW6sBK36mms6ZBUmpeNd48vnCKlAgjcS4E8UK+18iYfjxfsW7Zs -RCCGY82LyTlWPbLHZbwTOvDZFa0atN9heuzrwpvtC4qHshgtswkRqXJE3x/ABZLr -TV4+0oH3BTEpWYC1GakP3elhzCB2Ke0OUvu0jQCHgAQ71PPoJ/lWTjI+8yfm8OpD -GEPQKEdcmOALuqu8fiF/JrsYsftVhNh3do0fpIMA7Tg4K0jDkhsGNX57w6sBuA/0 -Zyx35psEGvkvS+xW4sg8wnkIlI+bROsQpGFvHJORNwKfxQXzMra2z3EOcimYKUcM -LXwGSUQkiKvJ/v2aouYADY8RbrItOE0= ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/cert.pem deleted file mode 100644 index 7e76bdf5..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDFDCCAfygAwIBAgIJAIrSjS89ETj3MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV -BAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UECgwESUJNSjEMMAoGA1UECwwD -VFJMMRQwEgYDVQQDDAt0cmwuaWJtLmNvbTAeFw0xNzA0MDMwMjA4NDBaFw0yNzA0 -MDEwMjA4NDBaMEoxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIDAVUb2t5bzENMAsGA1UE -CgwESUJNSjEMMAoGA1UECwwDVFJMMQ4wDAYDVQQDDAVwZWVyMzCBnzANBgkqhkiG -9w0BAQEFAAOBjQAwgYkCgYEAv6RvHKmXilSGMchzWyaLbAyEJOOiLaV3UPL9r+4H -9KHpG0HmKABhip8kbzwfas4HQFr9KSajDWfVQcBW3nD6gO0Qb5ycQtOFlRb6H+NR -QBucLprD4jnPn93mBwpk5K9lobnsKwycYRAEka2P6+Ae4nRVExUPJlxjT9ASDxyh -1r8CAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBH -ZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFKV7oMaaJQsKdV6PIVzwqVe/ -lbQJMB8GA1UdIwQYMBaAFKpGWOCwSTd0531ohWVcZ4nPoaH+MA0GCSqGSIb3DQEB -CwUAA4IBAQCD1CA5fNP06MEAj8i3RsNJ6hj9teyaP1Ctqb4WT1fysL5KdQpr88XY -61xFU0H4s1353WQ3Ars2/+s4827+Olb0J6MQZ32yarogdnp9n3D9e7uAwLeCsEu5 -sdO28nDdfOv4t+6EsQsdqquzMUGU+ht3ySTsPRfd684zEns+Ej57woNbB63GPcVL -OcXbKVBRmdtw6m8tOADzxycMb5jHa1sBEumu9y6r0N5RnwrHdHjyWdCm4WJ6KRqW -fJXwLCBrpStgNCt6V7bouFk/zTwBJF20CK5AVZ+EicT4J/q6crSfLriEzad6Vaqp -ANKcfr1wAUumTtYlsdxSBrWYtsHJkV8l ------END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/key.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/key.pem deleted file mode 100644 index 459f45be..00000000 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/tls/peers/peer3/key.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIICXAIBAAKBgQC/pG8cqZeKVIYxyHNbJotsDIQk46ItpXdQ8v2v7gf0oekbQeYo -AGGKnyRvPB9qzgdAWv0pJqMNZ9VBwFbecPqA7RBvnJxC04WVFvof41FAG5wumsPi -Oc+f3eYHCmTkr2WhuewrDJxhEASRrY/r4B7idFUTFQ8mXGNP0BIPHKHWvwIDAQAB -AoGBAKTEIWvJO6sJBN9kchmaSCC7mhmFRPht3OnSIN7Tji97zUlMHS+jNDnUnaSt -Um2neYCROjvZJjLuZOHFFmrlQ9l5qhpmYUXCLDiJ5k7DHm3iwYo+xCaGQ21IeKmN -ea+aA8SCy9Vs332CMbguECoDiNcKZTS69pvAcHYKIQ+F2O5RAkEA9//zPFRAWnZb -WMG+EvjkvXKJpuI/F3Upe03Lyup9MV4HiPK5QtWyjClMoJLItFwqcPe+ksI5Di3N -TS7HF0apBQJBAMXTEYXyfCDa1mEYgxCS3ut9rs0f8GDja2GvrNAms59FkkGMB8Ux -Nm0t+a1sGp8oc3do7cFyc6zRpQduQ6MSe/MCQFf9A3ugGMT/wSEYfCuXCvD8NkJz -excDhpgs3eU8lPZy+hForLo9v39jF8DQ00zKdnRmMcM4Da4uKez8b76eX1ECQDFA -zOMZrXgMpEWGcdNljeT55NSjeBjXZnvq3k7w49Xq33A8ag7ZouBqCvj3qmUoEB+R -22hHk69afwkrleF7D6sCQD3oRNHTkZbWLexASIk4OOZLFfK84Es9+zlhp1M+HenG -y0QwhKa7/eVbfvm5Emz7uQe5Q9JvRlTRECwKS4ScWPo= ------END RSA PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/bar.tx b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/bar.tx similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/bar.tx rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/bar.tx diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/ca/e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/ca/e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/ca/e575398eaf2f0d475ba89f568c49f57013af938c157756c0654b94e59240b8fe_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/30652478a0678558e8573fa33246175b33997226b63fa40503290187e0f99144_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/tlsca/79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/tlsca/79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/79dc874966cf161d08dba71a5904e8b2b25615831de12e7293146987b7c3325b_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/f1a9a940f57419a18a83a852884790d59b378281347dd3d4a88c2b820a0f70c9_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/ca.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/ca.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/ca.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46c70c47d10e70d2a8a4711eb3b766d3621927ad045691dcd258fa9e93bc2c2c_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/12201dec0f49b97542c6f0f50432c27797bed4aaecd12cf2e65ef617733b8d25_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/tlsca/418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/tlsca/418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/418980b5f8d471909a4ce16b610957bf99e3ac4e7b9a3419125f7416d95bcffd_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3c01db816069a226654d66a023c2260695f71e19b322a6564dad3e32ccf063b_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/ca.org1.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/fc883e2b877cde763cf9926890b1e9077d0684b10608ee720208b68ad6bcd824_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/3d44880d32a2611121dacdce9b30b96bc401f6b7ef2b9948cbbec0f2b4ffad94_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/tlsca/849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/tlsca/849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/849fab79ac44554ffcff796c37b8059fda5c7b89804dc805e71b5eb24295d729_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/b2e2536de633960859d965f02b296083d1e8aa1e868016417c4e4fb760270b96_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/9f97934915db15db4c803b6eff5b6f4966bdef05d13f99e4d60c7128a6f22733_sk diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/ca.org2.example.com-cert.pem diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/foo.tx b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/foo.tx similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/foo.tx rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/foo.tx diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/orderer.block b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/orderer.block similarity index 100% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/orderer.block rename to src/test/fixture/sdkintegration/e2e-2Orgs/v1.0/orderer.block diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/bar.tx b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/bar.tx new file mode 100644 index 00000000..ff849acf Binary files /dev/null and b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/bar.tx differ diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/19b5153790854dae850a0f941570fc3c569b878723933ad5a9c319d293f2d492_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/19b5153790854dae850a0f941570fc3c569b878723933ad5a9c319d293f2d492_sk new file mode 100755 index 00000000..0e6999b3 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/19b5153790854dae850a0f941570fc3c569b878723933ad5a9c319d293f2d492_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg+qHEmY7XuQRVMcGs +b8AM0J6spdV9pBk8FZb28M/FkvChRANCAASPcIGW5kzH9cA4LU+qNeofAPWpzZNp +RJOs0ok058qxczQ8wyg+Q3F5m6TOW+KmV21Tz59dUsCBp3Ol2L6Ob6g/ +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem new file mode 100644 index 00000000..69561b34 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLjCCAdWgAwIBAgIQA7Edgx6GV/aPDOHR6YQUDTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDIyNTEyNDMyOVoXDTI4MDIyMzEyNDMyOVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABI9wgZbmTMf1wDgtT6o16h8A9anN +k2lEk6zSiTTnyrFzNDzDKD5DcXmbpM5b4qZXbVPPn11SwIGnc6XYvo5vqD+jXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M61anDGdKT8tSSMAoG +CCqGSM49BAMCA0cAMEQCIGrydKuzLP7/IC3Z+rk6VEZDzaf3eP+j3uJ8wLPlb3bo +AiBQRx26UGSjoAb8cKi8lSwIWpHF5tKwmUMuUvvd4lFa1g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..f4501a0d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCjCCAbGgAwIBAgIRANozuXGOLYtQQSSKSzJsjpEwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAyMjUxMjQzMzBaFw0yODAyMjMxMjQzMzBaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABDoeTQ0Oo4M50oJQibVqpWAkdOXF3flmQjBD2aemB2jVXHacjJGJ +khUIjzsHgsRv9FSqITtH2xE/Tvq7Khe6ifSjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M6 +1anDGdKT8tSSMAoGCCqGSM49BAMCA0cAMEQCIDaxA0FeAom7yDl42F5MEHc7IGHV +PU6a15Cij4hJq+BOAiAHK7+XgPSmSGvL3nMYdRSPxD1BDrIEyH5ShWjRKtvB8w== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..69561b34 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLjCCAdWgAwIBAgIQA7Edgx6GV/aPDOHR6YQUDTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDIyNTEyNDMyOVoXDTI4MDIyMzEyNDMyOVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABI9wgZbmTMf1wDgtT6o16h8A9anN +k2lEk6zSiTTnyrFzNDzDKD5DcXmbpM5b4qZXbVPPn11SwIGnc6XYvo5vqD+jXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M61anDGdKT8tSSMAoG +CCqGSM49BAMCA0cAMEQCIGrydKuzLP7/IC3Z+rk6VEZDzaf3eP+j3uJ8wLPlb3bo +AiBQRx26UGSjoAb8cKi8lSwIWpHF5tKwmUMuUvvd4lFa1g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b151e41e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ +vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 +6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 +1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG +EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..f4501a0d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCjCCAbGgAwIBAgIRANozuXGOLYtQQSSKSzJsjpEwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAyMjUxMjQzMzBaFw0yODAyMjMxMjQzMzBaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABDoeTQ0Oo4M50oJQibVqpWAkdOXF3flmQjBD2aemB2jVXHacjJGJ +khUIjzsHgsRv9FSqITtH2xE/Tvq7Khe6ifSjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M6 +1anDGdKT8tSSMAoGCCqGSM49BAMCA0cAMEQCIDaxA0FeAom7yDl42F5MEHc7IGHV +PU6a15Cij4hJq+BOAiAHK7+XgPSmSGvL3nMYdRSPxD1BDrIEyH5ShWjRKtvB8w== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..69561b34 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLjCCAdWgAwIBAgIQA7Edgx6GV/aPDOHR6YQUDTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDIyNTEyNDMyOVoXDTI4MDIyMzEyNDMyOVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABI9wgZbmTMf1wDgtT6o16h8A9anN +k2lEk6zSiTTnyrFzNDzDKD5DcXmbpM5b4qZXbVPPn11SwIGnc6XYvo5vqD+jXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M61anDGdKT8tSSMAoG +CCqGSM49BAMCA0cAMEQCIGrydKuzLP7/IC3Z+rk6VEZDzaf3eP+j3uJ8wLPlb3bo +AiBQRx26UGSjoAb8cKi8lSwIWpHF5tKwmUMuUvvd4lFa1g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/2033c8300dd5950d3fff13657d205cb7ef69e97758b70c12c5086205b69e88ac_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/2033c8300dd5950d3fff13657d205cb7ef69e97758b70c12c5086205b69e88ac_sk new file mode 100755 index 00000000..8e1beeb9 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/2033c8300dd5950d3fff13657d205cb7ef69e97758b70c12c5086205b69e88ac_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgKgjdakYKClGvuBTE +j90kkwTNxziI9IU3D39Xicy/NRmhRANCAARQfP/qUmnEcXIlE5PlkR4RCMn2XykM +sPFZN0k1XfpkSA4KP0nCALUgiITKLsOQohYA7oDaFQD/ZhaRswgwEgmN +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem new file mode 100644 index 00000000..1143029d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCzCCAbKgAwIBAgIQUcfZvWT8UgJJ30cDzW15bDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDIyNTEyNDMyOVoXDTI4MDIyMzEyNDMyOVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARQfP/qUmnEcXIlE5PlkR4RCMn2XykMsPFZN0k1XfpkSA4KP0nC +ALUgiITKLsOQohYA7oDaFQD/ZhaRswgwEgmNo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZtRU3kIVNroUKD5QVcPw8VpuHhyOT +OtWpwxnSk/LUkjAKBggqhkjOPQQDAgNHADBEAiApAQ0e/qdVsd5qtXGHqYKRt30Y +LPaGPmy8wbX8+/KDhwIgXtt1TL97Z0rfq7iKXzXLRNk8jNntsrmRFoLVstXr3dA= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b151e41e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ +vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 +6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 +1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG +EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt new file mode 100644 index 00000000..b151e41e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ +vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 +6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 +1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG +EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt new file mode 100644 index 00000000..20e2da78 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICWDCCAf+gAwIBAgIQEoFXZgR6Uf98aXa8vCz/+TAKBggqhkjOPQQDAjBsMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 +YW1wbGUuY29tMB4XDTE4MDIyNTEyNDMyOVoXDTI4MDIyMzEyNDMyOVowWDELMAkG +A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu +Y2lzY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIB +BggqhkjOPQMBBwNCAARGfQx30I/dAcatxE5Ey/gIdySpWQTy7hJqw8FOTHhKFx6/ +Z+cUTF/TVsKC45EXxwcmFhvF7RKWdxVgyK7OYo2ho4GWMIGTMA4GA1UdDwEB/wQE +AwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIw +ADArBgNVHSMEJDAigCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l01ntSRTAn +BgNVHREEIDAeghNvcmRlcmVyLmV4YW1wbGUuY29tggdvcmRlcmVyMAoGCCqGSM49 +BAMCA0cAMEQCIEQ0rBt+tUCusMauftesbFj0Lwj8CICpO7RItGTwna7IAiAwm9F8 +g57CKJs8blVD3fqxC+XOMJnpL0/3H3tp3UO3Lw== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key new file mode 100755 index 00000000..5e72d385 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgkHOHT4FwJzq3zkdE +B8oY/IQF1+XRMX9XUFndIraWcZ+hRANCAARGfQx30I/dAcatxE5Ey/gIdySpWQTy +7hJqw8FOTHhKFx6/Z+cUTF/TVsKC45EXxwcmFhvF7RKWdxVgyK7OYo2h +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/da76f315609de11bb1600d6eef9555b6d2cd0bf265549ff820236974d67b5245_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/da76f315609de11bb1600d6eef9555b6d2cd0bf265549ff820236974d67b5245_sk new file mode 100755 index 00000000..ef0a45cd --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/da76f315609de11bb1600d6eef9555b6d2cd0bf265549ff820236974d67b5245_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgCD+hNwuA/p5PUc/p +8yHLkULik77W5RVTLu6mFNy+7sqhRANCAAR/LJmaZdt0jZMgTfsQvLkJTCDG4m8l +NdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo16y47 +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b151e41e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ +vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 +6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 +1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG +EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..f4501a0d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCjCCAbGgAwIBAgIRANozuXGOLYtQQSSKSzJsjpEwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAyMjUxMjQzMzBaFw0yODAyMjMxMjQzMzBaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABDoeTQ0Oo4M50oJQibVqpWAkdOXF3flmQjBD2aemB2jVXHacjJGJ +khUIjzsHgsRv9FSqITtH2xE/Tvq7Khe6ifSjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M6 +1anDGdKT8tSSMAoGCCqGSM49BAMCA0cAMEQCIDaxA0FeAom7yDl42F5MEHc7IGHV +PU6a15Cij4hJq+BOAiAHK7+XgPSmSGvL3nMYdRSPxD1BDrIEyH5ShWjRKtvB8w== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem new file mode 100644 index 00000000..69561b34 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLjCCAdWgAwIBAgIQA7Edgx6GV/aPDOHR6YQUDTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDIyNTEyNDMyOVoXDTI4MDIyMzEyNDMyOVowaTELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABI9wgZbmTMf1wDgtT6o16h8A9anN +k2lEk6zSiTTnyrFzNDzDKD5DcXmbpM5b4qZXbVPPn11SwIGnc6XYvo5vqD+jXzBd +MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB +Af8wKQYDVR0OBCIEIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M61anDGdKT8tSSMAoG +CCqGSM49BAMCA0cAMEQCIGrydKuzLP7/IC3Z+rk6VEZDzaf3eP+j3uJ8wLPlb3bo +AiBQRx26UGSjoAb8cKi8lSwIWpHF5tKwmUMuUvvd4lFa1g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/fc6dea208b6c9bb150c6e9a809fd6a5dcc6b5ce4a6481b025557ef4a6e3ecf44_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/fc6dea208b6c9bb150c6e9a809fd6a5dcc6b5ce4a6481b025557ef4a6e3ecf44_sk new file mode 100755 index 00000000..d38c8442 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/fc6dea208b6c9bb150c6e9a809fd6a5dcc6b5ce4a6481b025557ef4a6e3ecf44_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgJCUOS5YydUDCykHG +uAHptdOC8S/+s5jJoo+uHA45AXChRANCAAQ6Hk0NDqODOdKCUIm1aqVgJHTlxd35 +ZkIwQ9mnpgdo1Vx2nIyRiZIVCI87B4LEb/RUqiE7R9sRP076uyoXuon0 +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem new file mode 100644 index 00000000..f4501a0d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem @@ -0,0 +1,13 @@ +-----BEGIN CERTIFICATE----- +MIICCjCCAbGgAwIBAgIRANozuXGOLYtQQSSKSzJsjpEwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAyMjUxMjQzMzBaFw0yODAyMjMxMjQzMzBaMFYxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABDoeTQ0Oo4M50oJQibVqpWAkdOXF3flmQjBD2aemB2jVXHacjJGJ +khUIjzsHgsRv9FSqITtH2xE/Tvq7Khe6ifSjTTBLMA4GA1UdDwEB/wQEAwIHgDAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIBm1FTeQhU2uhQoPlBVw/DxWm4eHI5M6 +1anDGdKT8tSSMAoGCCqGSM49BAMCA0cAMEQCIDaxA0FeAom7yDl42F5MEHc7IGHV +PU6a15Cij4hJq+BOAiAHK7+XgPSmSGvL3nMYdRSPxD1BDrIEyH5ShWjRKtvB8w== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem new file mode 100644 index 00000000..b151e41e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ +vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 +6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 +1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG +EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt new file mode 100644 index 00000000..b151e41e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l +eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ +BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh +bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh +bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ +vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 +6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB +Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 +1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG +EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt new file mode 100644 index 00000000..acb88259 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICLDCCAdKgAwIBAgIQQB/Q27zvV3HdmgTddbiGSDAKBggqhkjOPQQDAjBsMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 +YW1wbGUuY29tMB4XDTE4MDIyNTEyNDMzMFoXDTI4MDIyMzEyNDMzMFowVjELMAkG +A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu +Y2lzY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +KoZIzj0DAQcDQgAEDyHyDf7GK1HvmZLXoRYmlF9eOiLHXVY9/MDFXuhxncFSA836 +RKH6uecjIYgCnJnYQ/jiOS8/r0upvSpQLeL9hKNsMGowDgYDVR0PAQH/BAQDAgWg +MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMCsG +A1UdIwQkMCKAINp28xVgneEbsWANbu+VVbbSzQvyZVSf+CAjaXTWe1JFMAoGCCqG +SM49BAMCA0gAMEUCIQDjzYv5ThB7Bw92F3cAG//LOTEFxc5tq8xIsBLNDX/7bAIg +T5A4E/wVTJQB16Y2pqYpWs3AOjy2SeLAxDC0mGtpk5I= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key new file mode 100755 index 00000000..8b3dad9c --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgAUQFRr3xtGi8hiuJ +84VuZaxOz05mU2tcJVfVALQZYwahRANCAAQPIfIN/sYrUe+ZktehFiaUX146Isdd +Vj38wMVe6HGdwVIDzfpEofq55yMhiAKcmdhD+OI5Lz+vS6m9KlAt4v2E +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..5637de20 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAM/vaDvPsyIiC9hvn5nnR8AwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLqI9dX7d9NGo3guL5FP8otGsiBjN7Bzd6dG/CayJDfjNRG34YO8t299u6EoFXvz +pcjAMGu0UKTrzMfcyOuzcMyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEILHMNMPy0M+AeGj6OhoR +h00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIF7Wl3A11zENr1Co +qGyu3h4fCukktFVyG/WPJUylVXjIAiB9LjpXm9ERgJMfZsjDIzCj9M4aQuVN9XLk +Xnx0uoKz7g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk new file mode 100755 index 00000000..87deb06d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/ca/fcf776b02a05600408d0be9d9752afc59f64950b721cacb363b5b95a0fea6216_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgr1xJRvvqH13IM5kC +rf8dUp5HUt5LMPQt5PPRUj4NODuhRANCAAS6iPXV+3fTRqN4Li+RT/KLRrIgYzew +c3enRvwmsiQ34zURt+GDvLdvfbuhKBV786XIwDBrtFCk68zH3Mjrs3DM +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..ca96d723 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQCTkaQxdPH5en+xQc80ZfTTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtXd2NGbWqiK4nyPdqTb5BZYA9q0mpzv2 +Aq6jM5CRadTsmWRDkZKzboaPolBTSkZ4F71TmBM0QAux31pojMmq/6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDRwAwRAIgEMqmOlsM +PED00efu1YJzssn1KfPaln7wd5WMJFxTV9QCIHWjDY7WsNJRAxHTOeNsKpGzDR+8 +SQSHwVS1grlwr2IF +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..5637de20 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAM/vaDvPsyIiC9hvn5nnR8AwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLqI9dX7d9NGo3guL5FP8otGsiBjN7Bzd6dG/CayJDfjNRG34YO8t299u6EoFXvz +pcjAMGu0UKTrzMfcyOuzcMyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEILHMNMPy0M+AeGj6OhoR +h00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIF7Wl3A11zENr1Co +qGyu3h4fCukktFVyG/WPJUylVXjIAiB9LjpXm9ERgJMfZsjDIzCj9M4aQuVN9XLk +Xnx0uoKz7g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..ca96d723 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQCTkaQxdPH5en+xQc80ZfTTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtXd2NGbWqiK4nyPdqTb5BZYA9q0mpzv2 +Aq6jM5CRadTsmWRDkZKzboaPolBTSkZ4F71TmBM0QAux31pojMmq/6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDRwAwRAIgEMqmOlsM +PED00efu1YJzssn1KfPaln7wd5WMJFxTV9QCIHWjDY7WsNJRAxHTOeNsKpGzDR+8 +SQSHwVS1grlwr2IF +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..5637de20 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAM/vaDvPsyIiC9hvn5nnR8AwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLqI9dX7d9NGo3guL5FP8otGsiBjN7Bzd6dG/CayJDfjNRG34YO8t299u6EoFXvz +pcjAMGu0UKTrzMfcyOuzcMyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEILHMNMPy0M+AeGj6OhoR +h00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIF7Wl3A11zENr1Co +qGyu3h4fCukktFVyG/WPJUylVXjIAiB9LjpXm9ERgJMfZsjDIzCj9M4aQuVN9XLk +Xnx0uoKz7g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/a1993072d65632fab2be261fa0d41218badd164eda336545366fc1ea9558161a_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/a1993072d65632fab2be261fa0d41218badd164eda336545366fc1ea9558161a_sk new file mode 100755 index 00000000..540a6b67 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/a1993072d65632fab2be261fa0d41218badd164eda336545366fc1ea9558161a_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgDZW8sacCC5Tj4EDa ++cO7Gj8R6xCwXxMz696o1mlFXd6hRANCAAS6FMmwSVXAd1nuFnLAWNjJxjy22P6x +hommYDfmk6H0NYchLF84HZifDDEd9vBor0hweKMKA1qaJ5HRmRQCXeoU +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem new file mode 100644 index 00000000..e8724e02 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQSeDyNLVb/3oNe+jV7hL4BjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuhTJsElVwHdZ7hZywFjYycY8ttj+sYaJ +pmA35pOh9DWHISxfOB2YnwwxHfbwaK9IcHijCgNamieR0ZkUAl3qFKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDSAAwRQIhANgiqxwH +jcMjvh/dIyP/Tp9Ta9bdXjVuG/6RcsUcyLVuAiAwY3Nf0STZYb04GqkF5wz1LCwO +2Jv23njFokdw52Av3Q== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt new file mode 100644 index 00000000..fb768b4c --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICZjCCAg2gAwIBAgIQT5LDpIbEhZ93KRfuBzhsPDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+br01bZtM+KZswLnXiZK0f3bfSqt +8+NnJc71NGx+VsUeU38jNl282Uo7A0PNKMQpr10BXomDl3jsTMK8E0aT16OBlzCB +lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgEkNmPHedLauZvdBejAlBvo4xhOWp +2+VxGreyMCZtcicwKAYDVR0RBCEwH4IWcGVlcjAub3JnMS5leGFtcGxlLmNvbYIF +cGVlcjAwCgYIKoZIzj0EAwIDRwAwRAIgdwC/WQ6wRHlTygTJJ8SiAoMrbDpTePhx +Z2GEIu5RtMwCIBuJ8LTJnFZNivBbTFU/65lhCLpVj5R3j5KuaJ+dovF5 +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key new file mode 100755 index 00000000..167650ec --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgU5XBkyixcK39vXnj +dBduk5jEjog3zpWU6JhIv5B5WLGhRANCAAT5uvTVtm0z4pmzAudeJkrR/dt9Kq3z +42clzvU0bH5WxR5TfyM2XbzZSjsDQ80oxCmvXQFeiYOXeOxMwrwTRpPX +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..ca96d723 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQCTkaQxdPH5en+xQc80ZfTTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtXd2NGbWqiK4nyPdqTb5BZYA9q0mpzv2 +Aq6jM5CRadTsmWRDkZKzboaPolBTSkZ4F71TmBM0QAux31pojMmq/6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDRwAwRAIgEMqmOlsM +PED00efu1YJzssn1KfPaln7wd5WMJFxTV9QCIHWjDY7WsNJRAxHTOeNsKpGzDR+8 +SQSHwVS1grlwr2IF +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..5637de20 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAM/vaDvPsyIiC9hvn5nnR8AwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLqI9dX7d9NGo3guL5FP8otGsiBjN7Bzd6dG/CayJDfjNRG34YO8t299u6EoFXvz +pcjAMGu0UKTrzMfcyOuzcMyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEILHMNMPy0M+AeGj6OhoR +h00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIF7Wl3A11zENr1Co +qGyu3h4fCukktFVyG/WPJUylVXjIAiB9LjpXm9ERgJMfZsjDIzCj9M4aQuVN9XLk +Xnx0uoKz7g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d10285162f81bfd66b1acdf631cccf7ac2cbcab3673a9c27ec9ed7fce1ea4803_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d10285162f81bfd66b1acdf631cccf7ac2cbcab3673a9c27ec9ed7fce1ea4803_sk new file mode 100755 index 00000000..0e848514 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/d10285162f81bfd66b1acdf631cccf7ac2cbcab3673a9c27ec9ed7fce1ea4803_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg3e+vDZnr+zvaGcZq +pJ9Dfiyi0wDLH5v44wOAcjI3KTShRANCAASrYYwsv0r6X9M5gw+OQ+79FJ5/m3Uk +C10HzT/LJ/twRwgx+WU/iYC2NFe3L31Wh+YsI3jvBwkoG8HHWg4PmfhJ +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem new file mode 100644 index 00000000..6a5b6b21 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRALZOlQWnY/I+JK9aFd3YQYMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKthjCy/Svpf0zmDD45D7v0Unn+bdSQL +XQfNP8sn+3BHCDH5ZT+JgLY0V7cvfVaH5iwjeO8HCSgbwcdaDg+Z+EmjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILHMNMPy0M+A +eGj6OhoRh00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIDlKy3Jm +qG+iFvVQbOAc6ZUuvs3vgDaPmraMX7Yev1hhAiA8o4Ot8Y7fifQM+nnoMFrD19no +Jpy8es25T/qKsUmKjw== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt new file mode 100644 index 00000000..f206275d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICZzCCAg2gAwIBAgIQTsjboZMtLR0ZpepWlz6A0jAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+m1ydGyZEXX1xC4hViMDeHIbpVae +PZIrvJNsmE3X7qLWkIVcG2slQLXMBcM9fzWcy7eYc2ubZl26JFMJ0Oe0AaOBlzCB +lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgEkNmPHedLauZvdBejAlBvo4xhOWp +2+VxGreyMCZtcicwKAYDVR0RBCEwH4IWcGVlcjEub3JnMS5leGFtcGxlLmNvbYIF +cGVlcjEwCgYIKoZIzj0EAwIDSAAwRQIhAJ1QixXF/H9l3nn29BnHQn0T9PCo4JMD +GEWbPvKzZ3J+AiBayXQNn8xUSkq6Vv5gfYP7VEAQiEVqWLXtfYpv7rkxQQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key new file mode 100755 index 00000000..8ef82d86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg1GpcOzQvyrQBsvzk +qzWrNW/J7ZmJnjrCBvrigiY40rKhRANCAAT6bXJ0bJkRdfXELiFWIwN4chulVp49 +kiu8k2yYTdfuotaQhVwbayVAtcwFwz1/NZzLt5hza5tmXbokUwnQ57QB +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/1243663c779d2dab99bdd05e8c0941be8e3184e5a9dbe5711ab7b230266d7227_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/1243663c779d2dab99bdd05e8c0941be8e3184e5a9dbe5711ab7b230266d7227_sk new file mode 100755 index 00000000..49cb2e71 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/1243663c779d2dab99bdd05e8c0941be8e3184e5a9dbe5711ab7b230266d7227_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgJPpj4xP8sP535MnK +H/naZVK5DbDzDPXRwYQ7YLDvioChRANCAATSTpBPSWash0k52YWz6xwyLlOHYndV +4DcSa+HASfFSOT8fP7b7HPg+wI+3y/JW0C/0Y2dpsy2COFAoAh6moQH0 +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..ca96d723 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQCTkaQxdPH5en+xQc80ZfTTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtXd2NGbWqiK4nyPdqTb5BZYA9q0mpzv2 +Aq6jM5CRadTsmWRDkZKzboaPolBTSkZ4F71TmBM0QAux31pojMmq/6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDRwAwRAIgEMqmOlsM +PED00efu1YJzssn1KfPaln7wd5WMJFxTV9QCIHWjDY7WsNJRAxHTOeNsKpGzDR+8 +SQSHwVS1grlwr2IF +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..5637de20 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAM/vaDvPsyIiC9hvn5nnR8AwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLqI9dX7d9NGo3guL5FP8otGsiBjN7Bzd6dG/CayJDfjNRG34YO8t299u6EoFXvz +pcjAMGu0UKTrzMfcyOuzcMyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEILHMNMPy0M+AeGj6OhoR +h00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIF7Wl3A11zENr1Co +qGyu3h4fCukktFVyG/WPJUylVXjIAiB9LjpXm9ERgJMfZsjDIzCj9M4aQuVN9XLk +Xnx0uoKz7g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/581fa072e48dc2a516f664df94ea687447c071f89fc0b783b147956a08929dcc_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/581fa072e48dc2a516f664df94ea687447c071f89fc0b783b147956a08929dcc_sk new file mode 100755 index 00000000..382448e0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/581fa072e48dc2a516f664df94ea687447c071f89fc0b783b147956a08929dcc_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgpANnM2zJ/oz7c31B +ahODy1OSvibxUHpQ/1xiUleYvH+hRANCAAS1d3Y0ZtaqIrifI92pNvkFlgD2rSan +O/YCrqMzkJFp1OyZZEORkrNuho+iUFNKRngXvVOYEzRAC7HfWmiMyar/ +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem new file mode 100644 index 00000000..ca96d723 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQCTkaQxdPH5en+xQc80ZfTTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtXd2NGbWqiK4nyPdqTb5BZYA9q0mpzv2 +Aq6jM5CRadTsmWRDkZKzboaPolBTSkZ4F71TmBM0QAux31pojMmq/6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDRwAwRAIgEMqmOlsM +PED00efu1YJzssn1KfPaln7wd5WMJFxTV9QCIHWjDY7WsNJRAxHTOeNsKpGzDR+8 +SQSHwVS1grlwr2IF +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt new file mode 100644 index 00000000..3192f747 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeKgAwIBAgIRANdqRtQ4BSl3O6sg5VeYxUkwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABOfoHrkSSoVxdU27Ze8cJFTfs/Gh +0qj2kHAraNi/dHygZqSCQoXAL7Ynv9VB0koqy1SnuHXPsxXmjO9gBVBHyLajbDBq +MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCASQ2Y8d50tq5m90F6MCUG+jjGE5anb +5XEat7IwJm1yJzAKBggqhkjOPQQDAgNHADBEAiAKydl2QDdJMz5BTRG16enduyDA +VyY+BozDhuC5mMoFUwIgeOxgp0xSS05xdpj1Zh9JJRDiYPbiRNf5/52vBaohYbQ= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key new file mode 100755 index 00000000..90ad6f48 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg7WgTs8H5ItZS1RuP +1E8d5bCCcXXF8ThB7/e7/gfXrgyhRANCAATn6B65EkqFcXVNu2XvHCRU37PxodKo +9pBwK2jYv3R8oGakgkKFwC+2J7/VQdJKKstUp7h1z7MV5ozvYAVQR8i2 +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem new file mode 100644 index 00000000..a08b78cd --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQasN+oEYEWpzdwd5/XOoVNzAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2A2AbNszJAGlxFu5KMOvCVkuJrH//iw/ +kbkgBsnG6wZCYuGlNAkSK9BZPTV/qxTLnZqNIN8uvg6eO3zYrhIvE6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDSAAwRQIhAPYzdEPT +ek748A82YB4I6CC5K28k9IXjh0Ny4Z3UmiYEAiBLqwWDlJQMFoY7TOtrIHLMEpHz +8mclDuUg7Gtp1ktHgg== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem new file mode 100644 index 00000000..5637de20 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAM/vaDvPsyIiC9hvn5nnR8AwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLqI9dX7d9NGo3guL5FP8otGsiBjN7Bzd6dG/CayJDfjNRG34YO8t299u6EoFXvz +pcjAMGu0UKTrzMfcyOuzcMyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEILHMNMPy0M+AeGj6OhoR +h00gQTCEX9jus20uWUTXdnccMAoGCCqGSM49BAMCA0cAMEQCIF7Wl3A11zENr1Co +qGyu3h4fCukktFVyG/WPJUylVXjIAiB9LjpXm9ERgJMfZsjDIzCj9M4aQuVN9XLk +Xnx0uoKz7g== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f84683030531deda35a8bcd1260c21f05b33c110be8e69943eba6a8db79c5292_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f84683030531deda35a8bcd1260c21f05b33c110be8e69943eba6a8db79c5292_sk new file mode 100755 index 00000000..78c37885 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f84683030531deda35a8bcd1260c21f05b33c110be8e69943eba6a8db79c5292_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg9q05wVgS9yaWAFk1 +E9ANck6YYlgmIM//Blv+6pM/u1ahRANCAATYDYBs2zMkAaXEW7kow68JWS4msf/+ +LD+RuSAGycbrBkJi4aU0CRIr0Fk9NX+rFMudmo0g3y6+Dp47fNiuEi8T +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem new file mode 100644 index 00000000..a08b78cd --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQasN+oEYEWpzdwd5/XOoVNzAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2A2AbNszJAGlxFu5KMOvCVkuJrH//iw/ +kbkgBsnG6wZCYuGlNAkSK9BZPTV/qxTLnZqNIN8uvg6eO3zYrhIvE6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgscw0w/LQz4B4 +aPo6GhGHTSBBMIRf2O6zbS5ZRNd2dxwwCgYIKoZIzj0EAwIDSAAwRQIhAPYzdEPT +ek748A82YB4I6CC5K28k9IXjh0Ny4Z3UmiYEAiBLqwWDlJQMFoY7TOtrIHLMEpHz +8mclDuUg7Gtp1ktHgg== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt new file mode 100644 index 00000000..92fe35f0 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAe+gAwIBAgIQQeN5VPrLlibQPtNOQthnbDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMHYxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMR8wHQYD +VQQDExZ0bHNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0D +AQcDQgAE0k6QT0lmrIdJOdmFs+scMi5Th2J3VeA3EmvhwEnxUjk/Hz+2+xz4PsCP +t8vyVtAv9GNnabMtgjhQKAIepqEB9KNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1Ud +JQQIMAYGBFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgEkNmPHedLauZ +vdBejAlBvo4xhOWp2+VxGreyMCZtcicwCgYIKoZIzj0EAwIDSAAwRQIhAKwetr9p +Is+JTNel553pX5pi5ecfl+LPyvB/zWB23AGzAiAWj8egI/bieJCzFJw1lZvn9WzX +5p56JI3CN5Xobf4khQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt new file mode 100644 index 00000000..a0d62548 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeKgAwIBAgIRANKGy1+DYv1WeB1N32dPIRwwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABHvBdqZce5Xrovq21GffLn/5iASd +3Yl9+IzJsu0QiuzBG+M+T3XktgNVOuuqzfLiEWksMcYXRgN8dvhlmGPCyDyjbDBq +MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCASQ2Y8d50tq5m90F6MCUG+jjGE5anb +5XEat7IwJm1yJzAKBggqhkjOPQQDAgNHADBEAiBK7i2nm1kVc0Idk1oQTRQKH8Ns +55kBEdUGDN1rkGmtnQIgX15PbCGpfik83zYOYlNIDIM1ivAEQLX9A2dlpVxdkDQ= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key new file mode 100755 index 00000000..67bd3a50 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg1r0qIz6WRc5qWCW0 +d7nvoT0GB06hhiLL+n+ZihybNb6hRANCAAR7wXamXHuV66L6ttRn3y5/+YgEnd2J +ffiMybLtEIrswRvjPk915LYDVTrrqs3y4hFpLDHGF0YDfHb4ZZhjwsg8 +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk new file mode 100755 index 00000000..f9e6047d --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/b59bba37975dafcc4a93984aa01d3d29b64894617db9e0c9a2d486b5273cbd27_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgiIO19U4lOO2eDfDV +PE7kxj4egOJUfPfrqg93nWNWSB6hRANCAARfvWvmM81Vgv4Ko4fVZldjpu96lDIs +VEQe1Sw65cV+OV6ukbCQ9Uk2KkNlSJ9NFLyKZ+P6zq3HmlEl3LxtYMhV +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..3d6efa86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQA51S5aV8OFKTDEkADa/B4TAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +X71r5jPNVYL+CqOH1WZXY6bvepQyLFREHtUsOuXFfjlerpGwkPVJNipDZUifTRS8 +imfj+s6tx5pRJdy8bWDIVaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeyt2U8RRLWzpU144FAY1 +9Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgcm/8AFvk79pZzHBu +7tEzYxpM99AjHnI7lQugayoD+2ACID6sgfNNzEgRm/5iZADeLAPioUiBJUqAIWYq +HKaldZpb +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..f548b6c4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIrZokP5xguxCqWjUeu0jnAwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGDqXVD4yOX65oU0eY3j5UtD8Gr8n/s+ +eODjPP76wNeBoSqljQYM+D953dBtzZ87udrwQ2uvcpUI1R1mHTMuNmSjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHsrdlPEUS1s +6VNeOBQGNfU5vYoTC+VKyU9+Ext1oPI+MAoGCCqGSM49BAMCA0gAMEUCIQCojuxd +EqSDDDUUJstAmAqU65xkd1/Yf0BVpLdCe++WigIgLWC9rBPpUa+Yhe3yy00+BlqG +xZ0h2eeiHaMuF6Qawy4= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..3d6efa86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQA51S5aV8OFKTDEkADa/B4TAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +X71r5jPNVYL+CqOH1WZXY6bvepQyLFREHtUsOuXFfjlerpGwkPVJNipDZUifTRS8 +imfj+s6tx5pRJdy8bWDIVaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeyt2U8RRLWzpU144FAY1 +9Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgcm/8AFvk79pZzHBu +7tEzYxpM99AjHnI7lQugayoD+2ACID6sgfNNzEgRm/5iZADeLAPioUiBJUqAIWYq +HKaldZpb +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..f548b6c4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIrZokP5xguxCqWjUeu0jnAwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGDqXVD4yOX65oU0eY3j5UtD8Gr8n/s+ +eODjPP76wNeBoSqljQYM+D953dBtzZ87udrwQ2uvcpUI1R1mHTMuNmSjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHsrdlPEUS1s +6VNeOBQGNfU5vYoTC+VKyU9+Ext1oPI+MAoGCCqGSM49BAMCA0gAMEUCIQCojuxd +EqSDDDUUJstAmAqU65xkd1/Yf0BVpLdCe++WigIgLWC9rBPpUa+Yhe3yy00+BlqG +xZ0h2eeiHaMuF6Qawy4= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..3d6efa86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQA51S5aV8OFKTDEkADa/B4TAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +X71r5jPNVYL+CqOH1WZXY6bvepQyLFREHtUsOuXFfjlerpGwkPVJNipDZUifTRS8 +imfj+s6tx5pRJdy8bWDIVaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeyt2U8RRLWzpU144FAY1 +9Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgcm/8AFvk79pZzHBu +7tEzYxpM99AjHnI7lQugayoD+2ACID6sgfNNzEgRm/5iZADeLAPioUiBJUqAIWYq +HKaldZpb +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/5d14548de7149e4c62bcef9f8de62358238101620a7362e826b9af7ff33480ad_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/5d14548de7149e4c62bcef9f8de62358238101620a7362e826b9af7ff33480ad_sk new file mode 100755 index 00000000..d8670e15 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/5d14548de7149e4c62bcef9f8de62358238101620a7362e826b9af7ff33480ad_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgjnfZ4xXPz6BKKoKI +mYXLxZ9uxUEPe3ZwayQRLtZ0wHGhRANCAARQTN4A1LP+DKfQ8hf7olEJEJNVL6pp +grobgFyYHkwKG/7c77CxhkUu/HbLj1UhlUt6eL7bj4VATFSra57HII3p +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem new file mode 100644 index 00000000..eb9b920a --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKoFq36AGyh9tmw1qzjKp2YwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFBM3gDUs/4Mp9DyF/uiUQkQk1UvqmmC +uhuAXJgeTAob/tzvsLGGRS78dsuPVSGVS3p4vtuPhUBMVKtrnscgjemjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHsrdlPEUS1s +6VNeOBQGNfU5vYoTC+VKyU9+Ext1oPI+MAoGCCqGSM49BAMCA0cAMEQCIDbFc/hr +0RYfp0e9HqBW+tel9c9VCW7E+C7XO4e7ZYBJAiAVkjEFKpKadLUpA2cK0YHobNRH +zxIaKjL+wLVfr2wTzQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt new file mode 100644 index 00000000..24f4f933 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICZzCCAg2gAwIBAgIQFR45GJqukf1860Wth7leuDAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEG0jfYL8jEY+r+caurdhOUe59Rsk7 +QHqk0ujYhvXtF53iC5y/rLDz3NKjuuni3kYN5TMPZukTPqQC1QX7gV0uQKOBlzCB +lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC +MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgYQjM/AP3znikMgBMNbu0tLT2sDUe +IgpKneOjbSCGikowKAYDVR0RBCEwH4IWcGVlcjAub3JnMi5leGFtcGxlLmNvbYIF +cGVlcjAwCgYIKoZIzj0EAwIDSAAwRQIhAJYCXfTpsx5gAx8C95HV65S8TgXxfwW4 +hJq+y6Ud2yfQAiA5D6E7HfQOORvDora/A5hZ9t5IGQmMw3clR/TyYg/4Kw== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key new file mode 100755 index 00000000..71954ff4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgj5m47xhWvmSsjBPh +S1Y2yQ85ekUW05HobtQtznn2W72hRANCAAQbSN9gvyMRj6v5xq6t2E5R7n1GyTtA +eqTS6NiG9e0XneILnL+ssPPc0qO66eLeRg3lMw9m6RM+pALVBfuBXS5A +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..f548b6c4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIrZokP5xguxCqWjUeu0jnAwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGDqXVD4yOX65oU0eY3j5UtD8Gr8n/s+ +eODjPP76wNeBoSqljQYM+D953dBtzZ87udrwQ2uvcpUI1R1mHTMuNmSjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHsrdlPEUS1s +6VNeOBQGNfU5vYoTC+VKyU9+Ext1oPI+MAoGCCqGSM49BAMCA0gAMEUCIQCojuxd +EqSDDDUUJstAmAqU65xkd1/Yf0BVpLdCe++WigIgLWC9rBPpUa+Yhe3yy00+BlqG +xZ0h2eeiHaMuF6Qawy4= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..3d6efa86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQA51S5aV8OFKTDEkADa/B4TAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +X71r5jPNVYL+CqOH1WZXY6bvepQyLFREHtUsOuXFfjlerpGwkPVJNipDZUifTRS8 +imfj+s6tx5pRJdy8bWDIVaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeyt2U8RRLWzpU144FAY1 +9Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgcm/8AFvk79pZzHBu +7tEzYxpM99AjHnI7lQugayoD+2ACID6sgfNNzEgRm/5iZADeLAPioUiBJUqAIWYq +HKaldZpb +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/2e38502a52ee50337182ba19ccbd0ef566316876b11685db999d59e5118666fb_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/2e38502a52ee50337182ba19ccbd0ef566316876b11685db999d59e5118666fb_sk new file mode 100755 index 00000000..212f3ffe --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/2e38502a52ee50337182ba19ccbd0ef566316876b11685db999d59e5118666fb_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgbO0IUfs9aYggJxrJ +UndE5olrRPW6fevvUj16jhhLBUyhRANCAAQg8dIZpdiiSTINPuGO/vFHup2v/i6d +rLjqd7L5/5Jpff/4ZLbcRPPGN5ljKgpjL6cyNMZW0zHWT2b8ocdlRLg9 +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem new file mode 100644 index 00000000..4fb596c9 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQKHCjvLJSTkKm5lsAG4StsTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIPHSGaXYokkyDT7hjv7xR7qdr/4unay4 +6ney+f+SaX3/+GS23ETzxjeZYyoKYy+nMjTGVtMx1k9m/KHHZUS4PaNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeyt2U8RRLWzp +U144FAY19Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgRiUmbSDL +ZT4ETQzsS57MpfinlBo+WM/3ChUtTOL8BlgCIB8jfwjtaP22vH4w+V52ztTgQCnq +lCO/1jpx9z0ii78C +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt new file mode 100644 index 00000000..9619584c --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICaDCCAg6gAwIBAgIRAMss2R//Se8axddSKg66s4QwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNv +bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABC9LEXgLG+Oj+CUUtRqRrqMCYPSQ +9SL07T396JNuva/VLTSjefj0uUVzhbm4ns0Q/PGfr0VdsAF33YC7mqM7gpyjgZcw +gZQwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD +AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIGEIzPwD9854pDIATDW7tLS09rA1 +HiIKSp3jo20ghopKMCgGA1UdEQQhMB+CFnBlZXIxLm9yZzIuZXhhbXBsZS5jb22C +BXBlZXIxMAoGCCqGSM49BAMCA0gAMEUCIQCEV74/9zP+LalP3E3RaqzlbYpAf2yy +JjIsi+7CS+Tz6QIgbkHG184R1G2jfQpZnVlLhliv1+Y1Z06zUOxihPlYsVg= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key new file mode 100755 index 00000000..886d4d9a --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgNawqDy1KjEQk2zeI +LrAyiDkuAsZ0afH9e/i4d90cHPuhRANCAAQvSxF4Cxvjo/glFLUaka6jAmD0kPUi +9O09/eiTbr2v1S00o3n49LlFc4W5uJ7NEPzxn69FXbABd92Au5qjO4Kc +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/6108ccfc03f7ce78a432004c35bbb4b4b4f6b0351e220a4a9de3a36d20868a4a_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/6108ccfc03f7ce78a432004c35bbb4b4b4f6b0351e220a4a9de3a36d20868a4a_sk new file mode 100755 index 00000000..a18e31e3 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/6108ccfc03f7ce78a432004c35bbb4b4b4f6b0351e220a4a9de3a36d20868a4a_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgVOqUvvBWRSM40R9Y +4/9PkifPYBE8o0MClMNagRG4btihRANCAARMHgFur4fGzPTu4QlK1DWDPdUhaEXP +ozWYoLuDNdQnzmXISMRdjiNQv5G+x54cnAndFzxG/QMbq3LxkibHryME +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..f548b6c4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIrZokP5xguxCqWjUeu0jnAwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGDqXVD4yOX65oU0eY3j5UtD8Gr8n/s+ +eODjPP76wNeBoSqljQYM+D953dBtzZ87udrwQ2uvcpUI1R1mHTMuNmSjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHsrdlPEUS1s +6VNeOBQGNfU5vYoTC+VKyU9+Ext1oPI+MAoGCCqGSM49BAMCA0gAMEUCIQCojuxd +EqSDDDUUJstAmAqU65xkd1/Yf0BVpLdCe++WigIgLWC9rBPpUa+Yhe3yy00+BlqG +xZ0h2eeiHaMuF6Qawy4= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..3d6efa86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQA51S5aV8OFKTDEkADa/B4TAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +X71r5jPNVYL+CqOH1WZXY6bvepQyLFREHtUsOuXFfjlerpGwkPVJNipDZUifTRS8 +imfj+s6tx5pRJdy8bWDIVaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeyt2U8RRLWzpU144FAY1 +9Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgcm/8AFvk79pZzHBu +7tEzYxpM99AjHnI7lQugayoD+2ACID6sgfNNzEgRm/5iZADeLAPioUiBJUqAIWYq +HKaldZpb +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/5fcbc56face045c33ad213f276293bbe3c54c2e69936045af5c9c46f38b4eddc_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/5fcbc56face045c33ad213f276293bbe3c54c2e69936045af5c9c46f38b4eddc_sk new file mode 100755 index 00000000..70b8270e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/5fcbc56face045c33ad213f276293bbe3c54c2e69936045af5c9c46f38b4eddc_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgKaRg+xHOY/vT5n/v +GC1p7z61WCHY8ExYQgMjSISlZWOhRANCAARg6l1Q+Mjl+uaFNHmN4+VLQ/Bq/J/7 +Pnjg4zz++sDXgaEqpY0GDPg/ed3Qbc2fO7na8ENrr3KVCNUdZh0zLjZk +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem new file mode 100644 index 00000000..f548b6c4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAIrZokP5xguxCqWjUeu0jnAwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0MzI5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGDqXVD4yOX65oU0eY3j5UtD8Gr8n/s+ +eODjPP76wNeBoSqljQYM+D953dBtzZ87udrwQ2uvcpUI1R1mHTMuNmSjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHsrdlPEUS1s +6VNeOBQGNfU5vYoTC+VKyU9+Ext1oPI+MAoGCCqGSM49BAMCA0gAMEUCIQCojuxd +EqSDDDUUJstAmAqU65xkd1/Yf0BVpLdCe++WigIgLWC9rBPpUa+Yhe3yy00+BlqG +xZ0h2eeiHaMuF6Qawy4= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt new file mode 100644 index 00000000..411e9b0f --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeGgAwIBAgIQZHOG56pgeuzzT/j9cEJrazAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEJFXMgo5Duf3i9dXAmjqpM1bKYlcm +NOFhYnUAoeYbYNXmAUkHa1u65tyLNX/hYHzkSpiaY/X/SMdenlWE4hU/U6NsMGow +DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIGEIzPwD9854pDIATDW7tLS09rA1HiIK +Sp3jo20ghopKMAoGCCqGSM49BAMCA0gAMEUCIQDH/hhYC4gyKqyzpAfFb1Uktj+5 +scDsFQuaAQjOG8TfRAIgV2RqJ1E/8Aeaqv/bDHl2REiJXo0HmkdJfPSrxxcbfjI= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key new file mode 100755 index 00000000..607c912e --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgiZCAQpMefALqdu3d +Z9b7RY4a92mtncPdlltuzKevU/mhRANCAAQkVcyCjkO5/eL11cCaOqkzVspiVyY0 +4WFidQCh5htg1eYBSQdrW7rm3Is1f+FgfORKmJpj9f9Ix16eVYTiFT9T +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem new file mode 100644 index 00000000..c94c5d10 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQFJqmmjDZ8gJ7hXoqjrRd0jAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEicuHnLfV+9s/NEbMYhYQdAyDVctkJaG +Ipx6mo1btMhVAdbSmVyUgW6GjydGRmuu0DKvJtWJ22VgsR1xBaNeU6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeyt2U8RRLWzp +U144FAY19Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDSAAwRQIhAKJMRhcO +n1Gw0V9X6L4XYIsUMIXgR98ePGI2zIc3BPucAiBGx02uiRzzZ+brBNpzFxZV3YGo +wK0Fmhp/BHFD4fZeBw== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem new file mode 100644 index 00000000..3d6efa86 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQA51S5aV8OFKTDEkADa/B4TAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +X71r5jPNVYL+CqOH1WZXY6bvepQyLFREHtUsOuXFfjlerpGwkPVJNipDZUifTRS8 +imfj+s6tx5pRJdy8bWDIVaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeyt2U8RRLWzpU144FAY1 +9Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDRwAwRAIgcm/8AFvk79pZzHBu +7tEzYxpM99AjHnI7lQugayoD+2ACID6sgfNNzEgRm/5iZADeLAPioUiBJUqAIWYq +HKaldZpb +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7f466d17e8f7540362bd3a7a93e0ed2f3c574b61b4f55bb21ff390b835920c5e_sk b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7f466d17e8f7540362bd3a7a93e0ed2f3c574b61b4f55bb21ff390b835920c5e_sk new file mode 100755 index 00000000..b6af66b9 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7f466d17e8f7540362bd3a7a93e0ed2f3c574b61b4f55bb21ff390b835920c5e_sk @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgpUKNGLukmVlst3mX +CPQVxgTiWDPBEBZvKo+5OyYjOf+hRANCAAQSJy4ect9X72z80RsxiFhB0DINVy2Q +loYinHqajVu0yFUB1tKZXJSBboaPJ0ZGa67QMq8m1YnbZWCxHXEFo15T +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem new file mode 100644 index 00000000..c94c5d10 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQFJqmmjDZ8gJ7hXoqjrRd0jAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEicuHnLfV+9s/NEbMYhYQdAyDVctkJaG +Ipx6mo1btMhVAdbSmVyUgW6GjydGRmuu0DKvJtWJ22VgsR1xBaNeU6NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeyt2U8RRLWzp +U144FAY19Tm9ihML5UrJT34TG3Wg8j4wCgYIKoZIzj0EAwIDSAAwRQIhAKJMRhcO +n1Gw0V9X6L4XYIsUMIXgR98ePGI2zIc3BPucAiBGx02uiRzzZ+brBNpzFxZV3YGo +wK0Fmhp/BHFD4fZeBw== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt new file mode 100644 index 00000000..fa02c4b7 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt @@ -0,0 +1,15 @@ +-----BEGIN CERTIFICATE----- +MIICSTCCAfCgAwIBAgIRAMIxzzbmc1T697ZrUXRDAoIwCgYIKoZIzj0EAwIwdjEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs +c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMjI1MTI0MzI5WhcNMjgwMjIzMTI0 +MzI5WjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE +BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G +A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABEweAW6vh8bM9O7hCUrUNYM91SFoRc+jNZigu4M11CfOZchIxF2OI1C/ +kb7HnhycCd0XPEb9AxurcvGSJsevIwSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV +HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIGEIzPwD9854 +pDIATDW7tLS09rA1HiIKSp3jo20ghopKMAoGCCqGSM49BAMCA0cAMEQCIAg687Oi +EaCkk4nI4m6p8uoRG1mVz6TD0mtwUZ8p790pAiBPPrsSeswN0K/iVNglTEzSpzPS +avmbUkIiY1w2jG1FTQ== +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt new file mode 100644 index 00000000..fca30e87 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICOzCCAeGgAwIBAgIQQIVU+xNtDYZ+dvxxfPHVfzAKBggqhkjOPQQDAjB2MQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz +Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz +MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH +Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcyLmV4YW1wbGUuY29t +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEV945aDvzVuA1823A4FT769rukxLO +wpoW30NU8YvLeTB89EmWtM6hMPL3GK0MaMTCyNfGwZrWlsoWNPEpptOVqaNsMGow +DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIGEIzPwD9854pDIATDW7tLS09rA1HiIK +Sp3jo20ghopKMAoGCCqGSM49BAMCA0gAMEUCIQDxZ0vuvUiVJPQ/bGNL1JR2ruAg +s+bPCtEzHm8q37Jf1wIgG+59wwjG459daFZlz+nxW45XshHc/v0UKmH/vnFPNzw= +-----END CERTIFICATE----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key new file mode 100755 index 00000000..c50755d4 --- /dev/null +++ b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgrsNW0S20jzMadwhE +3+KDaOubeZkplLfvsc9RwswQU9uhRANCAARX3jloO/NW4DXzbcDgVPvr2u6TEs7C +mhbfQ1Txi8t5MHz0SZa0zqEw8vcYrQxoxMLI18bBmtaWyhY08Smm05Wp +-----END PRIVATE KEY----- diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/foo.tx b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/foo.tx new file mode 100644 index 00000000..bca7e6eb Binary files /dev/null and b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/foo.tx differ diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/orderer.block b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/orderer.block new file mode 100644 index 00000000..5f591bea Binary files /dev/null and b/src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/orderer.block differ diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config-tls.yaml b/src/test/fixture/sdkintegration/network_configs/network-config-tls.yaml similarity index 80% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config-tls.yaml rename to src/test/fixture/sdkintegration/network_configs/network-config-tls.yaml index 7f99ff7f..436a4cc4 100755 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config-tls.yaml +++ b/src/test/fixture/sdkintegration/network_configs/network-config-tls.yaml @@ -135,16 +135,16 @@ organizations: # this way. The SDK should allow applications to set the org admin identity via APIs, and only use # this route as an alternative when it exists. adminPrivateKey: - #path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk + #path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk pem: | -----BEGIN PRIVATE KEY----- - MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQghnA7rdgbZi/wndus - iXjyf0KgE6OKZjQ+5INjwelRAC6hRANCAASb3u+hY+U/FZvhYDN6d08HJ1v56UJU - yz/n2NHyJgTg6kC05AaJMeGIinEF0JeJtRDNVQGzoQJQYjnzUTS9FvGh + MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgpANnM2zJ/oz7c31B + ahODy1OSvibxUHpQ/1xiUleYvH+hRANCAAS1d3Y0ZtaqIrifI92pNvkFlgD2rSan + O/YCrqMzkJFp1OyZZEORkrNuho+iUFNKRngXvVOYEzRAC7HfWmiMyar/ -----END PRIVATE KEY----- signedCert: - path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem + path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem #pem: | # -----BEGIN CERTIFICATE----- # MIICGjCCAcCgAwIBAgIRAPDmqtljAyXFJ06ZnQjXqbMwCgYIKoZIzj0EAwIwczEL @@ -189,23 +189,22 @@ orderers: hostnameOverride: orderer.example.com grpc-max-send-message-length: 15 - + # src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca tlsCACerts: pem: | -----BEGIN CERTIFICATE----- - MIICVjCCAf2gAwIBAgIRAObd2QMXn1setwlDm/DfrKgwCgYIKoZIzj0EAwIwaTEL + MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG - cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt - cGxlLmNvbTAeFw0xNzA2MjIxMjA4NDJaFw0yNzA2MjAxMjA4NDJaMFgxCzAJBgNV - BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp - c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI - KoZIzj0DAQcDQgAEsJfeClgvQuvWgA3o/kw5PbfXou0cggFyBw3RjD/429fTknwH - Za6RfEOwabIILptiHG6pWoPYi0HmlR4uIykhP6OBljCBkzAOBgNVHQ8BAf8EBAMC - BaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAw - KwYDVR0jBCQwIoAg5XU5jq8vDUdbqJ9WjEn1cBOvk4wVd1bAZUuU5ZJAuP4wJwYD - VR0RBCAwHoITb3JkZXJlci5leGFtcGxlLmNvbYIHb3JkZXJlcjAKBggqhkjOPQQD - AgNHADBEAiB065p69a/5Qj5MkP50kb0e8T+1Lxi2H9LaNyBtixfEsgIgFq8GuCg/ - xs68U+wVvJElheirLpRgB6D8mTecFmuTXJA= + cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l + eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ + BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh + bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh + bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ + vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 + 6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB + Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 + 1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG + EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k -----END CERTIFICATE----- # @@ -232,19 +231,19 @@ peers: tlsCACerts: pem: | -----BEGIN CERTIFICATE----- - MIICZTCCAgugAwIBAgIRAMFAGL3/bpvBIPB/uHDOR9QwCgYIKoZIzj0EAwIwczEL - MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG - cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh - Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcwNjIyMTIwODQyWhcNMjcwNjIwMTIwODQy - WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN - U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ - MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMoGXDUqPEmdEJEf3d8u+g9SwtmTED4j - pCw2ACuV6b9FskvgVXspzXIKST4ORSZrI7RJPDLswpsLWJI0+7KrImyjgZcwgZQw - DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM - BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPz3drAqBWAECNC+nZdSr8WfZJULchys - s2O1uVoP6mIWMCgGA1UdEQQhMB+CFnBlZXIwLm9yZzEuZXhhbXBsZS5jb22CBXBl - ZXIwMAoGCCqGSM49BAMCA0gAMEUCIQCf9GB02Kb1tMjzYfjHrOwAMZkC3Wv0cMAm - vyh0s5F3tAIgHvYahP5qqW3CMjSBsxO6HbcovQOK3X5UFyilg2lqEx8= + MIICZjCCAg2gAwIBAgIQT5LDpIbEhZ93KRfuBzhsPDAKBggqhkjOPQQDAjB2MQsw + CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy + YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz + Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz + MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH + Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29t + MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+br01bZtM+KZswLnXiZK0f3bfSqt + 8+NnJc71NGx+VsUeU38jNl282Uo7A0PNKMQpr10BXomDl3jsTMK8E0aT16OBlzCB + lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC + MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgEkNmPHedLauZvdBejAlBvo4xhOWp + 2+VxGreyMCZtcicwKAYDVR0RBCEwH4IWcGVlcjAub3JnMS5leGFtcGxlLmNvbYIF + cGVlcjAwCgYIKoZIzj0EAwIDRwAwRAIgdwC/WQ6wRHlTygTJJ8SiAoMrbDpTePhx + Z2GEIu5RtMwCIBuJ8LTJnFZNivBbTFU/65lhCLpVj5R3j5KuaJ+dovF5 -----END CERTIFICATE----- @@ -260,7 +259,7 @@ peers: hostnameOverride: peer1.org1.example.com tlsCACerts: - path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt + path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt @@ -275,7 +274,7 @@ peers: hostnameOverride: peer0.org2.example.com tlsCACerts: - path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt + path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt # # Fabric-CA is a special kind of Certificate Authority provided by Hyperledger Fabric which allows diff --git a/src/test/fixture/sdkintegration/network_configs/network-config.json b/src/test/fixture/sdkintegration/network_configs/network-config.json new file mode 100755 index 00000000..9a152e09 --- /dev/null +++ b/src/test/fixture/sdkintegration/network_configs/network-config.json @@ -0,0 +1,118 @@ +{ + "name": "global-trade-network", + "x-type": "hlfv1", + "description": "The network to be in if you want to stay in the global trade business", + "version": "1.0.0", + "client": { + "organization": "Org1", + "credentialStore": { + "path": "/tmp/hfc-kvs", + "cryptoStore": { + "path": "/tmp/hfc-cvs" + }, + "wallet": "wallet-name" + } + }, + "channels": { + "mychannel": { + "orderers": [ + "orderer.example.com" + ], + "peers": { + "peer0.org1.example.com": { + "endorsingPeer": true, + "chaincodeQuery": true, + "ledgerQuery": true, + "eventSource": true + }, + "peer0.org2.example.com": { + "endorsingPeer": true, + "chaincodeQuery": false, + "ledgerQuery": true, + "eventSource": false + } + }, + "chaincodes": [ + "example02:v1", + "marbles:1.0" + ] + } + }, + "organizations": { + "Org1": { + "mspid": "Org1MSP", + "peers": [ + "peer0.org1.example.com", + "peer1.org1.example.com" + ], + "certificateAuthorities": [ + "ca-org1" + ], + "adminPrivateKey": { + "pem": "-----BEGIN PRIVATE KEY-----\nMIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQghnA7rdgbZi/wndusiXjyf0KgE6OKZjQ+5INjwelRAC6hRANCAASb3u+hY+U/FZvhYDN6d08HJ1v56UJUyz/n2NHyJgTg6kC05AaJMeGIinEF0JeJtRDNVQGzoQJQYjnzUTS9FvGh\n-----END PRIVATE KEY-----" + }, + "signedCert": { + "path": "src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem" + } + }, + "Org2": { + "mspid": "Org2MSP", + "peers": [ + "peer0.org2.example.com" + ] + } + }, + "orderers": { + "orderer.example.com": { + "url": "grpcs://localhost:7050", + "grpcOptions": { + "ssl-target-name-override": "orderer.example.com", + "grpc-max-send-message-length": 15 + }, + "tlsCACerts": { + "pem": "-----BEGIN CERTIFICATE----- " + } + } + }, + "peers": { + "peer0.org1.example.com": { + "url": "grpcs://localhost:7051", + "eventUrl": "grpcs://localhost:7053", + "grpcOptions": { + "ssl-target-name-override": "peer0.org1.example.com", + "grpc.http2.keepalive_time": 15 + }, + "tlsCACerts": { + "path": "src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt" + } + }, + "peer0.org2.example.com": { + "url": "grpcs://localhost:8051", + "eventUrl": "grpcs://localhost:8053", + "grpcOptions": { + "ssl-target-name-override": "peer0.org2.example.com" + }, + "tlsCACerts": { + "path": "src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt" + } + } + }, + "certificateAuthorities": { + "ca-org1": { + "url": "https://localhost:7054", + "httpOptions": { + "verify": true + }, + "tlsCACerts": { + "path": "peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem" + }, + "registrar": [ + { + "enrollId": "admin", + "enrollSecret": "adminpw" + } + ], + "caName": "caNameHere" + } + } +} \ No newline at end of file diff --git a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.yaml b/src/test/fixture/sdkintegration/network_configs/network-config.yaml similarity index 79% rename from src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.yaml rename to src/test/fixture/sdkintegration/network_configs/network-config.yaml index 6f8603eb..cf38cfa5 100755 --- a/src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.yaml +++ b/src/test/fixture/sdkintegration/network_configs/network-config.yaml @@ -135,16 +135,16 @@ organizations: # this way. The SDK should allow applications to set the org admin identity via APIs, and only use # this route as an alternative when it exists. adminPrivateKey: - #path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk + #path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/6b32e59640c594cf633ad8c64b5958ef7e5ba2a205cfeefd44a9e982ce624d93_sk pem: | -----BEGIN PRIVATE KEY----- - MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQghnA7rdgbZi/wndus - iXjyf0KgE6OKZjQ+5INjwelRAC6hRANCAASb3u+hY+U/FZvhYDN6d08HJ1v56UJU - yz/n2NHyJgTg6kC05AaJMeGIinEF0JeJtRDNVQGzoQJQYjnzUTS9FvGh + MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgpANnM2zJ/oz7c31B + ahODy1OSvibxUHpQ/1xiUleYvH+hRANCAAS1d3Y0ZtaqIrifI92pNvkFlgD2rSan + O/YCrqMzkJFp1OyZZEORkrNuho+iUFNKRngXvVOYEzRAC7HfWmiMyar/ -----END PRIVATE KEY----- signedCert: - path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem + path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem #pem: | # -----BEGIN CERTIFICATE----- # MIICGjCCAcCgAwIBAgIRAPDmqtljAyXFJ06ZnQjXqbMwCgYIKoZIzj0EAwIwczEL @@ -189,23 +189,22 @@ orderers: hostnameOverride: orderer.example.com grpc-max-send-message-length: 15 - + # src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/ordererOrganizations/example.com/tlsca tlsCACerts: pem: | -----BEGIN CERTIFICATE----- - MIICVjCCAf2gAwIBAgIRAObd2QMXn1setwlDm/DfrKgwCgYIKoZIzj0EAwIwaTEL + MIICNjCCAdygAwIBAgIRALBAjQY2Wfpwz6/bqKvkeAowCgYIKoZIzj0EAwIwbDEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG - cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt - cGxlLmNvbTAeFw0xNzA2MjIxMjA4NDJaFw0yNzA2MjAxMjA4NDJaMFgxCzAJBgNV - BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp - c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI - KoZIzj0DAQcDQgAEsJfeClgvQuvWgA3o/kw5PbfXou0cggFyBw3RjD/429fTknwH - Za6RfEOwabIILptiHG6pWoPYi0HmlR4uIykhP6OBljCBkzAOBgNVHQ8BAf8EBAMC - BaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAw - KwYDVR0jBCQwIoAg5XU5jq8vDUdbqJ9WjEn1cBOvk4wVd1bAZUuU5ZJAuP4wJwYD - VR0RBCAwHoITb3JkZXJlci5leGFtcGxlLmNvbYIHb3JkZXJlcjAKBggqhkjOPQQD - AgNHADBEAiB065p69a/5Qj5MkP50kb0e8T+1Lxi2H9LaNyBtixfEsgIgFq8GuCg/ - xs68U+wVvJElheirLpRgB6D8mTecFmuTXJA= + cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l + eGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQzMjlaMGwxCzAJ + BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh + bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh + bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR/LJmaZdt0jZMgTfsQ + vLkJTCDG4m8lNdtQI5VoCpKKSxMlFKUPU54ofttW2Vn76hm7/eK+Lq09LRgJheo1 + 6y47o18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB + Af8EBTADAQH/MCkGA1UdDgQiBCDadvMVYJ3hG7FgDW7vlVW20s0L8mVUn/ggI2l0 + 1ntSRTAKBggqhkjOPQQDAgNIADBFAiEAvX5+F+QnNPKX/Q/kFmkzOdRovEtgIylG + EArBHBpaqpkCIDNzXoW//ROIslbKToWexg/kwAH1HMhkm9doTyaDxc4k -----END CERTIFICATE----- # @@ -232,19 +231,19 @@ peers: tlsCACerts: pem: | -----BEGIN CERTIFICATE----- - MIICZTCCAgugAwIBAgIRAMFAGL3/bpvBIPB/uHDOR9QwCgYIKoZIzj0EAwIwczEL - MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG - cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh - Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcwNjIyMTIwODQyWhcNMjcwNjIwMTIwODQy - WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN - U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ - MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMoGXDUqPEmdEJEf3d8u+g9SwtmTED4j - pCw2ACuV6b9FskvgVXspzXIKST4ORSZrI7RJPDLswpsLWJI0+7KrImyjgZcwgZQw - DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM - BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPz3drAqBWAECNC+nZdSr8WfZJULchys - s2O1uVoP6mIWMCgGA1UdEQQhMB+CFnBlZXIwLm9yZzEuZXhhbXBsZS5jb22CBXBl - ZXIwMAoGCCqGSM49BAMCA0gAMEUCIQCf9GB02Kb1tMjzYfjHrOwAMZkC3Wv0cMAm - vyh0s5F3tAIgHvYahP5qqW3CMjSBsxO6HbcovQOK3X5UFyilg2lqEx8= + MIICZjCCAg2gAwIBAgIQT5LDpIbEhZ93KRfuBzhsPDAKBggqhkjOPQQDAjB2MQsw + CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy + YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz + Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xODAyMjUxMjQzMjlaFw0yODAyMjMxMjQz + MjlaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH + Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29t + MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+br01bZtM+KZswLnXiZK0f3bfSqt + 8+NnJc71NGx+VsUeU38jNl282Uo7A0PNKMQpr10BXomDl3jsTMK8E0aT16OBlzCB + lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC + MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgEkNmPHedLauZvdBejAlBvo4xhOWp + 2+VxGreyMCZtcicwKAYDVR0RBCEwH4IWcGVlcjAub3JnMS5leGFtcGxlLmNvbYIF + cGVlcjAwCgYIKoZIzj0EAwIDRwAwRAIgdwC/WQ6wRHlTygTJJ8SiAoMrbDpTePhx + Z2GEIu5RtMwCIBuJ8LTJnFZNivBbTFU/65lhCLpVj5R3j5KuaJ+dovF5 -----END CERTIFICATE----- @@ -260,7 +259,7 @@ peers: hostnameOverride: peer1.org1.example.com tlsCACerts: - path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt + path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt @@ -275,7 +274,7 @@ peers: hostnameOverride: peer0.org2.example.com tlsCACerts: - path: src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt + path: src/test/fixture/sdkintegration/e2e-2Orgs/v1.1/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt # # Fabric-CA is a special kind of Certificate Authority provided by Hyperledger Fabric which allows diff --git a/src/test/fixture/sdkintegration/peer-base/peer-base.yaml b/src/test/fixture/sdkintegration/peer-base/peer-base.yaml index 7f29ca9d..0ad18f70 100644 --- a/src/test/fixture/sdkintegration/peer-base/peer-base.yaml +++ b/src/test/fixture/sdkintegration/peer-base/peer-base.yaml @@ -23,5 +23,8 @@ services: - CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/msp/peer/tls/server.key - CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/msp/peer/tls/ca.crt - CORE_PEER_TLS_ENABLED=${ORG_HYPERLEDGER_FABRIC_SDKTEST_INTEGRATIONTESTS_TLS} + # NOTE BOTH below should never be used in production. + - CORE_PEER_AUTHENTICATION_TIMEWINDOW=3600s + - CORE_PEER_EVENTS_TIMEWINDOW=3600s working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer command: peer node start diff --git a/src/test/fixture/src/downdc.sh b/src/test/fixture/src/downdc.sh deleted file mode 100755 index c9ed886f..00000000 --- a/src/test/fixture/src/downdc.sh +++ /dev/null @@ -1,7 +0,0 @@ -# -# Copyright IBM Corp. All Rights Reserved. -# -# SPDX-License-Identifier: Apache-2.0 -# -DOCKERFILE=docker-compose.yml -docker-compose -f $DOCKERFILE down diff --git a/src/test/fixture/src/rundc.sh b/src/test/fixture/src/rundc.sh deleted file mode 100755 index 7b3da3eb..00000000 --- a/src/test/fixture/src/rundc.sh +++ /dev/null @@ -1,8 +0,0 @@ -# -# Copyright IBM Corp. All Rights Reserved. -# -# SPDX-License-Identifier: Apache-2.0 -# -DOCKERFILE=docker-compose.yml -docker-compose -f $DOCKERFILE down ;rm -rf /tmp/keyValStore*; rm -rf /tmp/kvs-hfc-e2e ~/test.properties; rm -rf /var/hyperledger/* ; docker-compose -f $DOCKERFILE up --force-recreate -#docker-compose -f $DOCKERFILE down ;rm -rf /tmp/keyValStore*; rm -rf /tmp/kvs-hfc-e2e ; rm -rf /var/hyperledger/* ; docker-compose -f $DOCKERFILE up --force-recreate diff --git a/src/test/java/org/hyperledger/fabric/sdk/ChannelTest.java b/src/test/java/org/hyperledger/fabric/sdk/ChannelTest.java index df28f90a..22f444ee 100644 --- a/src/test/java/org/hyperledger/fabric/sdk/ChannelTest.java +++ b/src/test/java/org/hyperledger/fabric/sdk/ChannelTest.java @@ -812,7 +812,7 @@ public void testProposalBuilderWithOutMetaInf() throws Exception { public void testProposalBuilderWithNoMetaInfDir() throws Exception { thrown.expect(java.lang.IllegalArgumentException.class); - thrown.expectMessage(matchesRegex("The META-INF directory does not exist in.*src/test/fixture/meta-infs/test1/META-INF")); + thrown.expectMessage(matchesRegex("The META-INF directory does not exist in.*src.test.fixture.meta-infs.test1.META-INF")); InstallProposalBuilder installProposalBuilder = InstallProposalBuilder.newBuilder(); @@ -835,7 +835,7 @@ public void testProposalBuilderWithNoMetaInfDir() throws Exception { public void testProposalBuilderWithMetaInfExistsNOT() throws Exception { thrown.expect(java.lang.IllegalArgumentException.class); - thrown.expectMessage("Directory to find chaincode META-INF /tmp/fdsjfksfj/fjksfjskd/fjskfjdsk/should never exist does not exist"); + thrown.expectMessage(matchesRegex("Directory to find chaincode META-INF.*tmp.fdsjfksfj.fjksfjskd.fjskfjdsk.should never exist does not exist")); InstallProposalBuilder installProposalBuilder = InstallProposalBuilder.newBuilder(); @@ -858,7 +858,7 @@ public void testProposalBuilderWithMetaInfExistsNOT() throws Exception { public void testProposalBuilderWithMetaInfEmpty() throws Exception { thrown.expect(java.lang.IllegalArgumentException.class); - thrown.expectMessage(matchesRegex("The META-INF directory.*/src/test/fixture/meta-infs/emptyMetaInf/META-INF is empty.")); + thrown.expectMessage(matchesRegex("The META-INF directory.*src.test.fixture.meta-infs.emptyMetaInf.META-INF is empty\\.")); File emptyINF = new File("src/test/fixture/meta-infs/emptyMetaInf/META-INF"); // make it cause git won't check in empty directory if (!emptyINF.exists()) { diff --git a/src/test/java/org/hyperledger/fabric/sdk/NetworkConfigTest.java b/src/test/java/org/hyperledger/fabric/sdk/NetworkConfigTest.java index b37e3306..a42ce46f 100755 --- a/src/test/java/org/hyperledger/fabric/sdk/NetworkConfigTest.java +++ b/src/test/java/org/hyperledger/fabric/sdk/NetworkConfigTest.java @@ -106,7 +106,7 @@ public void testLoadFromConfigJsonFileNotExists() throws Exception { @Test public void testLoadFromConfigFileYamlBasic() throws Exception { - File f = new File("src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.yaml"); + File f = new File("src/test/fixture/sdkintegration/network_configs/network-config.yaml"); NetworkConfig config = NetworkConfig.fromYamlFile(f); Assert.assertNotNull(config); } @@ -114,7 +114,7 @@ public void testLoadFromConfigFileYamlBasic() throws Exception { @Test public void testLoadFromConfigFileJsonBasic() throws Exception { - File f = new File("src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.json"); + File f = new File("src/test/fixture/sdkintegration/network_configs/network-config.json"); NetworkConfig config = NetworkConfig.fromJsonFile(f); Assert.assertNotNull(config); } @@ -123,7 +123,7 @@ public void testLoadFromConfigFileJsonBasic() throws Exception { public void testLoadFromConfigFileYaml() throws Exception { // Should be able to instantiate a new instance of "Client" with a valid path to the YAML configuration - File f = new File("src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.yaml"); + File f = new File("src/test/fixture/sdkintegration/network_configs/network-config.yaml"); NetworkConfig config = NetworkConfig.fromYamlFile(f); //HFClient client = HFClient.loadFromConfig(f); Assert.assertNotNull(config); @@ -140,7 +140,7 @@ public void testLoadFromConfigFileYaml() throws Exception { public void testLoadFromConfigFileJson() throws Exception { // Should be able to instantiate a new instance of "Client" with a valid path to the JSON configuration - File f = new File("src/test/fixture/sdkintegration/e2e-2Orgs/channel/network-config.json"); + File f = new File("src/test/fixture/sdkintegration/network_configs/network-config.json"); NetworkConfig config = NetworkConfig.fromJsonFile(f); Assert.assertNotNull(config); diff --git a/src/test/java/org/hyperledger/fabric/sdk/TestHFClient.java b/src/test/java/org/hyperledger/fabric/sdk/TestHFClient.java index 3cdb8d33..65545b36 100644 --- a/src/test/java/org/hyperledger/fabric/sdk/TestHFClient.java +++ b/src/test/java/org/hyperledger/fabric/sdk/TestHFClient.java @@ -17,6 +17,7 @@ import java.io.File; import org.hyperledger.fabric.sdk.security.CryptoSuite; +import org.hyperledger.fabric.sdk.testutils.TestConfig; import org.hyperledger.fabric.sdkintegration.SampleStore; import org.hyperledger.fabric.sdkintegration.SampleUser; @@ -55,8 +56,8 @@ public static void setupClient(HFClient hfclient) throws Exception { //SampleUser someTestUSER = sampleStore.getMember("someTestUSER", "someTestORG"); SampleUser someTestUSER = sampleStore.getMember("someTestUSER", "someTestORG", "mspid", - findFileSk("src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore"), - new File("src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem")); + findFileSk("src/test/fixture/sdkintegration/e2e-2Orgs/" + TestConfig.FAB_CONFIG_GEN_VERS + "/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore"), + new File("src/test/fixture/sdkintegration/e2e-2Orgs/" + TestConfig.FAB_CONFIG_GEN_VERS + "/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem")); someTestUSER.setMspId("testMSPID?"); hfclient.setCryptoSuite(CryptoSuite.Factory.getCryptoSuite()); @@ -88,7 +89,7 @@ protected void finalize() throws Throwable { try { tempFile.delete(); } catch (Exception e) { - // // now harm done. + // // now harm done. } } } diff --git a/src/test/java/org/hyperledger/fabric/sdk/testutils/TestConfig.java b/src/test/java/org/hyperledger/fabric/sdk/testutils/TestConfig.java index 66a2f4fd..99d71f0d 100644 --- a/src/test/java/org/hyperledger/fabric/sdk/testutils/TestConfig.java +++ b/src/test/java/org/hyperledger/fabric/sdk/testutils/TestConfig.java @@ -16,11 +16,15 @@ import java.io.File; import java.io.FileInputStream; import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; import java.nio.file.Paths; +import java.nio.file.StandardOpenOption; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Map; +import java.util.Objects; import java.util.Properties; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -49,6 +53,9 @@ public class TestConfig { private static final String DEFAULT_CONFIG = "src/test/java/org/hyperledger/fabric/sdk/testutils.properties"; private static final String ORG_HYPERLEDGER_FABRIC_SDK_CONFIGURATION = "org.hyperledger.fabric.sdktest.configuration"; + private static final String ORG_HYPERLEDGER_FABRIC_SDK_TEST_FABRIC_HOST = "ORG_HYPERLEDGER_FABRIC_SDK_TEST_FABRIC_HOST"; + private static final String LOCALHOST = //Change test to reference another host .. easier config for my testing on Windows ! + System.getenv(ORG_HYPERLEDGER_FABRIC_SDK_TEST_FABRIC_HOST) == null ? "localhost" : System.getenv(ORG_HYPERLEDGER_FABRIC_SDK_TEST_FABRIC_HOST); private static final String PROPBASE = "org.hyperledger.fabric.sdktest."; @@ -60,6 +67,9 @@ public class TestConfig { private static final Pattern orgPat = Pattern.compile("^" + Pattern.quote(INTEGRATIONTESTS_ORG) + "([^\\.]+)\\.mspid$"); private static final String INTEGRATIONTESTSTLS = PROPBASE + "integrationtests.tls"; + // location switching between fabric cryptogen and configtxgen artifacts for v1.0 and v1.1 in src/test/fixture/sdkintegration/e2e-2Orgs + public static final String FAB_CONFIG_GEN_VERS = + Objects.equals(System.getenv("ORG_HYPERLEDGER_FABRIC_SDKTEST_VERSION"), "1.0.0") ? "v1.0" : "v1.1"; private static TestConfig config; private static final Properties sdkProperties = new Properties(); @@ -99,17 +109,17 @@ private TestConfig() { ////// defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.mspid", "Org1MSP"); defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.domname", "org1.example.com"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.ca_location", "http://localhost:7054"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.ca_location", "http://" + LOCALHOST + ":7054"); defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.caName", "ca0"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.peer_locations", "peer0.org1.example.com@grpc://localhost:7051, peer1.org1.example.com@grpc://localhost:7056"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.orderer_locations", "orderer.example.com@grpc://localhost:7050"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.eventhub_locations", "peer0.org1.example.com@grpc://localhost:7053,peer1.org1.example.com@grpc://localhost:7058"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.peer_locations", "peer0.org1.example.com@grpc://" + LOCALHOST + ":7051, peer1.org1.example.com@grpc://" + LOCALHOST + ":7056"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.orderer_locations", "orderer.example.com@grpc://" + LOCALHOST + ":7050"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg1.eventhub_locations", "peer0.org1.example.com@grpc://" + LOCALHOST + ":7053,peer1.org1.example.com@grpc://" + LOCALHOST + ":7058"); defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.mspid", "Org2MSP"); defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.domname", "org2.example.com"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.ca_location", "http://localhost:8054"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.peer_locations", "peer0.org2.example.com@grpc://localhost:8051,peer1.org2.example.com@grpc://localhost:8056"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.orderer_locations", "orderer.example.com@grpc://localhost:7050"); - defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.eventhub_locations", "peer0.org2.example.com@grpc://localhost:8053, peer1.org2.example.com@grpc://localhost:8058"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.ca_location", "http://" + LOCALHOST + ":8054"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.peer_locations", "peer0.org2.example.com@grpc://" + LOCALHOST + ":8051,peer1.org2.example.com@grpc://" + LOCALHOST + ":8056"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.orderer_locations", "orderer.example.com@grpc://" + LOCALHOST + ":7050"); + defaultProperty(INTEGRATIONTESTS_ORG + "peerOrg2.eventhub_locations", "peer0.org2.example.com@grpc://" + LOCALHOST + ":8053, peer1.org2.example.com@grpc://" + LOCALHOST + ":8058"); defaultProperty(INTEGRATIONTESTSTLS, null); runningTLS = null != sdkProperties.getProperty(INTEGRATIONTESTSTLS, null); @@ -166,7 +176,8 @@ private TestConfig() { sampleOrg.setCAName(sdkProperties.getProperty((INTEGRATIONTESTS_ORG + org.getKey() + ".caName"))); if (runningFabricCATLS) { - String cert = "src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/peerOrganizations/DNAME/ca/ca.DNAME-cert.pem".replaceAll("DNAME", domainName); + String cert = "src/test/fixture/sdkintegration/e2e-2Orgs/FAB_CONFIG_GEN_VERS/crypto-config/peerOrganizations/DNAME/ca/ca.DNAME-cert.pem" + .replaceAll("DNAME", domainName).replaceAll("FAB_CONFIG_GEN_VERS", FAB_CONFIG_GEN_VERS); File cf = new File(cert); if (!cf.exists() || !cf.isFile()) { throw new RuntimeException("TEST is missing cert file " + cf.getAbsolutePath()); @@ -313,7 +324,7 @@ public Properties getEventHubProperties(String name) { public String getTestChannelPath() { - return "src/test/fixture/sdkintegration/e2e-2Orgs/channel"; + return "src/test/fixture/sdkintegration/e2e-2Orgs/" + FAB_CONFIG_GEN_VERS; } @@ -323,6 +334,16 @@ public boolean isRunningAgainstFabric10() { } + /** + * url location of configtxlator + * + * @return + */ + + public String getFabricConfigTxLaterLocation() { + return "http://" + LOCALHOST + ":7059"; + } + /** * Returns the appropriate Network Config YAML file based on whether TLS is currently * enabled or not @@ -331,10 +352,48 @@ public boolean isRunningAgainstFabric10() { */ public File getTestNetworkConfigFileYAML() { String fname = runningTLS ? "network-config-tls.yaml" : "network-config.yaml"; - String pname = "src/test/fixture/sdkintegration/e2e-2Orgs/channel/" + fname; - return new File(pname); - } + String pname = "src/test/fixture/sdkintegration/network_configs/"; + File ret = new File(pname, fname); + + if (!"localhost".equals(LOCALHOST)) { + // change on the fly ... + File temp = null; + + try { + //create a temp file + temp = File.createTempFile(fname, "-FixedUp.yaml"); + + if (temp.exists()) { //For testing start fresh + temp.delete(); + } + + byte[] data = Files.readAllBytes(Paths.get(ret.getAbsolutePath())); + String sourceText = new String(data, StandardCharsets.UTF_8); + + sourceText = sourceText.replaceAll("https://localhost", "https://" + LOCALHOST); + sourceText = sourceText.replaceAll("http://localhost", "http://" + LOCALHOST); + sourceText = sourceText.replaceAll("grpcs://localhost", "grpcs://" + LOCALHOST); + sourceText = sourceText.replaceAll("grpc://localhost", "grpc://" + LOCALHOST); + + Files.write(Paths.get(temp.getAbsolutePath()), sourceText.getBytes(StandardCharsets.UTF_8), + StandardOpenOption.CREATE_NEW, StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE); + + if (!Objects.equals("true", System.getenv(System.getenv(ORG_HYPERLEDGER_FABRIC_SDK_TEST_FABRIC_HOST + "_KEEP")))) { + temp.deleteOnExit(); + } else { + System.err.println("produced new network-config.yaml file at:" + temp.getAbsolutePath()); + } + + } catch (Exception e) { + throw new RuntimeException(e); + } + + ret = temp; + } + + return ret; + } private String getDomainName(final String name) { int dot = name.indexOf("."); diff --git a/src/test/java/org/hyperledger/fabric/sdkintegration/End2endNodeAndBackAgainIT.java b/src/test/java/org/hyperledger/fabric/sdkintegration/End2endAndBackAgainNodeIT.java similarity index 91% rename from src/test/java/org/hyperledger/fabric/sdkintegration/End2endNodeAndBackAgainIT.java rename to src/test/java/org/hyperledger/fabric/sdkintegration/End2endAndBackAgainNodeIT.java index b3884bd5..fbb093bc 100644 --- a/src/test/java/org/hyperledger/fabric/sdkintegration/End2endNodeAndBackAgainIT.java +++ b/src/test/java/org/hyperledger/fabric/sdkintegration/End2endAndBackAgainNodeIT.java @@ -7,12 +7,12 @@ // This runs a version of end2endAndBackAgainIT but with Node chaincode.s -public class End2endNodeAndBackAgainIT extends End2endAndBackAgainIT { +public class End2endAndBackAgainNodeIT extends End2endAndBackAgainIT { { // This is what changes are needed to deploy and run Node code. - testName = "End2endNodeAndBackAgainIT"; + testName = "End2endAndBackAgainNodeIT"; // this is relative to src/test/fixture and is where the Node chaincode source is. CHAIN_CODE_FILEPATH = "sdkintegration/nodecc/sample_11"; //override path to Node code diff --git a/src/test/java/org/hyperledger/fabric/sdkintegration/End2endIT.java b/src/test/java/org/hyperledger/fabric/sdkintegration/End2endIT.java index 5e60c147..26ae3810 100644 --- a/src/test/java/org/hyperledger/fabric/sdkintegration/End2endIT.java +++ b/src/test/java/org/hyperledger/fabric/sdkintegration/End2endIT.java @@ -795,7 +795,7 @@ Channel constructChannel(String name, HFClient client, SampleOrg sampleOrg) thro Orderer anOrderer = orderers.iterator().next(); orderers.remove(anOrderer); - ChannelConfiguration channelConfiguration = new ChannelConfiguration(new File(TEST_FIXTURES_PATH + "/sdkintegration/e2e-2Orgs/channel/" + name + ".tx")); + ChannelConfiguration channelConfiguration = new ChannelConfiguration(new File(TEST_FIXTURES_PATH + "/sdkintegration/e2e-2Orgs/" + TestConfig.FAB_CONFIG_GEN_VERS + "/" + name + ".tx")); //Create channel that has only one signer that is this orgs peer admin. If channel creation policy needed more signature they would need to be added too. Channel newChannel = client.newChannel(name, anOrderer, channelConfiguration, client.getChannelConfigurationSignature(channelConfiguration, sampleOrg.getPeerAdmin())); diff --git a/src/test/java/org/hyperledger/fabric/sdkintegration/IntegrationSuite.java b/src/test/java/org/hyperledger/fabric/sdkintegration/IntegrationSuite.java index e488969c..a79c7f40 100644 --- a/src/test/java/org/hyperledger/fabric/sdkintegration/IntegrationSuite.java +++ b/src/test/java/org/hyperledger/fabric/sdkintegration/IntegrationSuite.java @@ -18,7 +18,7 @@ UpdateChannelIT.class, NetworkConfigIT.class, End2endNodeIT.class, - End2endNodeAndBackAgainIT.class, + End2endAndBackAgainNodeIT.class, HFCAClientIT.class }) public class IntegrationSuite { diff --git a/src/test/java/org/hyperledger/fabric/sdkintegration/UpdateChannelIT.java b/src/test/java/org/hyperledger/fabric/sdkintegration/UpdateChannelIT.java index c8421661..f92b63f5 100644 --- a/src/test/java/org/hyperledger/fabric/sdkintegration/UpdateChannelIT.java +++ b/src/test/java/org/hyperledger/fabric/sdkintegration/UpdateChannelIT.java @@ -59,6 +59,7 @@ public class UpdateChannelIT { private static final TestConfig testConfig = TestConfig.getConfig(); + private static final String CONFIGTXLATOR_LOCATION = testConfig.getFabricConfigTxLaterLocation(); private static final String ORIGINAL_BATCH_TIMEOUT = "\"timeout\": \"2s\""; // Batch time out in configtx.yaml private static final String UPDATED_BATCH_TIMEOUT = "\"timeout\": \"5s\""; // What we want to change it to. @@ -80,7 +81,6 @@ public void checkConfig() throws NoSuchFieldException, SecurityException, Illega testSampleOrgs = testConfig.getIntegrationTestsSampleOrgs(); } - @Test public void setup() { @@ -124,7 +124,7 @@ public void setup() { final byte[] channelConfigurationBytes = fooChannel.getChannelConfigurationBytes(); HttpClient httpclient = HttpClients.createDefault(); - HttpPost httppost = new HttpPost("http://localhost:7059/protolator/decode/common.Config"); + HttpPost httppost = new HttpPost(CONFIGTXLATOR_LOCATION + "/protolator/decode/common.Config"); httppost.setEntity(new ByteArrayEntity(channelConfigurationBytes)); HttpResponse response = httpclient.execute(httppost); @@ -144,7 +144,7 @@ public void setup() { //Now modify the batch timeout String updateString = responseAsString.replace(ORIGINAL_BATCH_TIMEOUT, UPDATED_BATCH_TIMEOUT); - httppost = new HttpPost("http://localhost:7059/protolator/encode/common.Config"); + httppost = new HttpPost(CONFIGTXLATOR_LOCATION + "/protolator/encode/common.Config"); httppost.setEntity(new StringEntity(updateString)); response = httpclient.execute(httppost); @@ -154,7 +154,7 @@ public void setup() { byte[] newConfigBytes = EntityUtils.toByteArray(response.getEntity()); // Now send to configtxlator multipart form post with original config bytes, updated config bytes and channel name. - httppost = new HttpPost("http://localhost:7059/configtxlator/compute/update-from-configs"); + httppost = new HttpPost(CONFIGTXLATOR_LOCATION + "/configtxlator/compute/update-from-configs"); HttpEntity multipartEntity = MultipartEntityBuilder.create() .setMode(HttpMultipartMode.BROWSER_COMPATIBLE) @@ -180,8 +180,8 @@ public void setup() { final String sampleOrgName = sampleOrg.getName(); final SampleUser ordererAdmin = sampleStore.getMember(sampleOrgName + "OrderAdmin", sampleOrgName, "OrdererMSP", - Util.findFileSk(Paths.get("src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/").toFile()), - Paths.get("src/test/fixture/sdkintegration/e2e-2Orgs/channel/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem").toFile()); + Util.findFileSk(Paths.get("src/test/fixture/sdkintegration/e2e-2Orgs/" + TestConfig.FAB_CONFIG_GEN_VERS + "/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/").toFile()), + Paths.get("src/test/fixture/sdkintegration/e2e-2Orgs/" + TestConfig.FAB_CONFIG_GEN_VERS + "/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem").toFile()); client.setUserContext(ordererAdmin); @@ -195,7 +195,7 @@ public void setup() { final byte[] modChannelBytes = fooChannel.getChannelConfigurationBytes(); //Now decode the new channel config bytes to json... - httppost = new HttpPost("http://localhost:7059/protolator/decode/common.Config"); + httppost = new HttpPost(CONFIGTXLATOR_LOCATION + "/protolator/decode/common.Config"); httppost.setEntity(new ByteArrayEntity(modChannelBytes)); response = httpclient.execute(httppost); diff --git a/src/test/java/org/hyperledger/fabric_ca/sdk/RegistrationRequestTest.java b/src/test/java/org/hyperledger/fabric_ca/sdk/RegistrationRequestTest.java index 488239f1..587476da 100644 --- a/src/test/java/org/hyperledger/fabric_ca/sdk/RegistrationRequestTest.java +++ b/src/test/java/org/hyperledger/fabric_ca/sdk/RegistrationRequestTest.java @@ -26,7 +26,7 @@ public class RegistrationRequestTest { private static final String regCAName = "CA"; private static final String regID = "userid"; private static final String regSecret = "secret"; - private static final String regType = "user"; + private static final String regType = HFCAClient.HFCA_TYPE_CLIENT; private static final int regMaxEnrollments = 5;