aboutsummaryrefslogtreecommitdiff
path: root/cc/prf
diff options
context:
space:
mode:
authortholenst <tholenst@google.com>2021-04-09 00:47:21 -0700
committerCopybara-Service <copybara-worker@google.com>2021-04-09 00:48:09 -0700
commit3477fbe02e9e94e23db96ee1322fae71278f9867 (patch)
treea0d7181421313ee5f5075ff6e81ce3d251dbcd3a /cc/prf
parentd2f4523b537cad07db4a03871ad663315710d321 (diff)
downloadtink-3477fbe02e9e94e23db96ee1322fae71278f9867.tar.gz
Add missing copyright statements. These were missing due to internal miscommunication.
PiperOrigin-RevId: 367585827
Diffstat (limited to 'cc/prf')
-rw-r--r--cc/prf/aes_cmac_prf_key_manager.h2
-rw-r--r--cc/prf/aes_cmac_prf_key_manager_test.cc2
-rw-r--r--cc/prf/hkdf_prf_key_manager.h2
-rw-r--r--cc/prf/hkdf_prf_key_manager_test.cc2
-rw-r--r--cc/prf/hmac_prf_key_manager.cc2
-rw-r--r--cc/prf/hmac_prf_key_manager.h2
-rw-r--r--cc/prf/hmac_prf_key_manager_test.cc2
-rw-r--r--cc/prf/prf_config.cc2
-rw-r--r--cc/prf/prf_config.h2
-rw-r--r--cc/prf/prf_config_test.cc2
-rw-r--r--cc/prf/prf_key_templates.cc2
-rw-r--r--cc/prf/prf_key_templates.h2
-rw-r--r--cc/prf/prf_key_templates_test.cc2
-rw-r--r--cc/prf/prf_set.cc2
-rw-r--r--cc/prf/prf_set.h2
-rw-r--r--cc/prf/prf_set_test.cc2
-rw-r--r--cc/prf/prf_set_wrapper.cc2
-rw-r--r--cc/prf/prf_set_wrapper.h2
-rw-r--r--cc/prf/prf_set_wrapper_test.cc2
19 files changed, 38 insertions, 0 deletions
diff --git a/cc/prf/aes_cmac_prf_key_manager.h b/cc/prf/aes_cmac_prf_key_manager.h
index dbcd66723..096ae89bc 100644
--- a/cc/prf/aes_cmac_prf_key_manager.h
+++ b/cc/prf/aes_cmac_prf_key_manager.h
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/aes_cmac_prf_key_manager_test.cc b/cc/prf/aes_cmac_prf_key_manager_test.cc
index 7e2dfb66d..3daa2a663 100644
--- a/cc/prf/aes_cmac_prf_key_manager_test.cc
+++ b/cc/prf/aes_cmac_prf_key_manager_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/hkdf_prf_key_manager.h b/cc/prf/hkdf_prf_key_manager.h
index 15b85c66c..f6692b298 100644
--- a/cc/prf/hkdf_prf_key_manager.h
+++ b/cc/prf/hkdf_prf_key_manager.h
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/hkdf_prf_key_manager_test.cc b/cc/prf/hkdf_prf_key_manager_test.cc
index ffb4f67e2..43dc540f3 100644
--- a/cc/prf/hkdf_prf_key_manager_test.cc
+++ b/cc/prf/hkdf_prf_key_manager_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/hmac_prf_key_manager.cc b/cc/prf/hmac_prf_key_manager.cc
index 1a6a1c52e..e85da4e51 100644
--- a/cc/prf/hmac_prf_key_manager.cc
+++ b/cc/prf/hmac_prf_key_manager.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/hmac_prf_key_manager.h b/cc/prf/hmac_prf_key_manager.h
index c1897790a..ed03b2c5a 100644
--- a/cc/prf/hmac_prf_key_manager.h
+++ b/cc/prf/hmac_prf_key_manager.h
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/hmac_prf_key_manager_test.cc b/cc/prf/hmac_prf_key_manager_test.cc
index 29c24caae..aef56fe37 100644
--- a/cc/prf/hmac_prf_key_manager_test.cc
+++ b/cc/prf/hmac_prf_key_manager_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_config.cc b/cc/prf/prf_config.cc
index 0c80a7c8c..e0f6759c7 100644
--- a/cc/prf/prf_config.cc
+++ b/cc/prf/prf_config.cc
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_config.h b/cc/prf/prf_config.h
index 5da1b7283..8033ebf80 100644
--- a/cc/prf/prf_config.h
+++ b/cc/prf/prf_config.h
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_config_test.cc b/cc/prf/prf_config_test.cc
index 4b1299baf..55d520e25 100644
--- a/cc/prf/prf_config_test.cc
+++ b/cc/prf/prf_config_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_key_templates.cc b/cc/prf/prf_key_templates.cc
index 0c70fa9fc..92c0378f9 100644
--- a/cc/prf/prf_key_templates.cc
+++ b/cc/prf/prf_key_templates.cc
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_key_templates.h b/cc/prf/prf_key_templates.h
index 99f30a48d..98276bfb4 100644
--- a/cc/prf/prf_key_templates.h
+++ b/cc/prf/prf_key_templates.h
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_key_templates_test.cc b/cc/prf/prf_key_templates_test.cc
index 10955ab79..5ec971600 100644
--- a/cc/prf/prf_key_templates_test.cc
+++ b/cc/prf/prf_key_templates_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2019 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_set.cc b/cc/prf/prf_set.cc
index df2c1b01d..7d7243f0c 100644
--- a/cc/prf/prf_set.cc
+++ b/cc/prf/prf_set.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_set.h b/cc/prf/prf_set.h
index 70055c950..556c220d8 100644
--- a/cc/prf/prf_set.h
+++ b/cc/prf/prf_set.h
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_set_test.cc b/cc/prf/prf_set_test.cc
index 20c592673..fcfc87835 100644
--- a/cc/prf/prf_set_test.cc
+++ b/cc/prf/prf_set_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_set_wrapper.cc b/cc/prf/prf_set_wrapper.cc
index 822d2f96c..fa293e290 100644
--- a/cc/prf/prf_set_wrapper.cc
+++ b/cc/prf/prf_set_wrapper.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_set_wrapper.h b/cc/prf/prf_set_wrapper.h
index ef16bbd90..08f88712e 100644
--- a/cc/prf/prf_set_wrapper.h
+++ b/cc/prf/prf_set_wrapper.h
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
diff --git a/cc/prf/prf_set_wrapper_test.cc b/cc/prf/prf_set_wrapper_test.cc
index 72600fbad..188d880a7 100644
--- a/cc/prf/prf_set_wrapper_test.cc
+++ b/cc/prf/prf_set_wrapper_test.cc
@@ -1,3 +1,5 @@
+// Copyright 2020 Google LLC
+//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at