Skip to content

Commit ed35e78

Browse files
committed
simplified nested message names of Ikev2TransformTypesDetailed
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 2a8c082 commit ed35e78

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

schema/bom-1.7.proto

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2508,8 +2508,8 @@ message CryptoProperties {
25082508

25092509
// IKEv2 Transform Types Detailed
25102510
message Ikev2TransformTypesDetailed {
2511-
// Encryption Algorithm (ENCR)
2512-
message IkeV2Enc {
2511+
// IKEv2 Encryption Algorithm (ENCR)
2512+
message Encr {
25132513
// A name for the encryption method
25142514
optional string name = 1;
25152515
// The key length of the encryption algorithm
@@ -2518,50 +2518,50 @@ message CryptoProperties {
25182518
optional string algorithm = 3;
25192519
}
25202520

2521-
// Pseudorandom Function (PRF)
2522-
message IkeV2Prf {
2521+
// IKEv2 Pseudorandom Function (PRF)
2522+
message Prf {
25232523
// A name for the pseudorandom function
25242524
optional string name = 1;
25252525
// The bom-ref to algorithm cryptographic asset
25262526
optional string algorithm = 2;
25272527
}
25282528

2529-
// Integrity Algorithm (INTEG)
2530-
message IkeV2Integ {
2529+
// IKEv2 Integrity Algorithm (INTEG)
2530+
message Integ {
25312531
// A name for the integrity algorithm
25322532
optional string name = 1;
25332533
// The bom-ref to algorithm cryptographic asset
25342534
optional string algorithm = 2;
25352535
}
25362536

2537-
// Key Exchange Method (KE)
2538-
message IkeV2Ke {
2537+
// IKEv2 Key Exchange Method (KE)
2538+
message Ke {
25392539
// A group identifier for the key exchange algorithm
25402540
optional int32 group = 1;
25412541
// The bom-ref to algorithm cryptographic asset
25422542
optional string algorithm = 2;
25432543
}
25442544

25452545
// IKEv2 Authentication method
2546-
message IkeV2Auth {
2546+
message Auth {
25472547
// A name for the authentication method
25482548
optional string name = 1;
25492549
// The bom-ref to algorithm cryptographic asset
25502550
optional string algorithm = 2;
25512551
}
25522552

25532553
// Transform Type 1: encryption algorithms
2554-
repeated IkeV2Enc encr = 1;
2554+
repeated Encr encr = 1;
25552555
// Transform Type 2: pseudorandom functions
2556-
repeated IkeV2Prf prf = 2;
2556+
repeated Prf prf = 2;
25572557
// Transform Type 3: integrity algorithms
2558-
repeated IkeV2Integ integ = 3;
2558+
repeated Integ integ = 3;
25592559
// Transform Type 4: Key Exchange Method (KE) per RFC9370, formerly called Diffie-Hellman Group (D-H)
2560-
repeated IkeV2Ke ke = 4;
2560+
repeated Ke ke = 4;
25612561
// Specifies if an Extended Sequence Number (ESN) is used.
25622562
optional bool esn = 5;
25632563
// IKEv2 Authentication method
2564-
repeated IkeV2Auth auth = 6;
2564+
repeated Auth auth = 6;
25652565
}
25662566

25672567
// The concrete protocol type.

0 commit comments

Comments
 (0)